Font size
WorksheetsLinux Basic
Total questions: 20
Worksheet time: 9mins
Apakah kalian sudah pernah menggunakan Linux sebelum mengikuti kelas ini?
Sudah
Belum
Sudah berapa lama kalian menggunakan Linux?
Lebih dari 1 Tahun
Kurang dari 1 Tahun
Setelah ikut kelas Linux+
Seberapa tertarik untuk menggunakan sistem operasi linux?
Masih coba-coba
Kurang menarik
Cukup menarik
Keren
Jika kalian ingin beralih ke sistem operasi linux, kira-kira akan digunakan sebagai apa?
OS PC/Laptop
Lab
Server
IoT
What is command used to print the directory list with detail information?
ls -a
ls -l
ls
ls -v
command is used to remove the directory
rm
remove
del
rmdir
How to force remove file and directory at the same time
rm -r
rm -rf
rmdir -r
rm -f
Which character can be used to separate two commands on the same line?
:
;
,
\
Which of the following command can give documentation of a command?
man
doc
info
how
A command-line command in Linux that allows to search files for lines containing a match to a given pattern is called:
grep
find
cat
touch
A Linux command displaying an absolute path to (i.e. full filename of) the current working directory is called:
pwd
ls
dir
echo
What is the name of a Linux command used for renaming files and directories?
move
mv
cut
dir
Which of the answers listed below refers to a Unix command for copying files and directories?
copy
send
cp
mv
A Linux command that allows for modifying security privileges in order to be able to execute a single command that requires root access permissions is called:
su
sudo
sudoers
superuser
I want to create a user called "me" and it has a home directory on /user/me/ and has shell using /bin/bash. So which command that should I use?
adduser me
useradd me /bin/bash
useradd -b /user/me -s /bin/bash me
useradd -d /user/me -s /bin/bash me
What is the name of a Linux command-line utility used for reporting statistics on running processes?
ps
ls
netstat
nbstat
A Linux command-line command allowing a user to change his/her own password is known as:
chgpwd
pwd
passwd
pass
How to give wirte access to file or folder for all users?
chmod +rx
chmod +rw
chmod +w
chmod -w
Which following text editor can't use in Linux distribution?
nano
vi
vim
notepad
I want to add my user called "James" to group "Finance". What command should I do?
useradd james -g finance
usermod -aG finance james
usermod -aG james finance
usermod -l james finance
