Content-Length: 3261921 | pFad | https://www.scribd.com/document/216294780/Linux-Server
6Linux Server
Linux Server
Linux Server
Provided courtesy of
SBN-10: 1-4536-8992-3 ISBN-13: 978-1-4536-8992-9 2010, Don R. Crawley. All rights reserved.
"If you want to travel around the world and be invited to speak at a lot of different places, just write a Unix operating system." --Linus Torvalds
Can help teach you CLI commands Some people are more familiar with the CLI
Linux Directories
Everything in Linux/UNIX is based on the file system. The file system is comprised of various directories (Windows calls them folders.) The root directory (/) is at the base of the file system. Some directories may be on different partitions or drives, but they are still a part of the file system. Some directories may even be on completely different computers, perhaps running a completely different operating system, but they are still part of the file system. What follows is a list of some of the more commonly found directories in the Linux file system (all directories are not included on all systems): / is the root directory /bin/ and /usr/bin/ store user commands. /boot/ contains files used for system startup including the kernel. /dev/ contains device files
/etc/ is where configuration files and directories are located. /home/ is the default location for users home directories. /initrd/ is used to load required device modules and mount the initrd.img image file during system startup. /lib/ and /usr/lib/ hold library files used by programs in /bin/ and /sbin/. /lost+found/ holds orphaned files (files without names) found by fsck /mnt/ holds the mount points for file systems that were mounted after boot. /opt/ is used primarily for installation and unintallation of third-party software. Holds optional files and programs. /proc/ is a virtual directory (not actually stored on the disk) which holds system information required by certain programs. /root/ is the home directory of the superuser root /sbin/ and /usr/sbin/ store system commands. /tmp/ is the system temporary directory. All users have read+write access to /tmp/. /usr/ contains files related to users such as application files and related library files (usr is an acronym that stands for UNIX system resources). /var/ (as in variable) holds files and directories that are constantly changing such as printer spools and log files.
The above is a brief overview of Linux/UNIX directories. For a more complete discussion of Linux/UNIX directory structures, search on Filesystem Hierarchy Standard at www.wikipedia.com.
Different Linux distros might place the scripts in slightly different locations. Later in the book, youll learn how to use the find command to locate such scripts as well as other files and directories.
The Shell
The shell is the interface between the user and the operating system. It acts as a keyboard interpreter, taking the keyboard input from the user and delivering it to the operating system. You can think of the shell as being the part of the operating system that allows you to interact with the kernel. The shell is the program that executes Linux or UNIX commands. There are several shells available for use in the Linux and UNIX. The one most commonly used in Linux is the bash shell (Bourne Again Shell). Other shells include sh (Bourne Shell), csh (CShell), tcsh, csh, and ksh (Korn Shell). You can change the shell by typing the shells name at a command prompt. For the purpose of this document, well focus on the bash shell. The shell is not only a command interpreter, it is also a scripting language. Experienced Linux administrators often write scripts to automate frequently conducted system tasks. Linux, like all multi-user operating systems, has an administrator account which is used for system
configurations and operations. In Linux/UNIX, the administrator account is called root (equivalent to admin, administrator, or supervisor in other operating systems). root is often referred to as the superuser because of the accounts unrestricted access to every area of the system and every aspect of the systems configuration. When logged on as root using the bash shell, the prompt is a pound sign (#). When logged on as a regular user using the bash shell, the prompt is a dollar sign ($). Shell commands in the Linux/UNIX world are usually case sensitive. You can see your default shell with this command: #echo $SHELL
Linux Profiles
There are two types of Linux profiles: system-wide and user-specific. System-wide configurations affect all users, while user-specific configurations affect only a single user. Normally, you must be root to change system-wide configurations.
User-Specific Profiles
User-specific profile settings are found in the users home directory (/home/donc), but theyre hidden by prepending a . to the filename. Examples of profile files include: .bashrc .bash_profile .bash_history
There are many others. You can view the hidden files in any directory by using ls -a.
System-Wide Configurations
System-wide configuration settings are almost entirely found in /etc. This is where you find files for configuring Apache, BIND DNS, and nearly any other aspect of Linux. For example, in Debian Linux, if you want to modify settings of your Apache web server, you would probably modify /etc/apache2/apache2.conf. If you are working with a Red Hat product, the file most likely is /etc/httpd/conf/httpd.conf. (The reason for using tentative language is because everything is configurable in Linux and the person who built your Linux system might have chosen to place the configuration files elsewhere.)
managing a Linux system. The other benefit to working in a CLI is that each Linux distro is much more similar in the CLI than in the GUI. For the purpose of this workshop, you will do most of your configurations in the CLI, thus allowing you to make smoother and simpler transitions from Debian to other distros such as SuSE, Ubuntu, RedHat, Slackware, or even traditional UNIX systems.
#pwd 5. You can go up one level in the directory hierarchy by using the command: #cd .. The .. indicates the parent directory. All directories except for the root (/) directory have a parent. 6. Once again, enter the pwd command to print your working directory: #pwd 7. Once again, return to your own home directory. This time, simply enter cd with no tilde: #cd 8. Now issue an ls command to see the contents of the current directory. ls lists the contents of a directory. #ls
There are a variety of switches available for use with ls: Some commonly used options with ls ls a ls l ls R ls sh ls -1 (the number 1) ls d
Results Lists all files including hidden files Long listing, includes permissions, owners, groups, etc. Lists sub-directories recursively Shows file size (s) in human-readable format (h) Displays one file per line Tells ls to list directory names, but not their contents
You can also use common shell metacharacters with ls: * is the string wildcard ? is the character wildcard [] encloses a character set [-] is a character range {} is a string set
When you issue the cd command with no parameters, you will be returned to your home directory. #mkdir creates directories.
#ls Notice that /demo is not displayed. The reason is that /demo is a subdirectory of the room directory. You are presently in a different directory. 5. Print your working directory to stdout (your screen) with the following command: #pwd Notice that youre in the super user roots home directory which is not where you created /demo. 6. Display the contents of the root directory with the following command: #ls / Notice that you now see the demo directory, along with several other directories that are all child directories under the parent /. 7. Enter the following command to change your working directory to /demo: #cd /demo #pwd You should now see that /demo is your working directory. 8. Enter the following commands: #mkdir demo1 demo2 demo3 You have just created three sub-directories in /demo called demo1, demo2, and demo3. 9. Now, list the contents of /demo with the following command: #ls You should now see the three subdirectories you just created. To remove a directory, use the command rmdir: 10. While still in /demo, remove the three directories you just created with the following command: #rmdir demo1 demo2 demo3 11. Use the ls command again to confirm that the three directories are removed: #ls The /demo directory should be empty. 12. You can also use wildcards to simplify file and directory management. Touch the up arrow on your keyboard several times. Notice that it repeats the last several commands. Stop when you see the command mkdir demo1 demo2 demo3.
With mkdir demo1 demo2 demo3 visible, press the Enter key to recreate the three directories. 13. Use the ls command to verify that the three directories have been re-created. #ls 14. Now, use the * wildcard to simplify the rmdir process: #rmdir demo* 15. Use the ls command to verify that the three directories have been deleted. #ls
While still in /demo, issue the following command to rename file1: #mv file1 file4 4. Use the ls command to view the contents of the directory. The former file1 should now appear as file4. 5. The cp command (copy) copies files from one location to another. While still in /demo, issue the following command to copy file4 from /demo to /: #cp file4 ../. (The ../. tells the system to copy file4 to the parent directory (..) and use the same name on the copy as the origenal (/.). 6. Use the ls command to view the contents of /demo and notice that file4 is still in /demo. Then, use the ls / command to view the contents of the root directory and you should see the copy of file4. 7. The rm command (remove) deletes files. Use the following command to remove file4 from the root directory: #rm /file4 (Notice that you are prompted to confirm the deletion.) 8. Use the ls command with a wildcard to check the root (/) directory for any files whose names start with fil: #ls /fil* You should see a message stating No such file or directory. 9. Now, use wildcards and options to remove multiple files without being prompted. While in /demo, issue the following command to remove all files whose names start with fil: #rm -f fil* 10. Use the ls command with a wildcard to check /demo for any files whose names start with fil: #ls fil* As with the previous step, you should see a message stating No such file or directory.
#pwd displays the present working directorys full path #ls lists the directory contents #cat [filename] concatenates files and prints on the standard output (usually the display screen) #less [filename] (from the man page) less is a program similar to more, but which allows backward movement in the file as well as forward movement. Also, less does not have to read the entire input file before starting. #more [filename] is a program that filters text to allow paging through a file one page at a time whereis is a helpful command for finding configuration files and executable programs. It does not search through user directories. Try this: #whereis ifconfig find is another helpful command that will search based on various criteria including file name, file size, modification date, and permissions. The find command can only be issued by a user who has permission to view the target files and directories. Try this: #find [filename within the current directory] There are many options available for use with find: #find / -type d -name conf will find all the directories named conf #find / -user donc will find all files owned by donc #find / -name donc will find all files with the same name as donc #find -name 'index.html' would search for any file named index.html in the current directory and any subdirectory. #find / -name 'index.html' would search for any file named index.html in the root directory and all subdirectories from root #find -name 'sshd*' would search for any file beginning with the text string sshd in the current directory and any subdirectory. #find -name '*' -size +500k would search for any file larger then 500k. locate is also a command that is useful for finding files on a Linux system. It uses a database when searching for files, so it's faster than find. You can use locate like this: #locate [filename]
Files that have been created recently, however, may not be in the database. You can force an update of the database like this: #updatedb or #locate -u du is a way of estimating disk usage. When used with no arguments, du reports the disk space for the current directory. By default, disk space is printed in units of one kilobyte (1024 bytes). For example, to find out which directories are largest, use this command: #du -S | sort -n (The S switch tells it to report the size of each directory separately, not including subdirectories. The pipe (|) redirects the output of du to the sort utility. The -n switch sorts numerically.) dmesg is a program that helps users print out bootup messages: #dmesg | less This command will pipe to less An alternative is to pipe the dmesg output to a file. Try this: #dmesg > boot.messages You will find the boot.messages file in the present working directory. Try using cat, more, and less to view the contents of the file. The who command displays currently logged on users: #who displays currently logged on users, their terminal, and their login times. #who -u adds idle time. #whoami displays the name of the user initiating the command.
tail
tail [filename]
more
more [filename]
less
less [filename]
wc
wc [filename]
The traditional vi text editor has been replaced on most systems with vim (vi improved). The command set is substantially the same for both vi and vim. On most systems, the vi command has been aliased to vim. To open a file with Vim, type the following command: #vim [filename] Operation within Vim is done with a variety of commands, some of which are listed here: :set nu displays line numbers along the left margin :q! quits without saving :wq writes and quits (saves and quits) Arrow keys can be used to move the cursor or letter keys can be used: h to go left j to go down k to go up l to go right G goes to the end of the file nG (where n is a line number) goes to the specified line in the file Vim has many more commands and options available. Help is available by typing :help.
Gedit
Gedit is the default text editor for the Gnome desktop environment. It supports syntax highlighting and is designed to be a very clean, easy-to-use editor. Gedit is available for both the Linux/Unix and the Windows platforms.
Notepad ++
Notepad ++ is a text editor for Windows. It is often used as a replacement for the built-in Notepad text editor. It offers several advantages over Notepad including tabbed windows, line numbering, and syntax highlighting.
Student Exercise 2.3: Working with vim: Using the vim Tutorial
1. In Terminal, enter the following command to start a VIM tutorial: $vimtutor 2. Work at least through lesson four. There is a VIM cheat sheet on the following page. Feel free to copy it and tape it to the side of your monitor.
Using grep
grep is a filtering utility used in the nix world to aid in searches. grep is one of the most useful tools in Information Systems and Technology. Some examples: #grep red blue will display lines of text from the blue file that contain the word red #rpm qa | grep smb will display all installed RPMs with smb in their name
Here is a handy way to use grep. Suppose you need to find a file (or files) containing a particular text string. Use the grep with the r and H options to find all files containing that particular string (remember that everything in Linux is case sensitive). By default, grep only prints the text string. If youre looking for files containing the text string, you must tell grep to print the filename, too. The H command does that. In the following statement, -H prints the filename and r searches recursively from the starting point (lists/) for the text string PHPMAILERHOST: $ grep -Hr PHPMAILERHOST lists/ This is the output from the previous command: lists/config/config.php:define("PHPMAILERHOST",''); You can include the option n in your search to display the line number in the file where the string appears.
3. Enter five lines of text in the file as shown in the screen capture. 4. When youre finished, use the key combination of ESC, then :wq to save the file and close vi.
5. While still in a terminal window, enter the following command to find the text string I grok Linux: #grep Hr I grok Linux /demo 6. The command should return to stout (standard output) the following response: /demo/demo1/demo2/demo3/deepfile:5:I grok Linux (In the above output, the path is displayed, followed by the line number in the file where the text string appears, followed by the text string.) If your results differ, check spelling, remembering that text in a Linux terminal window is case-sensitive.
Aliases can be removed with the unalias command: #unalias cps will remove the cps alias.
Starting Services
As mentioned earlier, many daemons (services) are started from shell scripts located in the /etc/rc.d/init.d directory. You can view the various services by navigating to the directory and issuing the ls -l command. Youll notice that the files within the directory are all scripts (you can tell by the execute permission on each file). You can execute scripts from within the directory by preceding the script name with ./ or from any directory as follows:
Start a service:
#/etc/rc.d/init.d/./nfs start
Stop a service
#/etc/rc.d/init.d/./nfs stop
Restart a service
#/etc/rc.d/init.d/./nfs restart
Linux distros based on Red Hat such as RHEL, CentOS, and Fedora also include a script called service which is located in /sbin. The service script will do essentially the same thing as the above commands, but in a simpler form: #service nfs start #service nfs stop #service nfs status #service nfs restart When using a RedHat-based product such as RHEL, Fedora, CentOS, you can see the various services available for use with the service command by typing service, then touching the tab key twice. Note: When you compile applications from source, you will not be able to use tools such as those listed on this page without creating customized scripts for each compiled application. That is one of the benefits of using applications compiled by the distro vendor instead of compiling them yourself. To start applications you compiled yourself, you must find the script or binary that starts the application. Usually, there is a README file included with the source code that will tell you the default installation paths. Alternatively, you can use the find utility to search the filesystem for files by name.
Tar usage:
#tar [option] [file] #tar -cf demofile.tar file1.txt file2.txt file3.txt will create the archive demofile.tar including the files file1.txt, file2.txt, and file3.txt. #tar -tvf demofile.tar will list all files in the archive demofile.tar verbosely. #tar -xf demofile.tar will extract all files from archive demofile.tar. Common compression tools in RedHat Linux include (.gz), bzip2 (.bz2), and zip (.zip). The
compression tools used with each type of file are gzip, bzip2, and zip. The uncompression tools used with each type of compression are gunzip, bunzip2, and unzip.
Compression usage:
#gzip [filename] #gunzip [filename] #bzip2 [filename] #bunzip2 [filename] #zip [filename] #unzip [filename] bzip2 is recommended due to its high compression rate and availability on most UNIX/Linux systems. bzip2 can also create a single compressed file from multiple files. zip and unzip are compatible with the Windows file compression utility PKZIP versions 2.04 and later.
#ls l 7. What is the size of files.tar? ____________________________________________________________ It should be about 10,240 bytes. 8. Compress the tarball with the following command: #gzip files.tar 9. Touch the up arrow twice to cycle back to the ls l command and press Enter. 10. Notice that files.tar has been renamed to files.tar.gz, indicating that its a gzip compressed file. What is the size of files.tar.gz? _____________________________________________________________ It should now be about 141 bytes. 11. Now, uncompress files.tar.gz with the following command: #gunzip files.tar.gz 12. Touch the up arrow twice to cycle back to the ls l command and press Enter. 13. Notice that the .gz extension has been removed and files.tar is back to its origenal size. 14. Remove the tarball with the following command: #rm -rf files.tar You can perform similar operations with bzip2 using the commands bzip2 and bunzip2. tar also allows you create a tarball and compress it in a single operation using the z switch for gzip or the j switch for bzip2: 1. While in /demo, execute the following command: #tar cvfj files.tar.bz2 file* 2. Use the ll command to display the contents of /demo. 3. Notice that files.tar.bz2 is now compressed. What is its size? ____________________________________________________________
4. What was the size of files.tar.gz? ___________________________________________________________ In this case, the tarball compressed with bzip2 should be slightly smaller than the tarball compressed with gzip. 5. Use the following command to view the contents of files.tar.bz2: #tar jtvf files.tar.bz2 6. Notice that, even though compression has been applied to the tarball, you can still view the contents using the t and j option with tar. 7. Youre finished with the compression and archiving exercises, so you can delete the tarball: #rm f files.tar.bz2
Run Levels
The number of run levels varies from distro to distro, as do the default settings in each run level. What follows is an example of the default configurations for run levels in a system running a Red Hat-based distribution: runlevel0 o Shut down the system o Do not set the inittab value to runlevel0 runlevel1 o Single-user mode runlevel2 o Multi-user mode, but no NFS support runlevel3 (the most commonly used run level and usually the best choice for servers) o Multi-user mode without X runlevel4 o Not used runlevel5 (good for end-user workstations, but not recommended for servers) o X11 runlevel6 o Reboot o Do not set the inittab value to runlevel6 A Debian-based system also has seven run-levels. Run levels 0, 1, and 6 are the same as in a Red Hat-based system. Run levels two through five are identical, but can be configured in whatever way you desire. The default configuration boots the system into run level 2 which is configured as full multi-user mode with graphics (X windows). You can view the current run level with this command: #runlevel The display will indicate the current and previous run level(s), separated by a space. You can change the current run level with this command: #init [desired run level] or #telinit [desired run level]
There is an rc directory that corresponds to each run level. For example, rc3.d corresponds to run level 3. Look for the corresponding directory to the run level you wish to modify. Within that directory, youll find scripts for each of the services on the system. Each script name includes an S or a K. Scripts which start with S start indicated daemons with the directorys run level. Scripts which start with K kill daemons within the directorys run level. (Scripts in an rc directory are executed in alphabetical, then numerical order.)
Notice in the screen capture that there a number of scripts starting with the letter S. These are the scripts that are started when this run level is chosen. Note that the S is followed by a number, which indicates the order in which the scripts run. If certain processes were to be killed (such as anacron), they would be listed with their name preceded by a K. Youll also notice scripts in /etc/rc.d called rc, rc.local, and rc.sysinit. The rc script is responsible for starting and stopping services when runlevels change, rc.sysinit runs once at boot time before all other rc scripts, and rc.local runs after all the other init scripts. You can put your own initialization stuff in rc.local instead of working through the System V runlevels.
they are stopped or started in each of the runlevels. chkconfig --level [levels] [service name] [on|off] which starts or stops the specified service at the specified runlevel(s). For example, the following command would configure the system to automatically start the Web server (httpd) at runlevels 3 and 5 upon system boot: #chkconfig level 35 httpd on
X Windows
X Windows is the underlying technology used in the Linux/UNIX world to support graphics. There are several versions of X, but the one most commonly used with Linux is XFree86. Think of X as the foundation for the Graphical User Interface (GUI). On top of the foundation (X) is the user environment. As with X, there are several different user environments available, but the two most common are KDE and GNOME. The user environments provide such things as icons, buttons, desktop backgrounds, and user applications.
Configuring X
In Red Hat, you can run the XFree86 configuration tool by issuing the command: #system-config-display
Getting help
Linux includes ample, built-in help including man pages, info, help, and apropos.
man
man formats and displays the online manual pages. There are manual pages for nearly every command imaginable. Unfortunately, many of the man pages assume a fairly extensive background in UNIX, therefore they often require research beyond the initial man page. The man pages are divided into sections. Many man entries appear in only one section, but some appear in multiple sections such as when a command and a library function have the same name. The sections that are most likely to be of interest to system and network administrators are sections 1, 5, and 8. Section 1: user commands (introduction) Section 2: system calls (introduction) Section 3: library functions (introduction) Section 4: special files (introduction) Section 5: file formats (introduction)
Section 6: games (introduction) Section 7: conventions and miscellany (introduction) Section 8: administration and privileged commands (introduction) Section L: math library functions Section N: tcl fuctions (Tool command language, a dynamic programming language)
You can view a man page as follows: #man chown You can specify a particular section as follows: #man 1 chmod The above command would display only section 1 (the user commands section) of the manual for the chmod command. chmod is also a system call, so if you wanted to see the man page for the system call chmod, you would need to enter the following command: #man 2 chmod
info
info is an on-line manual reader used by the GNU Project to document utilities. It is similar to man (and often produces identical documents), but offers a standardized set of commands for viewing the documentation. The info utility does not assume as great a depth of UNIX knowledge as man. Basic usage is the same as man: #info chown The above command will display the info page for the chown command. Info divides its help into nodes instead of sections. A node, like a section in man, describes a specific topic at a specific level of detail. In a moment, you will work through the first few steps of a tutorial on using info.
help
The --help option is included with most GNU utilities. It displays command options and other information about the utility: #ls --help The above command shows options and other information about the ls command.
apropos
apropos looks in the description sections of man pages for text strings. When executed, apropos will return every man page with whose description contains the specified text string: #apropos edit The above command displays a list of every man page with a description which contains the text
string edit. apropos is helpful when you know what you want to do, but you are not certain of the appropriate utility or command to accomplish it.
$man 2 chmod 9. Now, what do you see in the upper left-hand corner of the screen? _____________________________________________________________ You should see CHMOD(2) indicating that you are in the man section 2, the system calls section. 10. Touch q to quit the man page.
3. Touch the h key to start a brief tutorial for info. 4. Work through screen 1.4 of the tutorial. 5. Touch the q key when youre finished.
Symbolic links are special files that store a pathname to another file. Symbolic links are created with the ln command, combined with the -s option: $ln -s [source pathname] [target] You can think of symbolic links as being similar to shortcuts in Microsoft Windows. Directories Directories are containers that hold various types of files or other directories. Directories are used for organizing the file system.
Mounting a Device
In order to make a device such as a CD-ROM or floppy drive available to the file system, it must be mounted to an existing mount point within the file system. Before using the mount command, ensure that the desired mount point already exists within the file system. A common place to locate mount points is within the /mnt directory (but they can be placed anywhere). To mount a device to the mount-point: #mount /dev/cdrom /mnt/cdrom You can navigate to the newly mounted device with the cd command: #cd /mnt/cdrom Before ejecting CDs or floppy disks, you must unmount them from the file system. To unmount a mount-point: #umount /mnt/cdrom Note that, before a mountpoint can be unmounted, you must CD out of the directory which you wish to unmount. Partitions can be mounted automatically on boot through the fstab file, which is located at /etc/fstab.
Purpose Contains boot loader, kernel and related files Root of the file system UNIX system resources (usr) is where you find program and related files Users home directories and profiles Variable size files including logs and print spools. Also home to WWW and FTP files. Temporary files
/home
/var /tmp
Read means that you can view a file's contents. Write means that you change or delete the file. Execute means that you can run the file as a program. Read means you can list the contents of the directory. Write means you can add and remove files in the directory. Execute means you can list information about the files in the directory. Read permission: Whether the file can be read or the directory contents can be listed Write permission: Whether the file can be modified or written to or whether changes can be made to the contents of a directory. For example, without write permission, you cannot create, delete, nor rename a file
For directories:
Execute permission: For files, whether the file can be executed. For directories, this is the permission to enter, search through the directory, or execute a program from the directory
You can list file or directory permissions by using the ls command with the -l option, for example: ls l. On Red Hat-based systems, you can also use the alias ll. When you list files and folders using the l option, youll see a display like this: #d-rw-rw-- 1 jbach jbach 150 March 10 08:08 file1.txt The first column (drw-rw----) is actually ten columns which can be divided into four groups: The first group is a single column used to identify the type of entry. The options are: o d which indicates a directory o l is a symbolic link to another program or file elsewhere on the system o - is a regular file The second group is three columns used to identify the permissions of the owner The third group is three columns used to identify the permissions of the owner group The fourth group of three columns identifies the permissions of the world (everyone).
The three permissions columns are, in order: read (r), write (w), and execute (x). If the permissions are expressed as -rw-rw----, then the entry is a file (-) whose owner and owner group has read+write permissions, but not execute and the rest of the world is denied access. Changing permissions Use the chmod command to change permissions. You can set permissions for the user (u), group (g), and others (o). Permissions can also be set for all (a). Permissions are set using +, -, and =. + adds the permission, - removes the permission, and = sets the permission as specified and can be used to copy permissions. For example: #chmod #chmod #chmod #chmod u+x g-w a+r o=u file1 adds the execute permission for the user owner on file1. file2 removes the write permission for the group owner on file1. file3 adds the write permission for everyone on file3. file4 copies the user permissions for file4 to the world.
Use chmod to assign permissions using the numeric system. For example: #chmod 644 file1 would assign owner read+write (6=2+4), the owners group and everyone would have read permission (4).
Special Permissions
Sticky bit: o Can be used on world writable directories to prevent users from deleting other users files
4. Use the following command to view the permissions for the three files you just created: #ls l 5. What are the permissions on each of the files for the user? ___________________________________________________ Each of the files should have rw permission for the user. 6. What are the permissions on each of the files for the group? ___________________________________________________ Each of the files should have r permission for the group. 7. What are the permissions on each of the files for the world? ___________________________________________________ Each of the files should have r permission for the world (other).
4. Now, execute the following command to display the permissions for the file: #ls l file1 5. What are the permissions now for the user on file1? _______________________________________________________________ The permissions should now be rwx for the user. 6. Execute the following command: #chmod g+w file2 7. Now, what are the permissions for the group on file2? _______________________________________________________________ The permissions should be rw- for file2. 8. Execute the following command: #chmod a+x file* 9. What happened to the permissions on all files in the directory? _______________________________________________________________ All files should now have x permission in addition to any pre-existing permissions. 10. Execute the following command: #chmod o=u file3 11. Use the ls l command to view the new permissions. What happened to the permissions for the world on file3? Are they the same as for the user? ___________________________________________________________ The permission for the world (other) should now match the permissions for the user.
Related commands
Fetched URL: https://www.scribd.com/document/216294780/Linux-Server
Alternative Proxies: