記憶度
10問
27問
0問
0問
0問
アカウント登録して、解答結果を保存しよう
問題一覧
1
The sum of all programs which are required to operate a computer. It is also used to control and monitor application programs.
Operating System
2
Main component of a Linux OS. It is used to form another operating system.
Linux Kernel
3
A collection of software on top of a Linux kernel.
Linux Distribution (Distro)
4
Has been originally written in the programming language C, and it is mainly used for scientific-technical applications on mainframes and workstations but has also become perfectly suited for application in networks.
UNIX
5
Interfaces to the operating system, the kernel of the host
Shells
6
A graphical representation in which the users can interact with software or devices through graphical icons.
GUI (Graphical User Interface)
7
A console or text-based representation in which the user types the commands to operate the software or devices.
CLI (Command-Line Interface)
8
was once the most popular Linux desktop environment and was used by default on Ubuntu, Fedora, Debian, and most other big Linux distributions.
GNOME
9
has always been more complex than GNOME, packing in many more configuration options and features.
KDE
10
Is a more lightweight desktop environment, very similar to GNOME.
xfce
11
Was developed for Linux Mint in which it is based on GNOME. It uses up-to-date libraries and other software — but it takes that software and tries to create a more traditional-looking desktop with it.
Cinnamon
12
displays user manual of any command on the terminal
man
13
determines the type of a file.
file
14
displays short descriptions of program
whatis
15
locates files and pages of a command
whereis
16
displays the current user
whoami
17
displays the list of files and directory
ls
18
displays the contents of the working directory recursively showing sub-directories and files, and a summary of the total number of sub-directories and files
tree
19
displays parent working (Parent directory
pwd
20
changes the current directory - cd .. - previous folder - cd / - root folder - cd ~ - shortcut
cd
21
creates director
mkdir
22
removes directory
rmdir
23
copies a file to a specified location
cp
24
moves a file to a specified location
mv
25
removes a file.
rm
26
It is a file on the system that contains data, text, or program instructions.
Ordinary Files
27
They store both special and ordinary files. For users familiar with Windows or Mac OS, Unix directories are equivalent to folders.
Directories
28
Some files provide access to hardware such as hard drives, CD-ROM drives, modems, and Ethernet adapters.
Special Files
29
refersto the root directory. The root directory is the one from which all other directories branch off from.
/
30
is the directory that contains binaries, that is, some of the applications and programs you can run.
/bin
31
directory contains files required for starting your system.
/boot
32
contains device files. Many of these are generated at boot time or even on the fly.
/dev
33
the dumping ground for system files administrators were not sure where else to put.
/etc.
34
where you will find your users’ personal directories.
/home
35
where libraries live. Libraries are files containing code that your applications can use.
/lib
36
the dumping ground for system files administrators were not sure where else to put.
/etc.
37
directory is often where the software you compile.
/opt
38
are virtual directory in which it contains information about your computers, such as information about your CPU and the kernel your Linux system is running.
/proc and /dev
39
similar to /bin, but it contains applications that only the superuser will need.
/sbin
40
directory was where users’ home directories were originally kept back in the early days of UNIX.
/usr
41
contains temporary files, usually placed there by applications that you are running.
/tmp
42
was originally given its name because its contents were deemed variable in which it contains files to which the system writes data during the course of its operation.
/var
43
It is a series of related instructions that tells the computer what task(s) to do and how to perform them.
Software
44
a set of programs that coordinates all the activities among computer hardware devices.
Operating system
45
allows a user to perform maintenance- type tasks usually related to managing a computer, its devices, or its programs.
Utility Program
46
consists of programs designed to makes users more productive and/or assist them with personal tasks.
Application Software
47
Is the software essential? Will it help you accomplish an important task?
Necessity
48
What resources does the software require? It includes hard disk storage space, main memory capacity, and specific platform.
Requirements
49
Does the software come with warranty/support? Software might have issues upon installation and usage and such would require fixes and updates.
Support
50
a program used to install, update, upgrade, or remove software
Package Manager
51
can install software from an RPM file
Rpm (Red Hat Package Manager)
52
a front-end tool for rpm so that a user has a minimal amount to issue when trying to install RPM files.
Yum (Yellowdog Updater Modifier)
53
A command-line packager tool for Debian Linux.
Apt (Advance Packaging Tool)
54
Installs the package
-i
55
Upgrades the packages
-U
56
Freshens the package
-F
57
Erases the package
-e
58
What is the syntax for installing an rpm file
rpm [option] file(s)
59
yum instruction has 3 parts
Command, Package name, options
60
Checks to see if there are any upgrade available for installed software
-checkupdate
61
Cleans up the yum cache directory
-clean
62
Attempts to downgrade a package from the current version to previous versions (if available)
-downgrade
63
Applied on a list of packages
groupinstall grouplist groupremove groupupdate
64
Provides description and summary of the available package
-info
65
Lists any package that provides a given feature or file
-provides
66
Uninstalls and then installs the specified package again
-reinstall
67
Lists packages that fulfill a given dependency
-resolvedep
68
Searches all packages’ summaries for the given string for matches
-search
69
Updates an installed package to the specified version
-update-to
70
Lists available repositories
-repolist
71
Which yum command is correct
yum install emacs
72
software libraries required to complete the installation of a given piece of software.
Package Dependencies