显示标签为“RedHat”的博文。显示所有博文
显示标签为“RedHat”的博文。显示所有博文

2014年1月1日星期三

Pass4Test offre de RedHat RH-202 matériaux d'essai

Il y a nombreux façons à vous aider à réussir le test RedHat RH-202. Le bon choix est l'assurance du succès. Pass4Test peut vous offrir le bon outil de formation, lequel est une documentation de qualité. La Q&A de test RedHat RH-202 est recherchée par les experts selon le résumé du test réel. Donc l'outil de formation est de qualité et aussi autorisé, votre succès du test RedHat RH-202 peut bien assuré. Nous allons mettre le jour successivement juste pour répondre les demandes de tous candidats.

Si vous travaillez quand même très dur et dépensez beaucoup de temps pour préparer le test RedHat RH-202, mais ne se savez pas du tout c'est où le raccourci pour passer le test certification, Pass4Test peut vous donner une solution efficace. Vous vous sentirez magiquement jouer un effet multiplicateur.

Code d'Examen: RH-202
Nom d'Examen: RedHat (Redhat Certified Technician on Redhat Enterprise Linux 5 (Labs))
Questions et réponses: 171 Q&As

Choisissez le Pass4Test, choisissez le succès. Le produit offert par Pass4Test vous permet à réussir le test RedHat RH-202. C'est necessaire de prendre un test simulation avant participer le test réel. C'est une façon bien effective. Choisir Pass4Test vous permet à réussir 100% le test.

Beaucoup de travailleurs dans l'Industrie IT peut obenir un meilleur travail et améliorer son niveau de vie à travers le Certificat RedHat RH-202. Mais la majorité des candidats dépensent beaucoup de temps et d'argent pour préparer le test, ça ne coûte pas dans cette société que le temps est tellement précieux. Pass4Test peut vous aider à économiser le temps et l'effort pendant le cours de la préparation du test RedHat RH-202. Choisir le produit de Pass4Test particulier pour le test Certification RedHat RH-202 vous permet à réussir 100% le test. Votre argent sera tout rendu si malheureusement vous ne passez pas le test.

RH-202 Démo gratuit à télécharger: http://www.pass4test.fr/RH-202.html

NO.1 vi /etc/fstab /dev/hda? swap swap defaults 0 0

RedHat   RH-202   RH-202 examen   RH-202   RH-202 examen   RH-202 examen

NO.2 edquota -u user1 /data and Specified the Soft limit and hard limit on opened file.
To verify either quota is working or not:
Soft limit specify the limit to generate warnings to users and hard limit can't cross by the user. Use the
quota command or repquota command to monitor the quota information.
3. One Logical Volume named lv1 is created under vg0. The Initial Size of that Logical Volume is 100MB.
Now you required the size 500MB. Make successfully the size of that Logical Volume 500M without losing
any data. As well as size should be increased online.
Answer and Explanation:
The LVM system organizes hard disks into Logical Volume (LV) groups. Essentially, physical hard disk
partitions (or possibly RAID arrays) are set up in a bunch of equalsized chunks known as Physical Extents
(PE). As there are several other concepts associated with the LVM system, let's start with some basic
definitions:
Physical Volume (PV) is the standard partition that you add to the LVM mix. Normally, a physical volume
is a standard primary or logical partition. It can also be a RAID array.
Physical Extent (PE) is a chunk of disk space. Every PV is divided into a number of equal sized PEs.
Every PE in a LV group is the same size. Different LV groups can have different sized PEs.
Logical Extent (LE) is also a chunk of disk space. Every LE is mapped to a specific PE.
Logical Volume (LV) is composed of a group of LEs. You can mount a filesystem such as /home and /var
on an LV.
Volume Group (VG) is composed of a group of LVs. It is the organizational group for LVM. Most of the
commands that you'll use apply to a specific VG.
1. Verify the size of Logical Volume: lvdisplay /dev/vg0/lv1
2. Verify the Size on mounted directory: df -h or df -h mounted directory name
3. Use : lvextend -L+400M /dev/vg0/lv1
4. ext2online -d /dev/vg0/lv1 to bring extended size online.
5. Again Verify using lvdisplay and df -h command.
4. Create one partitions having size 100MB and mount it on /data.
Answer and Explanation:
1. Use fdisk /dev/hda To create new partition.
2. Type n For New partitions
3. It will ask for Logical or Primary Partitions. Press l for logical.
4. It will ask for the Starting Cylinder: Use the Default by pressing Enter Key.
5. Type the Size: +100M You can Specify either Last cylinder of Size here.
6. Press P to verify the partitions lists and remember the partitions name.

RedHat   RH-202   RH-202 examen   RH-202   RH-202 examen   RH-202 examen

NO.3 Reboot the System and verify that swap is automatically enabled or not.
10. You are a System administrator. Using Log files very easy to monitor the system. Now there are 50
servers running as Mail, Web, Proxy, DNS services etc. You want to centralize the logs from all servers
into on LOG Server. How will you configure the LOG Server to accept logs from remote host ?
Answer and Explanation:
By Default system accept the logs only generated from local host. To accept the Log
from other host configure:
1. vi /etc/sysconfig/syslog SYSLOGD_OPTIONS="-m 0 -r"
Where
-m 0 disables 'MARK' messages.
-r enables logging from remote machines
-x disables DNS lookups on messages recieved with -r
2. service syslog restart

RedHat   RH-202   RH-202 examen   RH-202   RH-202 examen   RH-202 examen

NO.4 Either Reboot or use partprobe command.

RedHat   RH-202   RH-202 examen   RH-202   RH-202 examen   RH-202 examen

NO.5 Quota is implemented on /data but not working properly. Find out the Problem and implement the quota
to user1 to have a soft limit 60 inodes (files) and hard limit of 70 inodes (files).
Answer and Explanation:
Quotas are used to limit a user's or a group of users' ability to consume disk space. This prevents a small
group of users from monopolizing disk capacity and potentially interfering with other users or the entire
system. Disk quotas are commonly used by ISPs, by Web hosting companies, on FTP sites, and on
corporate file servers to ensure continued availability of their systems.
Without quotas, one or more users can upload files on an FTP server to the point of filling a filesystem.
Once the affected partition is full, other users are effectively denied upload access to the disk. This is also
a reason to mount different filesystem directories on different partitions. For example, if you only had
partitions for your root (/) directory and swap space, someone uploading to your computer could fill up all
of the space in your root directory (/). Without at least a little free space in the root directory (/), your
system could become unstable or even crash.
You have two ways to set quotas for users. You can limit users by inodes or by kilobytesized disk blocks.
Every Linux file requires an inode. Therefore, you can limit users by the number of files or by absolute
space. You can set up different quotas for different filesystems. For example, you can set different quotas
for users on the /home and /tmp directories if they are mounted on their own partitions.
Limits on disk blocks restrict the amount of disk space available to a user on your system.
Older versions of Red Hat Linux included LinuxConf, which included a graphical tool to configure quotas.
As of this writing, Red Hat no longer has a graphical quota configuration tool. Today, you can configure
quotas on RHEL only through the command line interface.
1. vi /etc/fstab /dev/hda11 /data ext3 defaults,usrquota 1 2
2. Either Reboot the System or remount the partition.
Mount -o remount /dev/hda11 /data

RedHat   RH-202   RH-202 examen   RH-202   RH-202 examen   RH-202 examen

NO.6 mkswap /dev/hda? To create Swap File system on partition.

RedHat   RH-202   RH-202 examen   RH-202   RH-202 examen   RH-202 examen

NO.7 Press w to write on partitions table.

RedHat   RH-202   RH-202 examen   RH-202   RH-202 examen   RH-202 examen

NO.8 vi /etc/fstab
Write:
/dev/hda? /data ext3 defaults 1 2

RedHat   RH-202   RH-202 examen   RH-202   RH-202 examen   RH-202 examen

NO.9 quotaon -u /data

RedHat   RH-202   RH-202 examen   RH-202   RH-202 examen   RH-202 examen

NO.10 swapon /dev/hda? To enable the Swap space from partition.

RedHat   RH-202   RH-202 examen   RH-202   RH-202 examen   RH-202 examen

NO.11 Verify by mounting on current Sessions also:
mount /dev/hda? /data
5. 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.
Answer and Explanation:
When you Boot the System, it starts on default Runlevel specified in /etc/inittab: Id:?:initdefault:
When System Successfully boot, it will ask for username and password. But you don't know the root's
password. To change the root password you need to boot the system into single user mode. You can pass
the kernel arguments from the boot loader.
1. Restart the System.
2. You will get the boot loader GRUB screen.
3. Press a and type 1 or s for single mode ro root=LABEL=/ rhgb queit s
4. System will boot on Single User mode.
5. Use passwd command to change.
6. Press ctrl+d
6. There are more then 400 Computers in your Office. You are appointed as a System Administrator. But
you don't have Router. So, you are going to use your One Linux Server as a Router. How will you enable
IP packets forward?
Answer and Explanation:
1. /proc is the virtual filesystem, we use /proc to modify the kernel parameters at running time.
# echo "1" >/proc/sys/net/ipv4/ip_forward
2. /etc/sysctl.conf when System Reboot on next time, /etc/rc.d/rc.sysinit scripts reads the file
/etc/sysctl.conf. To enable the IP forwarding on next reboot also you need to set the parameter.
net.ipv4.ip_forward=1
Here 0 means disable, 1 means enable.
7. You Completely Install the Redhat Enterprise Linux ES 4 on your System. While start the system, it's
giving error to load X window System. How will you fix that problem and make boot successfully run X
Window System.
Answer and Explanation:
Think while Problems occurred on booting System on Runlevel 5 (X Window).
1. /tmp is full or not
2. Quota is already reached
3. Video card or resolution or monitor is misconfigured.
4. xfs service is running or not.
Do These:
1. df -h /tmp /tmp is full remove the unnecessary file
2. quota username if quota is already reached remove unnecessary file from home directory.
3. Boot the System in runlevel 3. you can pass the Kernel Argument from boot loader.
4. Use command: system-config-display It will display a dialog to configure the monitor, Video card,
resolution etc.
5. Set the Default Runlevel 5 in /etc/inittab id:5:initdefault:
6. Reboot the System you will get the GUI login Screen.
8. There are two different networks, 192.168.0.0/24 and 192.168.1.0/24. Your System is in 192.168.0.0/24
Network. One RHEL 4 Installed System is going to use as a Router. All required configuration is already
done on Linux Server. Where 192.168.0.254 and 192.168.1.254 IP Address are assigned on that Server.
How will make successfully ping to 192.168.1.0/24 Network's Host?
Answer:
1. vi /etc/sysconfig/network
GATEWAY=192.168.0.254
OR
vi /etc/sysconf/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=static
ONBOOT=yes
IPADDR=192.168.0.?
NETMASK=255.255.255.0
GATEWAY=192.168.0.254
2. service network restart
Explanation: Gateway defines the way to exit the packets. According to question System working as a
router for two networks have IP Address 192.168.0.254 and 192.168.1.254. To get the hosts on
192.168.1.0/24 should go through 192.168.0.254.
9. Make a swap partition having 100MB. Make Automatically Usable at System Boot Time.
Answer and Explanation:
1. Use fdisk /dev/hda To create new partition.
2. Type n For New partition
3. It will ask for Logical or Primary Partitions. Press l for logical.
4. It will ask for the Starting Cylinder: Use the Default by pressing Enter Key.
5. Type the Size: +100M You can Specify either Last cylinder of Size here.
6. Press P to verify the partitions lists and remember the partitions name.
Default System ID is 83 that means Linux Native.
7. Type t to change the System ID of partition.
8. Type Partition Number
9. Type 82 that means Linux Swap.
10. Press w to write on partitions table.
11. Either Reboot or use partprobe command.

RedHat   RH-202   RH-202 examen   RH-202   RH-202 examen   RH-202 examen

NO.12 quotacheck -ufm /data

RedHat   RH-202   RH-202 examen   RH-202   RH-202 examen   RH-202 examen

NO.13 Use mkfs -t ext3 /dev/hda?
Or
mke2fs -j /dev/hda? To create ext3 filesystem.

RedHat   RH-202   RH-202 examen   RH-202   RH-202 examen   RH-202 examen

NO.14 free -m Verify Either Swap is enabled or not.

RedHat   RH-202   RH-202 examen   RH-202   RH-202 examen   RH-202 examen

NO.15 Make Successfully Resolve to server1.example.com where DNS Server is 192.168.0.254.
Answer: 1. vi /etc/resolv.conf

RedHat   RH-202   RH-202 examen   RH-202   RH-202 examen   RH-202 examen

NO.16 touch /data/aquota.user

RedHat   RH-202   RH-202 examen   RH-202   RH-202 examen   RH-202 examen

Si vous choisissez notre l'outil formation, Pass4Test peut vous assurer le succès 100% du test RedHat RH-202. Votre argent sera tout rendu si vous échouez le test.

2013年11月19日星期二

RedHat meilleur examen RH133, questions et réponses

Les produits de Pass4Test sont préparés pour le test Certification RedHat RH133, y compris les formations et les informations ciblées au test RedHat RH133. D'ailleurs, la Q&A de Pass4Test qui est impressionnée par la grande couverture des questions et la haute précision des réponses vous permet à réussir le test avec une haute note.

La solution offerte par Pass4Test comprenant un test simulation bien proche de test réel RedHat RH133 peut vous assurer à réussir 100% le test RedHat RH133. D'ailleur, le service de la mise à jour gratuite est aussi pour vous. Maintenant, vous pouvez télécharger le démo gratuit pour prendre un essai.

Le test RedHat RH133 est bien populaire dans l'Industrie IT. Mais ça coûte beaucoup de temps pour bien préparer le test. Le temps est certainemetn la fortune dans cette société. L'outil de formation offert par Pass4Test ne vous demande que 20 heures pour renforcer les connaissances essentales pour le test RedHat RH133. Vous aurez une meilleure préparation bien que ce soit la première fois à participer le test.

Code d'Examen: RH133
Nom d'Examen: RedHat (Red Hat Linux System Administration)
Questions et réponses: 336 Q&As

Vous pouvez trouver un meilleur boulot dans l'industrie IT à travers d'obtenir le test RedHat RH133, la voie à la réussite de votre professionnel sera ouverte pour vous.

RH133 Démo gratuit à télécharger: http://www.pass4test.fr/RH133.html

NO.1 You want to make Rick an owner of the files TRADE1.TXT and TRDREPORT.TXT. Which of the
following commands will you use to accomplish this?
A. chown rick TRADE1.TXT TRDREPORT.TXT
B. chgrp rick TRADE1.TXT + TRDREPORT.TXT
C. chown rick TRADE1.TXT + TRDREPORT.TXT
D. chgrp rick TRADE1.TXT TRDREPORT.TXT
Answer: A

certification RedHat   RH133 examen   RH133 examen   certification RH133   RH133 examen

NO.2 You want to temporarily change your primary group to another group of which you are a member. In
this process, a new shell will be created, and when you exit the shell, your previous group will be
reinstated. Which of the following commands will you use to accomplish this task?
A. chgrp
B. newgrp
C. chmod
D. chown
Answer: B

certification RedHat   RH133   RH133   RH133   certification RH133   RH133

NO.3 You want to verify the PGP signature of all headers and signatures associated with an RPM package.
Which of the following commands will you use to accomplish the task?
Each correct answer represents a complete solution. Choose all that apply.
A. rpm -e
B. rpm -K
C. rpm --checksig
D. rpm -V
Answer: B,C,D

RedHat examen   RH133   RH133   RH133

NO.4 Which of following options will you use to force mtr to display numeric IP numbers and not try to
resolve the host names?
A. -t
B. -n
C. -l
D. -p
Answer: B

RedHat examen   certification RH133   RH133 examen   RH133

NO.5 You work as a Linux Technician for Tech Perfect Inc. The company has a Linux-based network.
You have configured a database server in the network. Users complain that the server has
become remarkably slow. However, the previous day, the server was performing well. You know that
some of the processes may be the cause of the issue. You run the PS command on the server. In the
result set, which information will you look at that suggests the problematic process?
A. A high load average
B. A high process ID
C. A low load average
D. A low CPU time
E. A high CPU time
Answer: E

certification RedHat   RH133   RH133 examen   RH133

NO.6 Which of the following commands displays a module name or filename and associated
information, such as the authors name, license, description, module version, dependencies, parameters,
etc?
A. modprobe
B. lsmod
C. modprob
D. modinfo
Answer: D

RedHat examen   RH133   RH133   RH133   RH133

NO.7 Which of the following commands can be used to check the errors of the ext2 and ext3
filesystems?
Each correct answer represents a complete solution. Choose two.
A. fsck --ext2
B. fsck.ext3
C. fsck --ext3
D. e2fsck
Answer: B,D

certification RedHat   RH133   certification RH133

NO.8 You work as a Network Administrator for Tech Perfect Inc. The company has a Linux-based network.
You are configuring a server that will be used as a file server. You want to install an RPM package, named
FILELOCATOR, on the server. You want to check whether the package is already installed. Which of the
following commands will you use?
A. grep FILELOCATOR
B. find -q rpm |grep FILELOCATOR
C. rpm -qa | grep FILELOCATOR
D. find FILELOCATOR
Answer: C

RedHat   certification RH133   RH133 examen   RH133   RH133

NO.9 Which of the following commands will you run to list all files that have been modified within the last 60
minutes?
A. find /etc -name *.txt
B. find start -dir -min -60
C. find start -dir -cmin -60
D. find start -cmin -60
Answer: C

RedHat examen   certification RH133   certification RH133

NO.10 After enabling shadowed passwords in a Linux server, where does Linux keep the passwords?
A. /usr/shadow
B. /etc/passwd
C. /usr/passwd
D. /etc/shadow
Answer: D

RedHat   RH133   RH133

NO.11 By default, which of the following commands configures the current run level?
A. chkconfig
B. pstree
C. service
D. ntsysv
Answer: D

RedHat examen   certification RH133   certification RH133   RH133

NO.12 You work as a Network Administrator for Net World International. The company has a Linux-based
network. You want to upgrade an RPM package and get the status during the upgrade. Which of the
following commands will you use to accomplish the task?
A. rpm -ivh
B. rpm -evh
C. rpm -qvh
D. rpm -Uvh
Answer: D

certification RedHat   RH133   certification RH133   RH133 examen   RH133   RH133

NO.13 Fill in the blank with the appropriate command.
The ________ command recursively removes files, which have not been accessed for a period oftime.
A. tmpwatch
Answer: A

RedHat   RH133   certification RH133

NO.14 You work as a Software Engineer for McNiel Inc. The company has a Linux-based network. The
company has 150 Engineers. The root user has configured quota limits for each user. You want to view
quota limits for your system. Which of the following commands will you use to accomplish this task?
A. repquota -a
B. quota -v
C. quotacheck
D. edquota
Answer: B

RedHat examen   RH133   RH133   certification RH133   RH133   RH133

NO.15 You work as a Network Administrator for McNeil Inc. The company has a Linux-based network.
You are a root user on the Linux system. You have to create a user named Trinity and deny interactive
login. Which of the following should you use to accomplish the task?
Each correct answer represents a part of the solution. Choose all that apply.
A. vi /etc/passwd
B. vi /etc/shadow
C. useradd Trinity
D. passwd Trinity
E. Trinity:x:505:505::/home/Trinity:/sbin/nonlogin
Answer: A,B,C,D,E

certification RedHat   certification RH133   RH133 examen   RH133 examen   certification RH133

NO.16 You want only the root access in a Linux computer for maintenance purposes. Which of the following
runlevels will you use to boot the computer?
A. 2
B. 0
C. 1
D. 3
Answer: C

RedHat examen   RH133   certification RH133

NO.17 Which of the following commands is used to create a user account for a new user?
A. USERMOD
B. MOUNT
C. USERADD
D. CRUSER
Answer: C

RedHat   certification RH133   RH133

NO.18 CORRECT TEXT
Drag and drop the appropriate command in front of its respective function.
Answer: A

RedHat   RH133   RH133 examen

NO.19 Which of the following commands can be used to compress a file?
Each correct answer represents a complete solution. Choose all that apply.
A. gzip
B. compress
C. tar
D. zip
Answer: A,B,D

RedHat   RH133   certification RH133   RH133 examen

NO.20 John works as a Network Administrator for Perfect Solutions Inc. The company has a Linux-based
network. John is working as a root user on the Linux operating system. He wants to run the cc process at
runlevel three. If the order of execution of cc command is 43, which of the following commands will John
use to accomplish his task?
A. ln -s /etc/init.d/cc /etc/rc.d/rc3.d/K43cc
B. ln -s /etc/rc.d/init.d/cc /etc/rc.d/rc3.d/K43cc
C. ln -s /etc/rc.d/cc /etc/rc.d/rc3.d/s43cc
D. ln -s /etc/rc.d/init.d/cc /etc/rc.d/rc3.d/S43cc
Answer: D

RedHat   certification RH133   RH133 examen   RH133

NO.21 Which of the following statements are true about kernel modules?
Each correct answer represents a complete solution. Choose all that apply.
A. Kernel modules do not support executable loaders.
B. The kernel module contains extra kernel codes that may be loaded after the loading of the basekernel.
Only a minimal resident kernel is loaded into memory at boot time.
C. Kernel modules do not support the device drivers, network drivers, and file system drivers.
D. Whenever a user requests a feature that is not present in the resident kernel, a kernel moduleis
dynamically loaded into memory.
Answer: B,D

RedHat   RH133   RH133

NO.22 You work as a System Administrator for McNeil Inc. The company has a Linux based network.
You are a root user on Red Hat operating system. You have upgraded the amount of RAM in your system
from 256 MB to 512 MB, but there is only 512 MB of swap space. Therefore, you want to add more swap
space to /dev/hdb2 hard drive to run the applications that require a large amount of memory. Which of the
following commands should you run to accomplish this task? Each correct answer represents a complete
solution. Choose all that apply.
A. mkswap /dev/hdb2
B. swapon /dev/hdb2
C. mount
D. parted
Answer: A,B,D

RedHat examen   certification RH133   RH133 examen   certification RH133

NO.23 John works as a Network Administrator for Perfect Solutions Inc. The company has a Linux-based
network. He is working as a root user on the Linux operating system. He wants to add a soft limit quota
warning for the users, in which, after exceeding the quota value, a user will receive e-mail warnings about
being over quotA. Which of the following commands will John use to accomplish his task?
Each correct answer represents a complete solution. Choose all that apply.
A. repquota
B. quotaon
C. warnquota
D. edquota
E. quotaoff
Answer: C,D

RedHat   RH133 examen   RH133   RH133

NO.24 After creating the swap area, which of the following commands will you need to run to start using it?
A. mkswap
B. mkfs
C. swapon
D. swapoff
Answer: C

RedHat   RH133   RH133 examen   certification RH133

NO.25 You work as a Network Administrator for Rick Inc. The company has a Linux-based network. You are
configuring a Linux server. Which of the following bootloaders does not require to be rewritten after the
configuration of the kernel has been changed?
A. GRUB
B. BOOTP
C. LILO
D. ELILO
Answer: A

RedHat   RH133   certification RH133   RH133

NO.26 When installing RHEL in the graphical interface, which of the following switches can be used to specify
a resolution?
A. lowers
B. vnc
C. resolution
D. skipddc
Answer: C

RedHat examen   RH133 examen   certification RH133

NO.27 Which of the following commands can be used to modify kernel parameters at runtime?
A. sync
B. sysctl
C. mkinitrd
D. lsdev
Answer: B

certification RedHat   certification RH133   RH133   RH133

NO.28 You work as a Network Administrator for Secure Web Inc. The company has a Linux-based network.
The network has a mixed set of client operating systems. You want to format a new hard disk drive. The
drive will have only one partition. Both the Linux and Windows operating systems will access the partition.
Which of the following file systems will you use?
A. VFAT
B. XFS
C. REISER
D. EXT3
Answer: A

certification RedHat   RH133 examen   RH133 examen   RH133   certification RH133   RH133 examen

NO.29 Which of the following fsck commands will you use to check all filesystems listed in /etc/fstab?
A. fsck -P
B. fsck -f
C. fsck -A
D. fsck -y
Answer: C

RedHat   RH133 examen   certification RH133

NO.30 What is the minimum RAM requirement for installing Red Hat in GUI mode?
A. 1GB
B. 512 MB
C. 128MB
D. 64MB
Answer: C

RedHat   RH133   RH133   certification RH133

Votre vie changera beaucoup après d'obtenir le Certificat de RedHat RH133. Tout va améliorer, la vie, le boulot, etc. Après tout, RedHat RH133 est un test très important dans la série de test Certification RedHat. Mais c'est pas facile à réussir le test RedHat RH133.

2013年10月12日星期六

Le plus récent matériel de formation RedHat RH133

Beaucoup de travailleurs espèrent obtenir quelques Certificat IT pour avoir une plus grande space de s'améliorer. Certains certificats peut vous aider à réaliser ce rêve. Le test RedHat RH133 est un certificat comme ça. Mais il est difficile à réussir. Il y a plusieurs façons pour se préparer, vous pouvez dépenser plein de temps et d'effort, ou vous pouvez choisir une bonne formation en Internet. Pass4Test est un bon fournisseur de l'outil formation de vous aider à atteindre votre but. Selons vos connaissances à propos de Pass4Test, vous allez faire un bon choix de votre formation.

Pass4Test a une équipe se composant des experts qui font la recherche particulièrement des exercices et des Q&As pour le test certification RedHat RH133, d'ailleurs ils peuvent vous proposer à propos de choisir l'outil de se former en ligne. Si vous avez envie d'acheter une Q&A de Pass4Test, Pass4Test vous offrira de matériaux plus détailés et plus nouveaux pour vous aider à approcher au maximum le test réel. Assurez-vous de choisir le Pass4Test, vous réussirez 100% le test RedHat RH133.

Code d'Examen: RH133
Nom d'Examen: RedHat (Red Hat Linux System Administration)
Questions et réponses: 336 Q&As

On peut voir que beaucoup de candidats ratent le test RedHat RH133 quand même avec l'effort et beaucoup de temps dépensés. Cest une bonne preuve que le test RedHat RH133 est difficile à réussir. Pass4Test offre le guide d'étude bien fiable. Sauf le test RedHat RH133, Pass4Test peut offrir les Q&As des autres test Certification IT.

On peut télécharger quelques parties de Q&A gratuites dans le site Pass4Test à propos de test Certification RedHat RH133. Vous pouvez tester notre fiabilité via le démo. Choisir Pass4Test, c'est-à-dire que vous êtes proche d'un pic ensuite de l'Industrie IT.

Pass4Test est un site de provider les chances à se former avant le test Certification IT. Il y a de différentes formations ciblées aux tous candidats. C'est plus facile à passer le test avec la formation de Pass4Test. Parmi les qui ont déjà réussi le test, la majorité a fait la préparation avec la Q&A de Pass4Test. Donc c'est pourquoi, Pass4Test a une bonne réputation dansn l'Industrie IT.

RH133 Démo gratuit à télécharger: http://www.pass4test.fr/RH133.html

NO.1 Which of following options will you use to force mtr to display numeric IP numbers and not try to
resolve the host names?
A. -t
B. -n
C. -l
D. -p
Answer: B

RedHat   RH133 examen   RH133   RH133   RH133

NO.2 Which of the following commands can be used to modify kernel parameters at runtime?
A. sync
B. sysctl
C. mkinitrd
D. lsdev
Answer: B

certification RedHat   RH133   RH133   certification RH133   certification RH133

NO.3 You work as a Network Administrator for Secure Web Inc. The company has a Linux-based network.
The network has a mixed set of client operating systems. You want to format a new hard disk drive. The
drive will have only one partition. Both the Linux and Windows operating systems will access the partition.
Which of the following file systems will you use?
A. VFAT
B. XFS
C. REISER
D. EXT3
Answer: A

RedHat examen   certification RH133   RH133 examen

NO.4 By default, which of the following commands configures the current run level?
A. chkconfig
B. pstree
C. service
D. ntsysv
Answer: D

RedHat examen   certification RH133   RH133   RH133

NO.5 John works as a Network Administrator for Perfect Solutions Inc. The company has a Linux-based
network. John is working as a root user on the Linux operating system. He wants to run the cc process at
runlevel three. If the order of execution of cc command is 43, which of the following commands will John
use to accomplish his task?
A. ln -s /etc/init.d/cc /etc/rc.d/rc3.d/K43cc
B. ln -s /etc/rc.d/init.d/cc /etc/rc.d/rc3.d/K43cc
C. ln -s /etc/rc.d/cc /etc/rc.d/rc3.d/s43cc
D. ln -s /etc/rc.d/init.d/cc /etc/rc.d/rc3.d/S43cc
Answer: D

certification RedHat   RH133   RH133   RH133 examen   RH133   RH133

NO.6 Which of the following fsck commands will you use to check all filesystems listed in /etc/fstab?
A. fsck -P
B. fsck -f
C. fsck -A
D. fsck -y
Answer: C

certification RedHat   RH133   RH133   RH133

NO.7 You want to make Rick an owner of the files TRADE1.TXT and TRDREPORT.TXT. Which of the
following commands will you use to accomplish this?
A. chown rick TRADE1.TXT TRDREPORT.TXT
B. chgrp rick TRADE1.TXT + TRDREPORT.TXT
C. chown rick TRADE1.TXT + TRDREPORT.TXT
D. chgrp rick TRADE1.TXT TRDREPORT.TXT
Answer: A

RedHat   RH133   certification RH133   RH133 examen   RH133   certification RH133

NO.8 You want only the root access in a Linux computer for maintenance purposes. Which of the following
runlevels will you use to boot the computer?
A. 2
B. 0
C. 1
D. 3
Answer: C

certification RedHat   certification RH133   RH133 examen   certification RH133

NO.9 You work as a Network Administrator for McNeil Inc. The company has a Linux-based network.
You are a root user on the Linux system. You have to create a user named Trinity and deny interactive
login. Which of the following should you use to accomplish the task?
Each correct answer represents a part of the solution. Choose all that apply.
A. vi /etc/passwd
B. vi /etc/shadow
C. useradd Trinity
D. passwd Trinity
E. Trinity:x:505:505::/home/Trinity:/sbin/nonlogin
Answer: A,B,C,D,E

RedHat   certification RH133   certification RH133   RH133

NO.10 Fill in the blank with the appropriate command.
The ________ command recursively removes files, which have not been accessed for a period oftime.
A. tmpwatch
Answer: A

RedHat   certification RH133   RH133 examen

NO.11 Which of the following statements are true about kernel modules?
Each correct answer represents a complete solution. Choose all that apply.
A. Kernel modules do not support executable loaders.
B. The kernel module contains extra kernel codes that may be loaded after the loading of the basekernel.
Only a minimal resident kernel is loaded into memory at boot time.
C. Kernel modules do not support the device drivers, network drivers, and file system drivers.
D. Whenever a user requests a feature that is not present in the resident kernel, a kernel moduleis
dynamically loaded into memory.
Answer: B,D

RedHat   RH133   certification RH133

NO.12 Which of the following commands displays a module name or filename and associated
information, such as the authors name, license, description, module version, dependencies, parameters,
etc?
A. modprobe
B. lsmod
C. modprob
D. modinfo
Answer: D

certification RedHat   RH133   RH133   RH133 examen   certification RH133

NO.13 Which of the following commands can be used to check the errors of the ext2 and ext3
filesystems?
Each correct answer represents a complete solution. Choose two.
A. fsck --ext2
B. fsck.ext3
C. fsck --ext3
D. e2fsck
Answer: B,D

RedHat   RH133   certification RH133   certification RH133

NO.14 Which of the following commands is used to create a user account for a new user?
A. USERMOD
B. MOUNT
C. USERADD
D. CRUSER
Answer: C

RedHat   RH133   RH133 examen   RH133 examen

NO.15 What is the minimum RAM requirement for installing Red Hat in GUI mode?
A. 1GB
B. 512 MB
C. 128MB
D. 64MB
Answer: C

RedHat   RH133   certification RH133   RH133 examen   RH133 examen   certification RH133

NO.16 CORRECT TEXT
Drag and drop the appropriate command in front of its respective function.
Answer: A

RedHat   certification RH133   RH133   RH133 examen

NO.17 After enabling shadowed passwords in a Linux server, where does Linux keep the passwords?
A. /usr/shadow
B. /etc/passwd
C. /usr/passwd
D. /etc/shadow
Answer: D

RedHat   RH133   certification RH133   RH133 examen   RH133

NO.18 You work as a Linux Technician for Tech Perfect Inc. The company has a Linux-based network.
You have configured a database server in the network. Users complain that the server has
become remarkably slow. However, the previous day, the server was performing well. You know that
some of the processes may be the cause of the issue. You run the PS command on the server. In the
result set, which information will you look at that suggests the problematic process?
A. A high load average
B. A high process ID
C. A low load average
D. A low CPU time
E. A high CPU time
Answer: E

certification RedHat   RH133 examen   RH133   RH133 examen   RH133

NO.19 You work as a Network Administrator for Tech Perfect Inc. The company has a Linux-based network.
You are configuring a server that will be used as a file server. You want to install an RPM package, named
FILELOCATOR, on the server. You want to check whether the package is already installed. Which of the
following commands will you use?
A. grep FILELOCATOR
B. find -q rpm |grep FILELOCATOR
C. rpm -qa | grep FILELOCATOR
D. find FILELOCATOR
Answer: C

RedHat   RH133 examen   RH133   certification RH133   certification RH133

NO.20 Which of the following commands can be used to compress a file?
Each correct answer represents a complete solution. Choose all that apply.
A. gzip
B. compress
C. tar
D. zip
Answer: A,B,D

certification RedHat   RH133   certification RH133   RH133

NO.21 After creating the swap area, which of the following commands will you need to run to start using it?
A. mkswap
B. mkfs
C. swapon
D. swapoff
Answer: C

RedHat   RH133 examen   RH133 examen   certification RH133   RH133

NO.22 You work as a System Administrator for McNeil Inc. The company has a Linux based network.
You are a root user on Red Hat operating system. You have upgraded the amount of RAM in your system
from 256 MB to 512 MB, but there is only 512 MB of swap space. Therefore, you want to add more swap
space to /dev/hdb2 hard drive to run the applications that require a large amount of memory. Which of the
following commands should you run to accomplish this task? Each correct answer represents a complete
solution. Choose all that apply.
A. mkswap /dev/hdb2
B. swapon /dev/hdb2
C. mount
D. parted
Answer: A,B,D

RedHat examen   RH133 examen   certification RH133

NO.23 You work as a Software Engineer for McNiel Inc. The company has a Linux-based network. The
company has 150 Engineers. The root user has configured quota limits for each user. You want to view
quota limits for your system. Which of the following commands will you use to accomplish this task?
A. repquota -a
B. quota -v
C. quotacheck
D. edquota
Answer: B

RedHat examen   certification RH133   certification RH133   RH133 examen   RH133

NO.24 You work as a Network Administrator for Rick Inc. The company has a Linux-based network. You are
configuring a Linux server. Which of the following bootloaders does not require to be rewritten after the
configuration of the kernel has been changed?
A. GRUB
B. BOOTP
C. LILO
D. ELILO
Answer: A

certification RedHat   RH133   RH133   certification RH133

NO.25 You work as a Network Administrator for Net World International. The company has a Linux-based
network. You want to upgrade an RPM package and get the status during the upgrade. Which of the
following commands will you use to accomplish the task?
A. rpm -ivh
B. rpm -evh
C. rpm -qvh
D. rpm -Uvh
Answer: D

RedHat   RH133 examen   RH133   RH133   RH133

NO.26 When installing RHEL in the graphical interface, which of the following switches can be used to specify
a resolution?
A. lowers
B. vnc
C. resolution
D. skipddc
Answer: C

RedHat   RH133   RH133

NO.27 You want to verify the PGP signature of all headers and signatures associated with an RPM package.
Which of the following commands will you use to accomplish the task?
Each correct answer represents a complete solution. Choose all that apply.
A. rpm -e
B. rpm -K
C. rpm --checksig
D. rpm -V
Answer: B,C,D

RedHat   RH133   certification RH133

NO.28 You want to temporarily change your primary group to another group of which you are a member. In
this process, a new shell will be created, and when you exit the shell, your previous group will be
reinstated. Which of the following commands will you use to accomplish this task?
A. chgrp
B. newgrp
C. chmod
D. chown
Answer: B

certification RedHat   certification RH133   RH133   RH133

NO.29 John works as a Network Administrator for Perfect Solutions Inc. The company has a Linux-based
network. He is working as a root user on the Linux operating system. He wants to add a soft limit quota
warning for the users, in which, after exceeding the quota value, a user will receive e-mail warnings about
being over quotA. Which of the following commands will John use to accomplish his task?
Each correct answer represents a complete solution. Choose all that apply.
A. repquota
B. quotaon
C. warnquota
D. edquota
E. quotaoff
Answer: C,D

RedHat   RH133 examen   RH133   RH133

NO.30 Which of the following commands will you run to list all files that have been modified within the last 60
minutes?
A. find /etc -name *.txt
B. find start -dir -min -60
C. find start -dir -cmin -60
D. find start -cmin -60
Answer: C

certification RedHat   certification RH133   RH133   RH133   RH133

L'équipe de Pass4Test rehcerche la Q&A de test certification RedHat RH133 en visant le test RedHat RH133. Cet outil de formation peut vous aider à se préparer bien dans une courte terme. Vous vous renforcerez les connaissances de base et même prendrez tous essences de test Certification. Pass4Test vous assure à réussir le test RedHat RH133 sans aucune doute.

2013年9月11日星期三

Le plus récent matériel de formation RedHat RH-202

La Q&A de Pass4Test vise au test Certificat RedHat RH-202. L'outil de formation RedHat RH-202 offert par Pass4Test comprend les exercices de pratique et le test simulation. Vous pouvez trouver les autres sites de provider la Q&A, en fait vous allez découvrir que c'est l'outil de formation de Pass4Test qui offre les documentaions plus compètes et avec une meilleure qualité.

Pass4Test a de formations plus nouvelles pour le test RedHat RH-202. Les experts dans l'industrie IT de Pass4Test profitant leurs expériences et connaissances professionnelles à lancer les Q&As plus chaudes pour faciliter la préparation du test RedHat RH-202 à tous les candidats qui nous choisissent. L'importance de Certification RedHat RH-202 est de plus en plus claire, c'est aussi pourquoi il y a de plus en plus de gens qui ont envie de participer ce test. Parmi tous ces candidats, pas mal de gens ont réussi grâce à Pass4Test. Ces feedbacks peuvent bien prouver nos produits essentiels pour votre réussite de test Certification.

Il y a plusieurs de façons pour réussir le test RedHat RH-202, vous pouvez travailler dur et dépenser beaucoup d'argents, ou vous pouvez travailler plus efficacement avec moins temps dépensés.

Code d'Examen: RH-202
Nom d'Examen: RedHat (Redhat Certified Technician on Redhat Enterprise Linux 5 (Labs))
Questions et réponses: 171 Q&As

Le Pass4Test est un site qui peut offrir les facilités aux candidats et aider les candidats à réaliser leurs rêve. Si vous êtes souci de votre test Certification, Pass4Test peut vous rendre heureux. La haute précision et la grande couverture de la Q&A de Pass4Test vous aidera pendant la préparation de test. Vous n'aurez aucune raison de regretter parce que Pass4Test réalisera votre rêve.

RH-202 Démo gratuit à télécharger: http://www.pass4test.fr/RH-202.html

NO.1 vi /etc/fstab /dev/hda? swap swap defaults 0 0

RedHat   RH-202   certification RH-202   certification RH-202   RH-202

NO.2 touch /data/aquota.user

RedHat   RH-202   certification RH-202   certification RH-202   RH-202

NO.3 Quota is implemented on /data but not working properly. Find out the Problem and implement the quota
to user1 to have a soft limit 60 inodes (files) and hard limit of 70 inodes (files).
Answer and Explanation:
Quotas are used to limit a user's or a group of users' ability to consume disk space. This prevents a small
group of users from monopolizing disk capacity and potentially interfering with other users or the entire
system. Disk quotas are commonly used by ISPs, by Web hosting companies, on FTP sites, and on
corporate file servers to ensure continued availability of their systems.
Without quotas, one or more users can upload files on an FTP server to the point of filling a filesystem.
Once the affected partition is full, other users are effectively denied upload access to the disk. This is also
a reason to mount different filesystem directories on different partitions. For example, if you only had
partitions for your root (/) directory and swap space, someone uploading to your computer could fill up all
of the space in your root directory (/). Without at least a little free space in the root directory (/), your
system could become unstable or even crash.
You have two ways to set quotas for users. You can limit users by inodes or by kilobytesized disk blocks.
Every Linux file requires an inode. Therefore, you can limit users by the number of files or by absolute
space. You can set up different quotas for different filesystems. For example, you can set different quotas
for users on the /home and /tmp directories if they are mounted on their own partitions.
Limits on disk blocks restrict the amount of disk space available to a user on your system.
Older versions of Red Hat Linux included LinuxConf, which included a graphical tool to configure quotas.
As of this writing, Red Hat no longer has a graphical quota configuration tool. Today, you can configure
quotas on RHEL only through the command line interface.
1. vi /etc/fstab /dev/hda11 /data ext3 defaults,usrquota 1 2
2. Either Reboot the System or remount the partition.
Mount -o remount /dev/hda11 /data

RedHat   RH-202   certification RH-202   certification RH-202   RH-202

NO.4 Press w to write on partitions table.

RedHat   RH-202   certification RH-202   certification RH-202   RH-202

NO.5 mkswap /dev/hda? To create Swap File system on partition.

RedHat   RH-202   certification RH-202   certification RH-202   RH-202

NO.6 swapon /dev/hda? To enable the Swap space from partition.

RedHat   RH-202   certification RH-202   certification RH-202   RH-202

NO.7 free -m Verify Either Swap is enabled or not.

RedHat   RH-202   certification RH-202   certification RH-202   RH-202

NO.8 Verify by mounting on current Sessions also:
mount /dev/hda? /data
5. 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.
Answer and Explanation:
When you Boot the System, it starts on default Runlevel specified in /etc/inittab: Id:?:initdefault:
When System Successfully boot, it will ask for username and password. But you don't know the root's
password. To change the root password you need to boot the system into single user mode. You can pass
the kernel arguments from the boot loader.
1. Restart the System.
2. You will get the boot loader GRUB screen.
3. Press a and type 1 or s for single mode ro root=LABEL=/ rhgb queit s
4. System will boot on Single User mode.
5. Use passwd command to change.
6. Press ctrl+d
6. There are more then 400 Computers in your Office. You are appointed as a System Administrator. But
you don't have Router. So, you are going to use your One Linux Server as a Router. How will you enable
IP packets forward?
Answer and Explanation:
1. /proc is the virtual filesystem, we use /proc to modify the kernel parameters at running time.
# echo "1" >/proc/sys/net/ipv4/ip_forward
2. /etc/sysctl.conf when System Reboot on next time, /etc/rc.d/rc.sysinit scripts reads the file
/etc/sysctl.conf. To enable the IP forwarding on next reboot also you need to set the parameter.
net.ipv4.ip_forward=1
Here 0 means disable, 1 means enable.
7. You Completely Install the Redhat Enterprise Linux ES 4 on your System. While start the system, it's
giving error to load X window System. How will you fix that problem and make boot successfully run X
Window System.
Answer and Explanation:
Think while Problems occurred on booting System on Runlevel 5 (X Window).
1. /tmp is full or not
2. Quota is already reached
3. Video card or resolution or monitor is misconfigured.
4. xfs service is running or not.
Do These:
1. df -h /tmp /tmp is full remove the unnecessary file
2. quota username if quota is already reached remove unnecessary file from home directory.
3. Boot the System in runlevel 3. you can pass the Kernel Argument from boot loader.
4. Use command: system-config-display It will display a dialog to configure the monitor, Video card,
resolution etc.
5. Set the Default Runlevel 5 in /etc/inittab id:5:initdefault:
6. Reboot the System you will get the GUI login Screen.
8. There are two different networks, 192.168.0.0/24 and 192.168.1.0/24. Your System is in 192.168.0.0/24
Network. One RHEL 4 Installed System is going to use as a Router. All required configuration is already
done on Linux Server. Where 192.168.0.254 and 192.168.1.254 IP Address are assigned on that Server.
How will make successfully ping to 192.168.1.0/24 Network's Host?
Answer:
1. vi /etc/sysconfig/network
GATEWAY=192.168.0.254
OR
vi /etc/sysconf/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=static
ONBOOT=yes
IPADDR=192.168.0.?
NETMASK=255.255.255.0
GATEWAY=192.168.0.254
2. service network restart
Explanation: Gateway defines the way to exit the packets. According to question System working as a
router for two networks have IP Address 192.168.0.254 and 192.168.1.254. To get the hosts on
192.168.1.0/24 should go through 192.168.0.254.
9. Make a swap partition having 100MB. Make Automatically Usable at System Boot Time.
Answer and Explanation:
1. Use fdisk /dev/hda To create new partition.
2. Type n For New partition
3. It will ask for Logical or Primary Partitions. Press l for logical.
4. It will ask for the Starting Cylinder: Use the Default by pressing Enter Key.
5. Type the Size: +100M You can Specify either Last cylinder of Size here.
6. Press P to verify the partitions lists and remember the partitions name.
Default System ID is 83 that means Linux Native.
7. Type t to change the System ID of partition.
8. Type Partition Number
9. Type 82 that means Linux Swap.
10. Press w to write on partitions table.
11. Either Reboot or use partprobe command.

RedHat   RH-202   certification RH-202   certification RH-202   RH-202

NO.9 edquota -u user1 /data and Specified the Soft limit and hard limit on opened file.
To verify either quota is working or not:
Soft limit specify the limit to generate warnings to users and hard limit can't cross by the user. Use the
quota command or repquota command to monitor the quota information.
3. One Logical Volume named lv1 is created under vg0. The Initial Size of that Logical Volume is 100MB.
Now you required the size 500MB. Make successfully the size of that Logical Volume 500M without losing
any data. As well as size should be increased online.
Answer and Explanation:
The LVM system organizes hard disks into Logical Volume (LV) groups. Essentially, physical hard disk
partitions (or possibly RAID arrays) are set up in a bunch of equalsized chunks known as Physical Extents
(PE). As there are several other concepts associated with the LVM system, let's start with some basic
definitions:
Physical Volume (PV) is the standard partition that you add to the LVM mix. Normally, a physical volume
is a standard primary or logical partition. It can also be a RAID array.
Physical Extent (PE) is a chunk of disk space. Every PV is divided into a number of equal sized PEs.
Every PE in a LV group is the same size. Different LV groups can have different sized PEs.
Logical Extent (LE) is also a chunk of disk space. Every LE is mapped to a specific PE.
Logical Volume (LV) is composed of a group of LEs. You can mount a filesystem such as /home and /var
on an LV.
Volume Group (VG) is composed of a group of LVs. It is the organizational group for LVM. Most of the
commands that you'll use apply to a specific VG.
1. Verify the size of Logical Volume: lvdisplay /dev/vg0/lv1
2. Verify the Size on mounted directory: df -h or df -h mounted directory name
3. Use : lvextend -L+400M /dev/vg0/lv1
4. ext2online -d /dev/vg0/lv1 to bring extended size online.
5. Again Verify using lvdisplay and df -h command.
4. Create one partitions having size 100MB and mount it on /data.
Answer and Explanation:
1. Use fdisk /dev/hda To create new partition.
2. Type n For New partitions
3. It will ask for Logical or Primary Partitions. Press l for logical.
4. It will ask for the Starting Cylinder: Use the Default by pressing Enter Key.
5. Type the Size: +100M You can Specify either Last cylinder of Size here.
6. Press P to verify the partitions lists and remember the partitions name.

RedHat   RH-202   certification RH-202   certification RH-202   RH-202

NO.10 quotaon -u /data

RedHat   RH-202   certification RH-202   certification RH-202   RH-202

NO.11 Reboot the System and verify that swap is automatically enabled or not.
10. You are a System administrator. Using Log files very easy to monitor the system. Now there are 50
servers running as Mail, Web, Proxy, DNS services etc. You want to centralize the logs from all servers
into on LOG Server. How will you configure the LOG Server to accept logs from remote host ?
Answer and Explanation:
By Default system accept the logs only generated from local host. To accept the Log
from other host configure:
1. vi /etc/sysconfig/syslog SYSLOGD_OPTIONS="-m 0 -r"
Where
-m 0 disables 'MARK' messages.
-r enables logging from remote machines
-x disables DNS lookups on messages recieved with -r
2. service syslog restart

RedHat   RH-202   certification RH-202   certification RH-202   RH-202

NO.12 vi /etc/fstab
Write:
/dev/hda? /data ext3 defaults 1 2

RedHat   RH-202   certification RH-202   certification RH-202   RH-202

NO.13 Use mkfs -t ext3 /dev/hda?
Or
mke2fs -j /dev/hda? To create ext3 filesystem.

RedHat   RH-202   certification RH-202   certification RH-202   RH-202

NO.14 Either Reboot or use partprobe command.

RedHat   RH-202   certification RH-202   certification RH-202   RH-202

NO.15 quotacheck -ufm /data

RedHat   RH-202   certification RH-202   certification RH-202   RH-202

NO.16 Make Successfully Resolve to server1.example.com where DNS Server is 192.168.0.254.
Answer: 1. vi /etc/resolv.conf

RedHat   RH-202   certification RH-202   certification RH-202   RH-202

Est-ce que vous vous souciez encore de réussir le test RedHat RH-202? Est-ce que vous attendez plus le guide de formation plus nouveaux? Le guide de formation vient de lancer par Pass4Test peut vous donner la solution. Vous pouvez télécharger la partie de guide gratuite pour prendre un essai, et vous allez découvrir que le test n'est pas aussi dur que l'imaginer. Pass4Test vous permet à réussir 100% le test. Votre argent sera tout rendu si vous échouez le test.

2013年8月20日星期二

Guide de formation plus récente de RedHat RH133

Dans n'importe quelle industrie, tout le monde espère une meilleure occasion de se promouvoir, surtout dans l'industrie de IT. Les professionnelles dans l'industrie IT ont envie d'une plus grande space de se développer. Le Certificat RedHat RH133 peut réaliser ce rêve. Et Pass4Test peut vous aider à réussir le test RedHat RH133.


Différentes façons peuvent atteindre le même but, ça dépend laquelle que vous prenez. Beaucoup de gens choisissent le test RedHat RH133 pour améliorer la vie et la carrière. Mais tous les gens ont déjà participé le test RedHat RH133, ils savent qu'il est difficile à réussir le test. Il y a quelques dépensent le temps et l'argent, mais ratent finalement.


Si vous faites toujours la lutte contre le test RedHat RH133, Pass4Test peut vous aider à résoudre ces difficultés avec ses Q&As de qualité, et atteindre le but que vous avez envie de devenir un membre de RedHat RH133. Si vous avez déjà décidé à s'améliorer via RedHat RH133, vous n'avez pas aucune raison à refuser Pass4Test. Pass4Test peut vous aider à passer le test à la première fois.


La Q&A RedHat RH133 de Pass4Test est liée bien avec le test réel de RedHat RH133. La mise à jour gratuite est pour vous après vendre. Nous avons la capacité à vous assurer le succès de test RedHat RH133 100%. Si malheureusement vous échouerez le test, votre argent sera tout rendu.


Le test RedHat RH133 est le premier pas pour promouvoir dans l'Industrie IT, mais aussi la seule rue ramenée au pic de succès. Le test RedHat RH133 joue un rôle très important dans cette industrie. Et aussi, Pass4Test est un chaînon inevitable pour réussir le test sans aucune doute.


Aujourd'hui, il y a pleine de professionnels IT dans cette société. Ces professionnels sont bien populaires mais ils ont à être en face d'une grande compétition. Donc beaucoup de professionnels IT se prouver par les tests de Certification très difficile à réussir. Pass4Test est voilà pour offrir un raccourci au succès de test Certification.


Pass4Test est un fournisseur important de résume du test Certification IT dans tous les fournissurs. Les experts de Pass4Test travaillent sans arrêt juste pour augmenter la qualité de l'outil formation et vous aider à économiser le temps et l'argent. D'ailleur, le servie en ligne après vendre est toujours disponible pour vous.


Code d'Examen: RH133

Nom d'Examen: RedHat (Red Hat Linux System Administration)

Questions et réponses: 336 Q&As

RH133 Démo gratuit à télécharger: http://www.pass4test.fr/RH133.html


NO.1 Which of following options will you use to force mtr to display numeric IP numbers and not try to
resolve the host names?
A. -t
B. -n
C. -l
D. -p
Answer: B

RedHat   RH133   certification RH133

NO.2 Which of the following commands can be used to compress a file?
Each correct answer represents a complete solution. Choose all that apply.
A. gzip
B. compress
C. tar
D. zip
Answer: A,B,D

certification RedHat   RH133   RH133 examen   certification RH133

NO.3 After creating the swap area, which of the following commands will you need to run to start using it?
A. mkswap
B. mkfs
C. swapon
D. swapoff
Answer: C

RedHat   RH133   RH133   RH133   RH133

NO.4 Which of the following commands can be used to modify kernel parameters at runtime?
A. sync
B. sysctl
C. mkinitrd
D. lsdev
Answer: B

RedHat   certification RH133   certification RH133   certification RH133

NO.5 Which of the following commands displays a module name or filename and associated
information, such as the authors name, license, description, module version, dependencies, parameters,
etc?
A. modprobe
B. lsmod
C. modprob
D. modinfo
Answer: D

RedHat   RH133   RH133   RH133 examen   certification RH133

NO.6 You work as a Network Administrator for Tech Perfect Inc. The company has a Linux-based network.
You are configuring a server that will be used as a file server. You want to install an RPM package, named
FILELOCATOR, on the server. You want to check whether the package is already installed. Which of the
following commands will you use?
A. grep FILELOCATOR
B. find -q rpm |grep FILELOCATOR
C. rpm -qa | grep FILELOCATOR
D. find FILELOCATOR
Answer: C

RedHat examen   RH133   RH133 examen   RH133   RH133

NO.7 Fill in the blank with the appropriate command.
The ________ command recursively removes files, which have not been accessed for a period oftime.
A. tmpwatch
Answer: A

RedHat examen   RH133 examen   RH133

NO.8 What is the minimum RAM requirement for installing Red Hat in GUI mode?
A. 1GB
B. 512 MB
C. 128MB
D. 64MB
Answer: C

certification RedHat   RH133   RH133 examen   RH133 examen   certification RH133

NO.9 Which of the following commands will you run to list all files that have been modified within the last 60
minutes?
A. find /etc -name *.txt
B. find start -dir -min -60
C. find start -dir -cmin -60
D. find start -cmin -60
Answer: C

RedHat examen   RH133 examen   certification RH133   RH133   RH133

NO.10 CORRECT TEXT
Drag and drop the appropriate command in front of its respective function.
Answer: A

RedHat   RH133 examen   RH133 examen   certification RH133   certification RH133   RH133

NO.11 John works as a Network Administrator for Perfect Solutions Inc. The company has a Linux-based
network. He is working as a root user on the Linux operating system. He wants to add a soft limit quota
warning for the users, in which, after exceeding the quota value, a user will receive e-mail warnings about
being over quotA. Which of the following commands will John use to accomplish his task?
Each correct answer represents a complete solution. Choose all that apply.
A. repquota
B. quotaon
C. warnquota
D. edquota
E. quotaoff
Answer: C,D

certification RedHat   RH133   RH133 examen   RH133

NO.12 You work as a Network Administrator for Net World International. The company has a Linux-based
network. You want to upgrade an RPM package and get the status during the upgrade. Which of the
following commands will you use to accomplish the task?
A. rpm -ivh
B. rpm -evh
C. rpm -qvh
D. rpm -Uvh
Answer: D

RedHat   RH133 examen   certification RH133   RH133

NO.13 Which of the following fsck commands will you use to check all filesystems listed in /etc/fstab?
A. fsck -P
B. fsck -f
C. fsck -A
D. fsck -y
Answer: C

certification RedHat   RH133   certification RH133

NO.14 You work as a Network Administrator for Secure Web Inc. The company has a Linux-based network.
The network has a mixed set of client operating systems. You want to format a new hard disk drive. The
drive will have only one partition. Both the Linux and Windows operating systems will access the partition.
Which of the following file systems will you use?
A. VFAT
B. XFS
C. REISER
D. EXT3
Answer: A

RedHat   RH133 examen   RH133 examen   RH133 examen

NO.15 Which of the following commands can be used to check the errors of the ext2 and ext3
filesystems?
Each correct answer represents a complete solution. Choose two.
A. fsck --ext2
B. fsck.ext3
C. fsck --ext3
D. e2fsck
Answer: B,D

certification RedHat   RH133   RH133   RH133 examen   RH133

NO.16 By default, which of the following commands configures the current run level?
A. chkconfig
B. pstree
C. service
D. ntsysv
Answer: D

RedHat   certification RH133   certification RH133   certification RH133   RH133 examen

NO.17 You want to verify the PGP signature of all headers and signatures associated with an RPM package.
Which of the following commands will you use to accomplish the task?
Each correct answer represents a complete solution. Choose all that apply.
A. rpm -e
B. rpm -K
C. rpm --checksig
D. rpm -V
Answer: B,C,D

RedHat   RH133   RH133 examen

NO.18 After enabling shadowed passwords in a Linux server, where does Linux keep the passwords?
A. /usr/shadow
B. /etc/passwd
C. /usr/passwd
D. /etc/shadow
Answer: D

RedHat examen   RH133   RH133   RH133   RH133

NO.19 Which of the following statements are true about kernel modules?
Each correct answer represents a complete solution. Choose all that apply.
A. Kernel modules do not support executable loaders.
B. The kernel module contains extra kernel codes that may be loaded after the loading of the basekernel.
Only a minimal resident kernel is loaded into memory at boot time.
C. Kernel modules do not support the device drivers, network drivers, and file system drivers.
D. Whenever a user requests a feature that is not present in the resident kernel, a kernel moduleis
dynamically loaded into memory.
Answer: B,D

RedHat examen   RH133   RH133   certification RH133

NO.20 When installing RHEL in the graphical interface, which of the following switches can be used to specify
a resolution?
A. lowers
B. vnc
C. resolution
D. skipddc
Answer: C

RedHat   RH133   RH133 examen   RH133   RH133

NO.21 John works as a Network Administrator for Perfect Solutions Inc. The company has a Linux-based
network. John is working as a root user on the Linux operating system. He wants to run the cc process at
runlevel three. If the order of execution of cc command is 43, which of the following commands will John
use to accomplish his task?
A. ln -s /etc/init.d/cc /etc/rc.d/rc3.d/K43cc
B. ln -s /etc/rc.d/init.d/cc /etc/rc.d/rc3.d/K43cc
C. ln -s /etc/rc.d/cc /etc/rc.d/rc3.d/s43cc
D. ln -s /etc/rc.d/init.d/cc /etc/rc.d/rc3.d/S43cc
Answer: D

RedHat examen   RH133   certification RH133

NO.22 You work as a Software Engineer for McNiel Inc. The company has a Linux-based network. The
company has 150 Engineers. The root user has configured quota limits for each user. You want to view
quota limits for your system. Which of the following commands will you use to accomplish this task?
A. repquota -a
B. quota -v
C. quotacheck
D. edquota
Answer: B

RedHat   certification RH133   RH133 examen   RH133   certification RH133   certification RH133

NO.23 You work as a Network Administrator for McNeil Inc. The company has a Linux-based network.
You are a root user on the Linux system. You have to create a user named Trinity and deny interactive
login. Which of the following should you use to accomplish the task?
Each correct answer represents a part of the solution. Choose all that apply.
A. vi /etc/passwd
B. vi /etc/shadow
C. useradd Trinity
D. passwd Trinity
E. Trinity:x:505:505::/home/Trinity:/sbin/nonlogin
Answer: A,B,C,D,E

RedHat   RH133   certification RH133   RH133

NO.24 You want only the root access in a Linux computer for maintenance purposes. Which of the following
runlevels will you use to boot the computer?
A. 2
B. 0
C. 1
D. 3
Answer: C

RedHat examen   RH133 examen   RH133

NO.25 You work as a System Administrator for McNeil Inc. The company has a Linux based network.
You are a root user on Red Hat operating system. You have upgraded the amount of RAM in your system
from 256 MB to 512 MB, but there is only 512 MB of swap space. Therefore, you want to add more swap
space to /dev/hdb2 hard drive to run the applications that require a large amount of memory. Which of the
following commands should you run to accomplish this task? Each correct answer represents a complete
solution. Choose all that apply.
A. mkswap /dev/hdb2
B. swapon /dev/hdb2
C. mount
D. parted
Answer: A,B,D

RedHat examen   certification RH133   RH133 examen   RH133   certification RH133

NO.26 You want to make Rick an owner of the files TRADE1.TXT and TRDREPORT.TXT. Which of the
following commands will you use to accomplish this?
A. chown rick TRADE1.TXT TRDREPORT.TXT
B. chgrp rick TRADE1.TXT + TRDREPORT.TXT
C. chown rick TRADE1.TXT + TRDREPORT.TXT
D. chgrp rick TRADE1.TXT TRDREPORT.TXT
Answer: A

RedHat   RH133   RH133   RH133 examen   RH133 examen   RH133

NO.27 You work as a Network Administrator for Rick Inc. The company has a Linux-based network. You are
configuring a Linux server. Which of the following bootloaders does not require to be rewritten after the
configuration of the kernel has been changed?
A. GRUB
B. BOOTP
C. LILO
D. ELILO
Answer: A

certification RedHat   RH133   RH133   RH133

NO.28 Which of the following commands is used to create a user account for a new user?
A. USERMOD
B. MOUNT
C. USERADD
D. CRUSER
Answer: C

RedHat   RH133 examen   certification RH133

NO.29 You want to temporarily change your primary group to another group of which you are a member. In
this process, a new shell will be created, and when you exit the shell, your previous group will be
reinstated. Which of the following commands will you use to accomplish this task?
A. chgrp
B. newgrp
C. chmod
D. chown
Answer: B

RedHat   RH133   RH133 examen   RH133   RH133 examen

NO.30 You work as a Linux Technician for Tech Perfect Inc. The company has a Linux-based network.
You have configured a database server in the network. Users complain that the server has
become remarkably slow. However, the previous day, the server was performing well. You know that
some of the processes may be the cause of the issue. You run the PS command on the server. In the
result set, which information will you look at that suggests the problematic process?
A. A high load average
B. A high process ID
C. A low load average
D. A low CPU time
E. A high CPU time
Answer: E

RedHat   RH133 examen   RH133 examen   certification RH133

Dans cette Industrie IT intense, le succès de test RedHat RH133 peut augmenter le salaire. Les gens d'obtenir le Certificat RedHat RH133 peuvent gagner beaucoup plus que les gens sans Certificat RedHat RH133. Le problème est comment on peut réussir le test plus facile?