Surprising to me this isnt a program yet… Anyhow the credit goes all to: http://www.linuxjournal.com/article/9293?page=0,1 – Simon Sweetwater is the author of this script – good job if your reading this 🙂 #!/bin/ksh bytestohr()Read More…
Debian Example btrfs volume and share with Samba (User permissions)
MAKING BTRFS SHARE ON DEBIAN BOX WITH USER PERMISSIONS NOTE THE WINDOWS BOX IS JOINED TO THE DOMAIN BUT NOT THE LINUX BOX, THIS MAKES NO DIFFERENCE BESIDES THAT I CANT LOGRead More…
SEEKWATCHER and BLKTRACE and BLKPARSE and example script
blktrace helps analyze io to a drive while you run any command/script. blkparse helps put that in human readable output. Seekwatcher helps visualize the IO in a movie or picture (look at 5th and 6th linksRead More…
Bitlbee and Weechat working with OCS Lync Office Communicator Gtalk and Facebook
Getting LYNC or OFFICE COMMUNICATOR chat to work on linux (using weechat irc client) #################################################################################### We are going to setup an IRC client (a trivial one, meaning you can do it withRead More…
Binwalk tutorial
Update 2022-09-15: This tool can be potentially used together with losetup + kpartx (see losetup). Which is a tool that makes loopback devices out of ISOs or volume files (luns, block deviceRead More…
Bonnie++ storage performance io test tool
RUNNING BONNIE++ ################## INTRO ========= * Benchmark program * Be root * Dont run commands with # in the front of them they are for explanation purposes * This article showsRead More…
BASH SCRIPT ADD TIME STAMP TO FILE – TIMESTAMP
QUICK NOTE (year first, then month, then day – good for sorting): date +ymd%Y-%m-%d-t%T | tr : – timestamp=`date +ymd%Y-%m-%d-t%T | tr : -` Try this Command – 2 ways – sometimesRead More…
LINUX – Bechmark Storage with IOZONE
Download the article below “iozone-infotinks.txt” for easy view with the NOTEPAD++, where you can zoom out and zoom in with the CONTROL+MOUSE WHEEL, or turn ON and OFF text wrapping with ViewRead More…
Bashish – bash and prompt beautifier – how to install and use on debian
NOTE: none debian versions of bashish exist NOTE: im currently running DEBIAN 7.3 This will color your shell & your prompt You cant apt-get it Go to their site: http://bashish.sourceforge.net/ And getRead More…
Bash Time Difference Script (stopwatch/timing things) – useful in scripts
LINUX – bash time diff script date11=$(date +"%s") # do stuff here that your timing date22=$(date +"%s") diff11=$(($date22-$date11)) echo "$(($diff11 / 60)) minutes and $(($diff11 % 60)) seconds elapsed."