101-500問題集246問でLPIC Level1を確実実践 [Q27-Q50]

Share

101-500問題集246問でLPIC Level1を確実実践

リアル最新101-500試験問題101-500問題集


LPIC-1試験101、パート1の2、バージョン5.0は、90分以内に完了する必要がある60の複数選択と空間の質問で構成されています。この試験は、英語、ドイツ語、イタリア語、ポルトガル語、スペイン語、中国語で入手できます。試験の合格スコアは800のうち500であり、これは62.5%のスコアに相当します。


Lpi 101-500(LPIC-1 Exam 101、Part 1 of 2、version 5.0)認定試験は、ITプロフェッショナルがLinux管理のスキルと知識を検証するための優れた方法です。この認定試験は、グローバルに認められており、プロフェッショナルが競争力のある求人市場で差別化するのに役立ちます。

 

質問 # 27
Which of the following are valid stream redirection operators within Bash? (Choose THREE correct answers.)

  • A. %>
  • B. >
  • C. >>>
  • D. <<<
  • E. <

正解:B、D、E


質問 # 28
Which of the following commands generates a list of user names from /etc/passwdalong with their login shell?

  • A. chop -c 1,7 /etc/passwd
  • B. column -s : 1,7 /etc/passwd
  • C. colrm 1,7 /etc/passwd
  • D. sort -t: -k1,7 /etc/passwd
  • E. cut -d: -f1,7 /etc/passwd

正解:E


質問 # 29
Which of the following partition types is used for Linux swap spaces when partitioning hard disk drives?

  • A. 8e
  • B. 0
  • C. 1
  • D. 2
  • E. fd

正解:B


質問 # 30
Which of the following commands is used to update the list of available packages when using dpkg based package management?

  • A. apt-cache upgrade
  • B. apt-get upgrade
  • C. apt-get refresh
  • D. apt-get update
  • E. apt-cache update

正解:D


質問 # 31
Which of the following files, located in the user home directory, is used to store the Bash history?

  • A. .history_bash
  • B. .bash_histfile
  • C. .bashrc_history
  • D. .bash_history
  • E. .history

正解:D


質問 # 32
What is the process ID number of the initprocess on a System V init based system?

  • A. 0
  • B. 1
  • C. It is different with each reboot
  • D. 2
  • E. It is set to the current run level

正解:D


質問 # 33
Which command displays the current disk space usage for all mounted file systems?
(Specify ONLY the command without any path or parameters.)

正解:

解説:
du


質問 # 34
Which type of filesystem is created by mkfs when it is executed with the block device name only and without any additional parameters?

  • A. ext4
  • B. ext2
  • C. VFAT
  • D. ext3
  • E. XFS

正解:B


質問 # 35
To prevent users from being able to fill up the / partition, the ____________ directory should be on a separate partition if possible because it is world writeable.

正解:

解説:
/tmp, tmp


質問 # 36
Which of the following describes the correct order in which the components of the system boot process are started?

  • A. Bootloader, BIOS, kernel, init system
  • B. BIOS, bootloader, init system, kernel
  • C. BIOS, bootloader,kernel, init system
  • D. Bootloader, BIOS, init system, kernel
  • E. BIOS, kernel, bootloader, init system

正解:C


質問 # 37
What command changes the nice level of a running process?
(Specify ONLY the command without any path or parameters)

正解:

解説:
renice


質問 # 38
You are trying to make a hard link to an ordinary file but ln returns an error. Which of the following could cause this?

  • A. The source file is hidden.
  • B. The source file is a shell script.
  • C. The source and the target are on different filesystems.
  • D. The source file is read-only.
  • E. You do not own the source file.

正解:C


質問 # 39
Which of the following file permissions belong to a symbolic link?

  • A. +rwxrwxrwx
  • B. srwxrwxrwx
  • C. -rwxrwxrwx
  • D. lrwxrwxrwx

正解:D


質問 # 40
When using regular expressions, which of the following characters match the beginning of a line?

  • A. ?
  • B. $
  • C. +
  • D. *
  • E. ^

正解:E


質問 # 41
What is the first program the Linux kernel starts at boot time when using System V init?
/lib/init.so

  • A. /etc/rc.d/rcinit
  • B. /boot/init
  • C. /proc/sys/kernel/init
  • D.
  • E. /sbin/init

正解:B


質問 # 42
The installation of a local Debian package failed due to unsatisfied dependencies. Which of the following commands installs missing dependencies and completes the interrupted package installation?
dpkg --fix --all

  • A. apt-get install -f
  • B. apt-get autoinstall
  • C. apt-get all
  • D.
  • E. dpkg-reconfigure --all

正解:D


質問 # 43
Which wildcards will match the following filenames? (Choose two.)

  • A. tty?[0-5]
  • B. ttyS[1-5]
  • C. ttyS1
  • D. tty*2
  • E. tty[A-Z][012]
  • F. tty[Ss][02]
  • G. ttyS2
  • H. ttyS0

正解:B、C


質問 # 44
Which of the following partition types is used for Linux swap spaces when partitioning hard disk drives?

  • A. 0
  • B. 1
  • C. 8e
  • D. 2
  • E. fd

正解:B


質問 # 45
What information can the lspcicommand display about the system hardware? (Choose three.)

  • A. Device IRQ settings
  • B. Ethernet MAC address
  • C. PCI bus speed
  • D. System battery type
  • E. Device vendor identification

正解:A、C、E


質問 # 46
Which of the following commands instructs SysVinit to reload its configuration file?

  • A. initreload
  • B. reinit
  • C. init reinit
  • D. telinit 7
  • E. telinit q

正解:E


質問 # 47
Which of the following commands displays the output of the foo command on the screen and also writes it to a file called /tmp/foodata?

  • A. foo | less /tmp/foodata
  • B. foo > /tmp/foodata
  • C. foo > stdout >> /tmp/foodata
  • D. foo | cp /tmp/foodata
  • E. foo | tee /tmp/foodata

正解:E


質問 # 48
Which of the following commands set the sticky bit for the directory /tmp? (Choose TWO correct answers.)

  • A. chmod 4775 /tmp
  • B. chmod +s /tmp
  • C. chmod 1775 /tmp
  • D. chmod 2775 /tmp
  • E. chmod +t /tmp

正解:C、E


質問 # 49
Which file from the /proc file system contains a list of all currently mounted devices? (Specify ONLY the command without any path or parameters.)

正解:

解説:
mounts


質問 # 50
......


Lpi 101-500の認定を取得するためには、60問の多肢選択問題からなる試験に合格する必要があります。試験時間は90分で、システムアーキテクチャ、Linuxのインストールとパッケージ管理、GNUやUnixのコマンド、Linuxファイルシステムなど、広範囲なトピックをカバーしています。

 

101-500別格な問題集で最上級の成績にさせる101-500問題:https://www.jpntest.com/shiken/101-500-mondaishu

弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

オンラインサポート時間:( UTC+9 ) 9:00-24:00
月曜日から土曜日まで

サポート:現在連絡