A Linux engineer needs to download a ZIP file and wants to set the nice value to -10 for this new process. Which of the following commands will help to accomplish the task?
A.
$ nice -v -10 wget https://foo.com/installation.zip
B.
$ renice -v -10 wget https://foo.com/installation.zip
C.
$ renice -10 wget https://foo.com/installation.zip
D.
$ nice -10 wget https://foo.com/installation.zip
D. $ nice -10 wget https://foo.com/installation.zip
Explanation:
nice is a command in Linux used to run a command with a modified scheduling priority.
-10 is an option used with the nice command to set the nice value to -10, which increases the priority of the command.
wget is a command in Linux used to download files from the internet.
https://foo.com/installation.zip is the URL of the ZIP file to be downloaded.
So, the command nice -10 wget https://foo.com/installation.zip will download the ZIP file and set the nice value of the wget process to -10, which will increase its priority.
upvoted 3 times
...
This section is not available anymore. Please use the main Exam Page.XK0-005 Exam Questions
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Damon54
8 months, 3 weeks agolinux_admin
1 year, 3 months ago