Linux eksamenspg Flashcards

1
Q

Explain how to login to a virtual machine on Azure, from a local command line.

A

Brug SSH til at oprette forbindelse til en Azure VM fra din lokale terminal:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Demonstrate how to navigate in a linux shell.. nævn alle dem du kan..

A

pwd → Vis den aktuelle mappe
ls → List filer i den aktuelle mappe
ls -a → List alle filer, inklusiv skjulte filer
ls -l → Vis detaljeret information om filer
cd <mappe> → Skift mappe
cd .. → Gå én mappe op
cd ~ → Gå til hjemmemappen
mkdir <mappenavn> → Opret en ny mappe
rmdir <mappenavn> → Slet en tom mappe
rm -r <mappenavn> → Slet en mappe med indhold
cp <fil> <destination> → Kopier en fil
mv <fil> <destination> → Flyt eller omdøb en fil
cat <fil> → Vis filens indhold
clear → Ryd terminalen</fil></destination></fil></destination></fil></mappenavn></mappenavn></mappenavn></mappe>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How to list all files (including hidden files)

A

Brug denne kommando til at vise alle filer, inklusiv skjulte filer (de starter med . i Linux):
ls -a

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How to list detailed information about files and folders including permissions

A

Brug ls -l for at vise detaljeret information:
ls -l
For både detaljer og skjulte filer:
ls -la

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How to create/open/add/edit a file (using nano or another editor)

A

Opret og rediger en fil med nano:
nano <filnavn></filnavn>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How to create, move, and delete files/directories

A

Opret en mappe: mkdir <mappenavn>
Opret en tom fil: touch <filnavn>
Flyt en fil: mv <fil> <destination>
Slet en fil: rm <filnavn>
Slet en mappe (med indhold): rm -r <mappenavn></mappenavn></filnavn></destination></fil></filnavn></mappenavn>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How to start/stop/restart a service (use docker as an example)

A

Start Docker:
sudo systemctl start docker
Stop Docker:
sudo systemctl stop docker
Genstart Docker:
sudo systemctl restart docker
Tjek status for Docker:
sudo systemctl status docker

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How to execute commands that requires elevated privileges

A

Brug sudo før kommandoen:
sudo <kommando></kommando>

Hvis du vil skifte til root-bruger:
sudo su

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How to execute files, and if necessary, provide files/directories with required
permissions

A

For at gøre en fil eksekverbar:
chmod +x <filnavn></filnavn>

For at eksekvere en fil:
./<filnavn></filnavn>

Hvis filen kræver root-adgang:
sudo ./<filnavn></filnavn>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Demonstrate how to install new packages in a terminal, for example, how did you install
docker

A

For Ubuntu/Debian-baserede systemer (APT):
sudo apt update
sudo apt install docker.io

How well did you know this?
1
Not at all
2
3
4
5
Perfectly