11 exercises linux: solutions
1. Who will show on the virtual consoles you are logged.
ls > /dev/tty3
This sends the output of ls to tty3
combos with the keys Ctrl + Alt + F(1 to 6) you can switch to another terminal to go back No graphics omg use Alt + F7
2. apropos time → commando date
date : toont tijd…
date -s hh:mm:ss om de tijd in te stellen
3.
- /etc/*
alle bestanden in de map /etc - /etc/*.*
alle bestanden in de map etc waarin een punt voorkomt voorafgegaan en gevolgd ddor een willekeurig aantal tekens - /etc/*a.*
alle bestanden in de map etc waarin een punt voorkomt voorafgegaan door een a voorafgeaan door een willekeurig willekeurig aantal tekens(. ook gevolgd door….)
4.
ls /etc/?[aoi]*
5.
find / | grep -i host
6.
find / -user root -name xf*
7. Vanuit de homedirectory!
mkdir temp
cp /etc/[abc]* ~/temp
mkdir ~/temp/rommel
mv ~/temp/* ~/temp/rommel
mv: cannot move `/home/djtmp/rommel’ to a subdirectory of itself, `/home/jos/temp/rommel/rommel’
rm -r temp
8.
cal 3 2099 → donderdag
9.
vi /etc/profile (OF vi ~/.bashrc )
de volgende lijnen toevoegen :
PS1=”Dit is de computer van \u\n\h> “
alias cls=’clear’
alias dir=’ls’
10.
mkdir ~/links
ln -s ~/* ~/links/
11.
cut -d: -f1 | sort