CORRECT TEXT
CORRECT TEXT Create one partitions having size 100MB and mount it on data.View AnswerAnswer:
CORRECT TEXT
CORRECT TEXT User mary must configure a task. Requirement: The local time at 14:23 every day echo "Hello World.".View AnswerAnswer: crontab -u mary -e 23 14 * * * echo "Hello World."
CORRECT TEXT
CORRECT TEXT Install a FTP server, and request to anonymous download from /var/ftp/pub catalog. (it needs you to configure yum direct to the already existing file server.)View AnswerAnswer: # cd /etc/yum.repos.d # vim local.repo [local] name=local.repo baseurl=file:///mnt enabled=1 gpgcheck=0 # yum makecache # yum install -y vsftpd # service vsftpd...
CORRECT TEXT
CORRECT TEXT You are new System Administrator and from now you are going to handle the system and your main task is Network monitoring, Backup and Restore. But you don't know the root password. Change the root password to redhat and login in default Runlevel.View AnswerAnswer: When you Boot the...
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:
CORRECT TEXT
CORRECT TEXT Configure the system synchronous as 172.24.40.10.View AnswerAnswer: Graphical Interfaces: System-->Administration-->Date & Time OR # system-config-date
CORRECT TEXT
CORRECT TEXT A YUM repository has been provided at http://server.domain11.example.com/pub/x86_64/Server. Configure your system to use this location as a default repository.View AnswerAnswer: vim/etc/yum.repos/base.repo [base] name=base baseurl= http://server.domain11.example.com/pub/x86_64/Server gpgcheck=0 enable=1 Save and Exit Use yum list for validation, the configuration is correct if list the package information. If the Yum configuration...
CORRECT TEXT
CORRECT TEXT Upgrading the kernel as 2.6.36.7.1, and configure the system to Start the default kernel, keep the old kernel available.View AnswerAnswer: # cat /etc/grub.conf # cd /boot # lftp it # get dr/dom/kernel-xxxx.rpm # rpm -ivh kernel-xxxx.rpm # vim /etc/grub.conf default=0
CORRECT TEXT
CORRECT TEXT Create a backup file named /root/backup.tar.bz2, which contains the contents of /usr/local, bar must use the bzip2 compression.View AnswerAnswer: cd /usr/local tar -jcvf /root/backup.tar.bz2* mkdir /test tar -jxvf /root/backup.tar.bz2 -C /test/
CORRECT TEXT
CORRECT TEXT You are new System Administrator and from now you are going to handle the system and your main task is Network monitoring, Backup and Restore. But you don't know the root password. Change the root password to redhat and login in default Runlevel.View AnswerAnswer: When you Boot the...