Linux for beginers: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 2: | Line 2: | ||
=Basic commands= | =Basic commands and concepts= | ||
==Terminal== | |||
tabs, promp meaning | |||
==Bash commands== | |||
man | |||
ls | |||
cd <directory name> | |||
cd .. | |||
cd | |||
rm | |||
mkdir | |||
rmdir | |||
alias | |||
sudo | |||
sudo apt install | |||
sudo synaptic | |||
==vim editor== | |||
alias vi vim | |||
==basic scripts== | |||
shebang | |||
#!/bin/bash | |||
input variables $1 $2 $3 | |||
if [ ] ; then | |||
elif | |||
else | |||
fi | |||
case | |||
for | |||
=Good practices= | =Good practices= | ||
Latest revision as of 16:20, 13 September 2021
go back to Main Page, Group Pages, Núria López and Group, VASP_beginners, Your_first_project,
Basic commands and concepts[edit]
Terminal[edit]
tabs, promp meaning
Bash commands[edit]
man ls cd <directory name> cd .. cd rm mkdir rmdir alias sudo sudo apt install sudo synaptic
vim editor[edit]
alias vi vim
basic scripts[edit]
shebang
#!/bin/bash
input variables $1 $2 $3
if [ ] ; then elif else fi
case
for
Good practices[edit]
Setting automatic regular backups[edit]
Mount ICIQ's folders from home[edit]
Only for linux-based system.
If your home folder is Windows-based[edit]
- Create an Ubuntu Virtual Machine.
Tips_to_work_remotely_from_Windows (by Diego)