Originally posted by: xtknight
Originally posted by: asadasif
Thanks guys!
What is the syntax for using the file command?
Also, is there any listing of common commands for Ubunu like in Windows, you just go the command prompt and type in help and it displays all the commands commonly used.
In my opinion here are some common commands.
help in Linux does show some rather advanced/uncommon commands (most of them) but I'm not sure what all of them do. Here's the ones I use the most.
cp (copy)
mv (move/rename)
rm (remove; delete)
cat (concatenate; one use is for previewing text files to the console)
ls (list folders/files)
dd (disk druid...for doing some advanced disk-related things)
fdisk (quite different from fdisk in DOS but same idea)
cd (change directory)
md (make directory, same as
mkdir)
updatedb (updates your file index for searching disk)
locate (locates a file within your file index)
linux32 (only applicable to 64-bit Linux, but basically this runs 32-bit apps)
logout/exit (gets out of shell so you can login as a different user)
su (super user; goes in to root (Administrator) mode)
sudo command (do one operation in super user mode)
file file (look up type of file)
gedit file (desktop only command; edit file with GNOME editor; much better interface than
vim)
grep (great tool! use it for finding text from stdin and a pipe; for example: ps -aux | grep artsd will find the arts sound server)
ps (Unix command to list running processes; usually use ps -aux)
top (task manager app that shows CPU and memory)
man (guide/manual for the program you specify)
mount (mount device (disk drive, DVD+RW, thumb drive, etc.) to mount point)
umount (unmount device)
And here's a tip. If you start a program from a desktop mini-console ("Xterm" or "Konsole"), put a space and an ampersand (
&) after the program name. That way it won't tie up the console from which you started the program. Even knowing all that I'm pretty much a Linux n00b still, but I can help you with the really basic stuff. I'm pretty good at configuring GNOME/KDE now. Meet GNOME/KDE, your desktop environments.