title | author | date | lang |
---|---|---|---|
Recap of Linux 1 |
CSC Training |
2019-12 |
en |
- Open your machine in Windows
- Find the application VirtualBox and launch it
- In Main menu, find Import
- Find the OVA file under
\\dogmi\common
- Click on it
- IMPORTANT: check for new MAC-address
- Listing of files/directories?
- Changing a directory?
- Absolute/relative path?
- Where am I in the filesystem?
- Creating an empty new directory?
- Removing it?
- Renaming a file/directory?
- Moving a file/directory?
- Listing of files/directories?
$ ls -l
- Changing a directory?
$ cd /etc
- Absolute/relative path?
$ cd ../usr
$ cd /usr
- Where am I in the filesystem?
$ pwd
- Creating an empty new directory?
$ mkdir -p mydir/mysubdir
- Removing it?
$ rmdir mydir/mysubdir
- Renaming a file/directory?
$ mv mydir mynewdir
- Moving a file/directory?
$ touch myfile
$ mv myfile mynewdir
$ ls -l mynewdir/*