Linux for beginers: Difference between revisions

From Wiki
Jump to navigation Jump to search
Rgarcia (talk | contribs)
m New page: Tips_to_work_remotely_from_Windows
 
Rgarcia (talk | contribs)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
Tips_to_work_remotely_from_Windows
go back to [[Main Page]], [[Group Pages]], [[Núria López and Group]], [[VASP_beginners]], [[Your_first_project]],
 
 
=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=
==Setting automatic regular backups==
 
==Mount ICIQ's folders from home==
Only for linux-based system.
 
 
==If your home folder is Windows-based==
* Create an Ubuntu Virtual Machine.
[[Tips_to_work_remotely_from_Windows]] (''by Diego'')

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)