Compare commits

..

8 Commits

Author SHA1 Message Date
waldek 2d9de35ada cleans some markdown syntax and adds a general readme file 2021-04-12 15:43:57 +02:00
waldek 59cf62432b Merge branch 'master' of https://gitea.86thumbs.net/sarahrm95/LinuxDocumentation
Pull in latest changes from Sara's git
2021-04-12 14:00:02 +02:00
sarah 14c83513b1 refresh 2021-04-09 16:03:10 +02:00
sarah c4b6971392 new 2021-04-09 14:25:22 +02:00
sarah dac40765f1 plus de site 2021-04-09 11:13:27 +02:00
sarah d311571087 reponse bandit 2021-04-09 11:12:51 +02:00
sarah dc813f79c2 Reponse 2021-04-09 11:12:12 +02:00
sarah c149957986 site + 2021-04-09 09:01:47 +02:00
4 changed files with 58 additions and 16 deletions

View File

@ -1,11 +1,15 @@
openclassroom pour entrainement et video # openclassroom pour entrainement et video
* Site internet pour ligne de commande [ici](https://ryanstutorials.net/)
Site internet pour ligne de commande [ici](https://ryanstutorials.net/) ## Ligne de commande
**Ligne de commande** Creation ficher
```bash
touch "nom du file"
```
Creation ficher touch "nom du file"
\ : maniere de creer le nom d'un dossier sans qu'il en face plusieurs a cause des espaces \ : maniere de creer le nom d'un dossier sans qu'il en face plusieurs a cause des espaces
Editeur de text 'nano' utilé pour la création de text Editeur de text 'nano' utilé pour la création de text
@ -14,7 +18,13 @@ Editeur de text 'nano' utilé pour la création de text
commande file : determiner le type de ficher sait commande file : determiner le type de ficher sait
Chercher le chemin d'un file : which "ficher en question" Chercher le chemin d'un file : which "ficher en question"
pour renomer ficher : mv "ficher1 " ficher2" pour renomer ficher:
```bash
mv "ficher1 " ficher2"
```
### wildcards
* - represents zero or more characters * - represents zero or more characters
? - represents a single character ? - represents a single character
@ -26,10 +36,17 @@ touch Picture_ {00..99}.jpg
[Pp] pour avoir une liste avec P et p [Pp] pour avoir une liste avec P et p
**Ajouter user** ### Ajouter user
As adding a user to the system is quite invasive, you need to have sufficient privilaged to do so.
This can be done eighter as *root* or as by prepending *sudo* to the command.
Sudo will execute the command as root.
All users you create will have a their *home* at /home/$USER.
```
sudo adduser marie sudo adduser marie
ls /home : voir les users ls /home
```
changer d'utilisateur via ligne de commande :^su 'nom' changer d'utilisateur via ligne de commande :^su 'nom'
question : root? question : root?
@ -53,8 +70,6 @@ sarahbis : sudo chown steve:steve mysecretfile pour donner le ownership a une au
Telecharger site via console : wget "site" Telecharger site via console : wget "site"
Alias pour creer un nouveau raccourci Alias pour creer un nouveau raccourci
Creer une nouvelle variable : nano .bashrc, #Own command Creer une nouvelle variable : nano .bashrc, #Own command
exemple : alias ll="ls-l" exemple : alias ll="ls-l"

View File

@ -1,7 +1,16 @@
Question? # Questions
regex? ## Regex?
Wildcards?
Var log msg?
Regex is short for regular expression.
[Wikipedia](https://en.wikipedia.org/wiki/Regular_expression) explains it better than me.
## Wildcards?
Wildcards are similar to regex but a lot simpler.
A quick [tutorial](https://linuxhint.com/bash_wildcard_tutorial/) explains it better than me.
## Var log msg?
The debian system administrator gives a good [overview](https://debian-handbook.info/browse/stable/sect.filesystem-hierarchy.html) of the directory structure of the linux OS.

16
Reponse bandit.md Normal file
View File

@ -0,0 +1,16 @@
Reponse bandit
bandit 4 : cd inhere | file -- * | cat < -file07
bandit 5 : du -ab | grep 1033 | cat.maybehere07/.file02
bandit 6 :find /. -type f -group bandit6 -user bandit -size 33c | cat / ./var/lib/dpkg/info/bandit7.password
bandit 7 : cat Data.text | grep millionth cvX2JJa4CFALtqS87jk27qwqGhBM9plV
bandit 8 : sort data.txt | uniq -u code
UsvVyFSfZZWbi6wgC7dAFyFuR6jQQUhR
bandit 9 : strings data.txt | grep =
bandit 10 : IFukwKGsFW8MOq3IRFqrxE1hxTNEbUPR

View File

@ -1,3 +1,5 @@
Sites utiles # Sites utiles
https://ryanstutorials.net/linuxtutorial/filters.php [Ryan's tutorials](https://ryanstutorials.net/linuxtutorial/filters.php)
[bandit](https://overthewire.org/wargames/bandit/bandit4.html) ssh wargame
[command line challenge](https://cmdchallenge.com/)