Linux Questions 1 Flashcards

1
Q

How do you copy all .txt files from /home/user/docs to /backup while preserving file attributes?

A

cp -p /home/user/docs/*.txt /backup/

cp -p preserves timestamps, ownership, and permissions. *.txt selects all text files in /home/user/docs.

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

How do you find all files modified in the last 7 days within /var/log?

A

find /var/log -type f -mtime -7

-type f ensures only files (not directories) are found. -mtime -7 filters files modified in the last 7 days.

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

How can you recursively change ownership of all files inside /data to user:group?

A

chown -R user:group /data

-R makes the command recursive, changing ownership of all files and subdirectories.

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

How do you kill a process by name instead of PID (e.g., firefox)?

A

pkill firefox

pkill searches for the process by name and terminates it.

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

How do you find and delete all .log files larger than 100MB inside /var/log?

A

find /var/log -name “*.log” -type f -size +100M -exec rm -f {} \;

-size +100M finds files larger than 100MB. -exec rm -f {} \; deletes each matching file.

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

How do you display a real-time list of running processes sorted by CPU usage?

A

top

top provides a real-time view. An alternative is ps aux --sort=-%cpu | head -10 which lists the top 10 CPU-consuming processes.

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

How do you extract only the first 3 columns from data.csv and save it as new_data.csv?

A

cut -d’,’ -f1-3 data.csv > new_data.csv

-d',' sets , as the delimiter. -f1-3 selects the first three fields.

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

How do you archive all files in /project modified in the last 3 days into backup.tar?

A

find /project -type f -mtime -3 | tar -cvf backup.tar -T -

find /project -type f -mtime -3 finds files modified in the last 3 days. tar -cvf backup.tar -T - archives those files.

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

How do you display the first 20 lines of the largest file in /var/log?

A

ls -S /var/log/* | head -1 | xargs head -20

ls -S lists files sorted by size (largest first). head -1 selects the largest file. xargs head -20 extracts the first 20 lines.

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

How do you monitor a growing log file in real-time while highlighting “ERROR” messages?

A

tail -f /var/log/syslog | grep –color=auto “ERROR”

tail -f follows live updates. grep --color=auto "ERROR" highlights matches in color.

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