Quantcast
Channel: commandlinefu timeline
Browsing all 20 articles
Browse latest View live

commandlinefu: A faster ls: $ echo * Sometimes "ls" is just too slow,...

A faster ls: $ echo * Sometimes "ls" is just too slow, especially if you're having problems with terminal scrol.. http://tinyurl.com/dmrtf3

View Article



commandlinefu: IP address of current host: $ hostname -i I've seen some...

IP address of current host: $ hostname -i I've seen some versions of hostname that don't have the -i option, so .. http://tinyurl.com/dbq5f7

View Article

commandlinefu: Burn an image to a USB stick: $ dd if=yourimage.img...

Burn an image to a USB stick: $ dd if=yourimage.img of=/dev/sdb1 where /dev/sdb1 is the name of your usb device.. http://tinyurl.com/cahjul

View Article

commandlinefu: Burn CD/DVD from an iso, eject disc when finished.: $ cdrecord...

Burn CD/DVD from an iso, eject disc when finished.: $ cdrecord dev=0,0,0 -v -eject yourimage.iso cdrecord -scanb.. http://tinyurl.com/cxhnfa

View Article

commandlinefu: Backup your CD/DVD making a iso file: $ dd if=/dev/cdrom...

Backup your CD/DVD making a iso file: $ dd if=/dev/cdrom of=image.iso With this command you can backup you CD or.. http://tinyurl.com/cxuma3

View Article


commandlinefu: (Ubuntu) Discover what package a file belongs to: $ dpkg -S...

(Ubuntu) Discover what package a file belongs to: $ dpkg -S /usr/bin/ls 'dpkg -S' just matches the string you s.. http://tinyurl.com/csj5hs

View Article

commandlinefu: (Debian/Ubuntu) Discover what package a file belongs to: $...

(Debian/Ubuntu) Discover what package a file belongs to: $ dpkg -S /usr/bin/ls 'dpkg -S' just matches the strin.. http://tinyurl.com/cs39z7

View Article

commandlinefu: Terminal redirection: $ script /dev/null | tee /dev/pts/3 can...

Terminal redirection: $ script /dev/null | tee /dev/pts/3 can display the commands and their output to another .. http://tinyurl.com/c9ewes

View Article


commandlinefu: Mount directories in different locations: $ mount --bind...

Mount directories in different locations: $ mount --bind /old/directory/path /new/directory/path Like symlinked .. http://tinyurl.com/d3xo8t

View Article


commandlinefu: For Gentoo users : helping with USE / emerge: $ emerge -epv...

For Gentoo users : helping with USE / emerge: $ emerge -epv world | grep USE | cut -d '"' -f 2 | sed 's/ /n/g' .. http://tinyurl.com/ch2y67

View Article

commandlinefu: List your largest installed packages.: $ wajig large Requires...

List your largest installed packages.: $ wajig large Requires the "wajig" package to be installed. Submitted by.. http://tinyurl.com/csf7r4

View Article

commandlinefu: Find a file's package or list a package's contents.: $ dlocate...

Find a file's package or list a package's contents.: $ dlocate [ package | string ] This is the fastest method .. http://tinyurl.com/d5gb88

View Article

commandlinefu: Randomize the order of lines in a text file.: $ awk 'BEGIN...

Randomize the order of lines in a text file.: $ awk 'BEGIN {srand()} {print int(rand()*1000000) "t" $0}' FILE |.. http://tinyurl.com/cauzk3

View Article


commandlinefu: Show all video files in the current directory (and sub-dirs):...

Show all video files in the current directory (and sub-dirs): $ find -type f -printf '%P00' | egrep -iz '.(av.. http://tinyurl.com/dz7b39

View Article

commandlinefu: When feeling down, this command helps a bit: $ sl For...

When feeling down, this command helps a bit: $ sl For explanation do $ man sl If it doesn't work, you might nee.. http://tinyurl.com/d2pq6l

View Article


commandlinefu: When feeling down, this command helps: $ sl $ sudo apt-get...

When feeling down, this command helps: $ sl $ sudo apt-get install sl $ man sl Submitted by Svish Options: .. http://tinyurl.com/c9u7ap

View Article

commandlinefu: Set Time Zone in Ubuntu: $ sudo dpkg-reconfigure tzdata...

Set Time Zone in Ubuntu: $ sudo dpkg-reconfigure tzdata Reconfigures time zone in Ubuntu, which I cannot figure .. http://tinyurl.com/cn7qpx

View Article


commandlinefu: Find different filetypes in current directory: $ find ....

Find different filetypes in current directory: $ find . -maxdepth 1 -type f -name '*.sh' -o -name '*.txt' Sub.. http://tinyurl.com/cwrwh5

View Article

commandlinefu: Have you mooed today?: $ apt-get moo Submitted by...

Have you mooed today?: $ apt-get moo Submitted by unixmonkey1055 Options: View this command to comment.. http://tinyurl.com/cpp73l

View Article

commandlinefu: Mount important virtual system directories under chroot'ed...

Mount important virtual system directories under chroot'ed directory: $ for i in sys dev proc; do sudo mount --b.. http://tinyurl.com/ct8o4g

View Article
Browsing all 20 articles
Browse latest View live




Latest Images