One Page Ubuntu Manual
One Page Ubuntu Manual
One Page Ubuntu Manual
rm name rm -rf name cp filename /home/dirname mv filename /home/dirname cat filetoview man -k keyword more filetoview
Remove a file directory called name. Kill off an entire directory and all it's includes files and subdirectories. Copy the file called filename to the /home/dirname directory . Move the file called filename to the /home/dirname directory . Display the file called filetoview. Display man pages containing k eyword. Display the file called filetoview one page at a time, proceed to next page using the spacebar. Display the first 10 lines of the file called filetoview. Display the first 20 lines of the file called filetoview. Display the last 10 lines of the file called filetoview. Display the last 20 lines of the file called filetoview.
head filetoview head -20 filetoview tail filetoview tail -20 filetoview
umount /mnt/cdrom
User Administration
adduser accountname passwd accountname sudo exit Create a new user call accountname. Give accountname a new password. Enable user to execute command as root, if the user is in the admin group. Stop being superuser and revert to normal user.
updatedb
The X System
xvidtune xF86Setup Xconfigurator xf86config Run the X graphics tuning utility . Run the X configuration menu with automatic probing of graphics cards. Run another X configuration menu with automatic probing of graphics cards. Run a text based X configuration menu.
sudo apt-cache sear keyword Search for a package that contains ch keyword in its name or description. sudo apt-cache policy package Lists the currently available version and the currently installed version of the application named package. In addition, provides a description of package. Decompress the files contained in the zipped and tarred archive called archive.
/sbin/e2fsck hda5 fdformat /dev/fd0H1440 tar -cMf /dev/fd0 tail -f /var/log/messages cat /var/log/dmesg
Execute the filesystem check utility on partition hda5. Format the floppy disk in device fd0. Backup the contents of the current directory and subdirectories to multiple floppy disks. Display the last 10 lines of the system log Display the file containing the boot time messaged useful for locating problems. Alternatively, use the dmesg command. wildcard represents everything. eg. cp from/*to will copy all files in the 'from' directory to the 'to' directory.
File permissions
Single character wildcard . eg. cp config.? /configs will copy all files beginning with the name config. in the current directory to the directory named configs. If the command ls -l is gi en, a long list of file names is displayed. The first v column in this list details the permissions applying to the file. If a permission is missing for an owner, group, or other, it is represented by eg. drwxr-x x Read = 4 Write = 2 Execute = 1 chmod 764 filename File permissions are altered by giving the chmod command and the appropriate octal code for each user type. eg. Make the file called filename R+W+X for the owner, R+W for the group and R for others. Full permission for the owner, read and execute access for the group and others. Make the file called filename executable to all users.
[xyx]
Choice of character wildcards . eg. ls [xyz]* will list all files in the current directory starting with the letter x, y, or z.
linux single
At the lilo prompt, start in single user mode. This is useful if you have forgotten your password. Boot in single user mode, the run the passwd command. List current processes. Kill a specific process eg. kill 123.
ps kill 123
chmod 755
chmod +x filename
Printing
/etc/rc.d/init.d/lpd start /etc/rc.d/init.d/lpd stop /etc/rc.d/init.d/lpd status lpq lprm lpr lpc man subject | lpr man -t subject | lpr printtool Start the print daemon. Stop the print daemon. Display status of the print daemon. Display jobs in print queue. Remove jobs from queue. Print a file. Printer control tool. Print the manual page called subject as plain text Print the manual page called subject as Postscript output. Start X printer setup interface.
Created by Brian King, Ubuntu-Kentucky.org Updated for Ubuntu with permission from the original author: John Hacking - http://homepage.powerup.com.au/~squadron/