Page 1 of 2

CLI cheat sheet

Posted: Fri Aug 03, 2007 10:02 am
by carlos
Just found this great little cheat sheet for CLI commands. http://fosswire.com/2007/08/02/unixlinu ... eat-sheet/

Download it, print it and keep it local. Its great for beginners (like myself) who have a hard time remember all of the commands :D

Posted: Fri Aug 03, 2007 10:32 pm
by 67GTA
That is handy. Here is a list of Debian/Ubuntu commands that I recorded while I was learning to use Linux. The commands and descriptions are all separated by "=", so don't include the = sign in the commands.

cat /proc/cpuinfo=CPU info
cd=change directory
convert -resize 640x480 -colors 14 wallpaper.png splashimage.xpm && gzip splashimage.xpm=change picture into grub splash.
cp=copy
df -h=disk space usage
etc/gnome/default.list=file of default programs
fglrxinfo=graphics driver info
free -m=memoryusage
glxgears=check 3d graphics
glxinfo=opengl info
ifconfig=network configuration info
killall gnome-panel=kill,refresh panel
locate=find target
lsb_release -a=OS info
lshw=list hardware
ls=list contents
lspci=list pci devices
man command | col -b > file.txt=save man uotput to file
man -f=man title of target
man intro=user commands help
man -k=man file for target
man man=man manual
mkdir=make directory
mv=move
netstat -l --tcp --udp (and then) watch -n 1 netstat -an --tcp --udp=watch port activities
rmdir=remove directory
rm=remove
rm -r=remove all
sudo apt-cache=debian apt library
sudo apt-cache search (search subject)=Search debian repo for apps
sudo apt-get dist-upgrade=upgrade all
sudo apt-get update=update sources.list
sudo cp /<filename.backup>/<filename>=reset to backup file
sudo deborphan | xargs sudo apt-get -y remove –purge=remove orphans
sudo dmidecode | more=Detailed hardware info
sudo dpkg -l | cut -d " " -f 3=list installed packages
sudo dpkg-reconfigure menu sudo dpkg-reconfigure menu-xdg (reboot)=fix Debian menu
sudo dpkg-reconfigure xserver-xorg=Reconfigure periphials, graphics
sudo fdisk -l=View Hard drive partitions
sudo hdparm -l /dev/sda=hard drive settings
sudo hdparm -tT /dev/sda=hard drive speed
sudo ln -s ~/.themes /root/.themes sudo ln -s ~/.icons /root/.icons sudo ln -s ~/.fonts /root/.fonts=make root look like user
top=system,processes,resources,cpu,ram,etc. info
uname -a=kernel version
update-menu=update gnome menu
whereis program-name=location of program/man page
which <program name>=location of program

Re: CLI cheat sheet

Posted: Tue Dec 11, 2007 5:02 pm
by dragons.r.scary.
if you cant rember a command that you have jused before just type history and u will get a list of all your previous commands

Re: CLI cheat sheet

Posted: Sun Jan 27, 2008 5:57 am
by Zwopper
...or use the arrow keys - up and down...
Tab comes in handy as well for filling out...

Re: CLI cheat sheet

Posted: Wed Apr 23, 2008 2:11 pm
by pete284
FOSSwire have just updated their cheat sheet:

http://fosswire.com/2008/04/22/ubuntu-cheat-sheet

Re: CLI cheat sheet

Posted: Thu Dec 23, 2010 12:24 am
by MerelyJim
Thanks!

The command line never goes out of style. :D

Re: CLI cheat sheet

Posted: Thu Dec 23, 2010 12:47 am
by willie42
thanks....that will be very useful for me... :D

Re: CLI cheat sheet

Posted: Sun May 08, 2011 8:57 pm
by geazzy
thanks for this :D

Re: CLI cheat sheet

Posted: Mon May 09, 2011 8:57 am
by Habitual
MerelyJim wrote:Thanks!

The command line never goes out of style. :D
So true!

Re: CLI cheat sheet

Posted: Mon May 13, 2013 3:37 pm
by frisil
dragons.r.scary. wrote:if you cant rember a command that you have jused before just type history and u will get a list of all your previous commands
Then you can !+number to repeat a history command, e.g. if history displays

Code: Select all

169  sleep 40m; cd /datastorage/user1/enc/JDownloader ; java -jar /datastorage/user1/enc/JDownloader/JDownloader.jar
just type !169 to do it again. No need for arrow scrolling or retyping.

When looking for some command you partially remember, use

Code: Select all

 history | grep keyword
to only display this, e.g.

Code: Select all

history | grep JDownloader
will find the above command.

Re: CLI cheat sheet

Posted: Mon May 13, 2013 5:06 pm
by Jerry
this is fantastic. Glad I came across this thread. And thanks for all the people who made contributions to this thread.

Re: CLI cheat sheet

Posted: Tue May 14, 2013 5:18 pm
by crazywhiteguy
Nice thread, thanks alot!
I have been using for some while now hard time remembering ALL the commands so this is very useful :)

Re: CLI cheat sheet

Posted: Tue Sep 17, 2013 5:42 pm
by jjhiza
Great resource thread! Thank you for putting this together. I've been lurking in the forums since making the switch from W8 to Linux, and I've been looking for something like this. I've been creating my own CLI lists as I go, but they're mainly geared towards building Android...Outside of those commands and a few very basic ones, I always needed to search for commands, prior to executing them. This will provide me with a very handy quick reference guide, so I can begin to commit some of these commands to memory. :)

Re: CLI cheat sheet

Posted: Sat Oct 18, 2014 7:08 pm
by JohnBobSmith
Here are some of my faveorite commands that I use regularly. Look them up if you need help with them by doing man <command>. Replace all instances of <command> or <2nd_command> with an actual command that you want to use. Ignore anything after a // as thats a comment!

ls -aR //list all files recursively
less //lets you scroll through large outputs
cat //list entire file. Useful when piped into other commands
grep //search for stuff within files or output
whereis //find stuff
find //find more stuff
locate //Guess what? Also lets you find stuff.
which //And who would have thought! Find more stuff!
pushd //push directory
popd //pop directory
cd //change directory
mkdir //make directory
rmdir //remove directory
<command> | <2nd_command> //piping commands into eachother
<command> > file.txt //outputs to a file.
man //get help
top //lists processes and resources usage
kill //kill a frozen or resource hogging proccess

And a few others like netstat and blkid and such that have there uses, but not used regularly. Why do I use top regularly? I'm a n00b programmer, and sometimes my programs get memory leaks so I use top to find the offending proccess and then kill it. Why do I also use 5 different commands to search for stuff? Each command searches for different things in different ways. All 5 have their uses. Though grep is probably most useful. And yes, I do (mostly) read man pages when I get stuck.

I may post more useful commands in the future. There are a LOT of them.

Happy command line adventures,
JohnBobSmith

Re: CLI cheat sheet

Posted: Thu Nov 06, 2014 7:18 pm
by Exodus_life
hey this thread has some good tips and cli for us noobs

Re: CLI cheat sheet

Posted: Sat Oct 03, 2015 6:36 pm
by Kruzer
This is really handy, thanks! :D
- K

Re: CLI cheat sheet

Posted: Mon Oct 05, 2015 1:45 am
by ScratchMint
Very useful, thanks.

Re: CLI cheat sheet

Posted: Mon Oct 05, 2015 1:07 pm
by Habitual
You c-line junkies should love this too.

Most of us know that

Code: Select all

sudo !!
will run sudo on the last command, but how about sudo on the 3rd command from last?

Code: Select all

sudo !-3
Enjoy the Goodness.

Re: CLI cheat sheet

Posted: Sun Jan 31, 2016 11:27 am
by Old Ruler
Ex FreeBSD junkies particularly may like to set a couple of lines in ~/.inputrc or ~/.bashrc to get backwards and forwards history search on up and down arrow keys (then you would just type sudo and up arrow searches history for commands issued that way, for instance):

https://wiki.archlinux.org/index.php/ba ... completion

(Answer provided by xenopeek. Thanks again.) http://forums.linuxmint.com/viewtopic.p ... 3&t=215057

-----------------------------

Some may not realise that when a script etc. asks for confirmation in the form [Y / n] the response shown capitalised is the default and pressing Enter would achieve the same as pressing the y key.

Similarly, I've seen professional online tutorials where one is instructed to click the Apply button in a dialog as well as the OK one. So unnecessary, but I think most people know that. :)

Edited to add: It may not be obvious, if your only previous experience of a command line was in <shudder> cmd.exe or real DOS, just how flexible the command line itself is in Linux. I've been mounting and unmounting a bit recently (folders not...) so I tend to up arrow after say 'sudo umount /dev/sdf1' - type the new mount point on the end of the line and then left arrow along and delete the u from umount. So the line I'm on looks like 'sudo mount /dev/sdf1 /mnt' and the cursor is on the m of mount. No need to right arrow (or press the End key (the home key also works)) to get to the end of the line. Hit Enter anywhere on the line to do it. A lot of functionality in that line.

Some manuals are long and so are other text files you may be reading with 'less'. You can easily search with a forward slash and a word you want to find. It even has its own history mechanism with forward slash followed by up arrow.

Re: CLI cheat sheet

Posted: Tue Feb 16, 2016 11:42 am
by phedup