Labour Day Sale - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: mxmas70

Home > Novell > CLA 12 > 050-733

050-733 SUSE Certified Linux Administrator 12 Question and Answers

Question # 4

Which does not belong to the Logical Volume Manager?

A.

Volume Group

B.

Logical Volume

C.

Volume Label

D.

Physical Volume

Full Access
Question # 5

In which file are global configurations for users who use bash as their login shell set?

A.

/etc/bashrc

B.

/etc/bash.cf

C.

/etc/bash.conf

D.

/etc/bash.bashrc

Full Access
Question # 6

What command disables the ssh service on a systemd system?

A.

systemctl disable sshd

B.

systemdctl disable sshd

C.

systemd-stop sshd

D.

systemctl sshd - -status=disabled

Full Access
Question # 7

Where can you set global shell environment variables for all users independent of their shell?

A.

/etc/profile

B.

/etc/profile.all

C.

/etc/bash.local

D.

/etc/bash.bashrc

Full Access
Question # 8

Which statement about the sudo command is correct?

A.

You can edit the sudo configuration file /etc/visudo with the sudoers command.

B.

You can edit the sudo configuration file /etc/sudo.conf directly with vi.

C.

You can edit the su configuration file /etc/su.conf with the sudo command.

D.

You can edit the sudo configuration file /etc/sudoers with the visudo command.

Full Access
Question # 9

Which command would you use to start the xeyes program in the background?

A.

xeyes > bg

B.

bg | xeyes

C.

xeyes -bg

D.

xeyes | bg

E.

xeyes &&

F.

xeyes &

Full Access
Question # 10

The /etc/sysconfig/network/ifcfg-XXX configuration file contains a BOOTPROTO option.

Which are possible values of BOOTPROTO?

A.

static or dhcp

B.

master or slave

C.

onboot, ifpluged, or manual

D.

ethernet, wireless, or manual

Full Access
Question # 11

You want to redirect the output of the ls command to the ls-output file which already exists. The output should

be appended to the file, it should not overwrite the existing content.

Which command accomplishes this task?

A.

ls >> ls-output

B.

ls ; ls-output

C.

ls && ls-output

D.

Is > ls-output

Full Access
Question # 12

Which command creates a RAID container?

A.

mdadm –C /dev/md/ddf –n 4 –l 5 –e ddf /dev/sd[b-e]

B.

mdadm –C /dev/md0 –e 1 –n 4 –l 5 –x 1 /dev/sd[b-e]

C.

mdadm –C /dev/md/ddf-r5 –n 3 –l 5 /dev/md/ddf

D.

mdadm –A /dev/md0

Full Access
Question # 13

Which statement is not true about symbolic links?

A.

Symbolic links can point to files on a different file system.

B.

Symbolic links can be created for directories.

C.

Symbolic links always have the same size as the original file.

Full Access
Question # 14

What systemd command switches to a single user system without network?

A.

systemctl isolate rescue.target

B.

systemctl isolate emergency.target

C.

systemctl switch single-user.target

D.

systemctl --runlevel=1

E.

systemctl set-default minimal.target

Full Access
Question # 15

You would like to run command1 and then command2, whether or not command1 completed successfully.

Which command accomplishes this task?

A.

command1 & command2

B.

command1 > command2

C.

command1 | command2

D.

command1 ; command2

Full Access