CORRECT TEXT
CORRECT TEXT Find the files owned by harry, and copy it to catalog: /opt/dirView AnswerAnswer: # cd /opt/ # mkdir dir # find / -user harry -exec cp -rfp {} /opt/dir/ ;
CORRECT TEXT
CORRECT TEXT Create one partitions having size 100MB and mount it on data.View AnswerAnswer:
CORRECT TEXT
CORRECT TEXT Notes: NFS NFS instructor.example.com:/var/ftp/pub/rhel6/dvd YUM http://instructor.example.com/pub/rhel6/dvd ldap http//instructor.example.com/pub/EXAMPLE-CA-CERT Install dialog package.View AnswerAnswer: yum install dialog
CORRECT TEXT
CORRECT TEXT Who ever creates the files/directories on archive group owner should be automatically should be the same group owner of archive.View AnswerAnswer: ✑ chmod g+s /archive ✑ Verify using: ls -ld /archive Permission should be like: drwxrws--- 2 root sysuser 4096 Mar 16 18:08 /archive If SGID bit is...
CORRECT TEXT
CORRECT TEXT Create a 2G swap partition which take effect automatically at boot-start, and it should not affect the original swap partition.View AnswerAnswer: # fdisk /dev/sda p (check Partition table) n (create new partition: press e to create extended partition, press p to create the main partition, and the extended...
CORRECT TEXT
CORRECT TEXT Part 2 (on Node2 Server) Task 1 [Controlling the Boot Process] Interrupt the boot process and reset the root password. Change it to kexdrams to gain access to the systemView AnswerAnswer: *
CORRECT TEXT
CORRECT TEXT Make on /archive directory that only the user owner and group owner member can fully access.View AnswerAnswer: ✑ chmod 770 /archive ✑ Verify using : ls -ld /archive Preview should be like: drwxrwx--- 2 root sysuser 4096 Mar 16 18:08 /archive To change the permission on directory we...
CORRECT TEXT
CORRECT TEXT Create a 2G swap partition which take effect automatically at boot-start, and it should not affect the original swap partition.View AnswerAnswer: # fdisk /dev/sda p (check Partition table) n (create new partition: press e to create extended partition, press p to create the main partition, and the extended...
CORRECT TEXT
CORRECT TEXT Add admin group and set gid=600View AnswerAnswer: # groupadd -g 600 admin
CORRECT TEXT
CORRECT TEXT Add a new logical partition having size 100MB and create the data which will be the mount point for the new partition.View AnswerAnswer: