Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/EvokeMadness/Linux-terminal-cheat-sheets

A cheat sheet for the Linux terminal.
https://github.com/EvokeMadness/Linux-terminal-cheat-sheets

bash cheat-sheet cheat-sheets cheatsheet cheatsheets command-line guide linux noob terminal tutorial

Last synced: 9 days ago
JSON representation

A cheat sheet for the Linux terminal.

Awesome Lists containing this project

README

        

# Linux-terminal-cheat-sheets
A cheat sheet of Linux terminal commands for Debian and Ubuntu users. These commands are either frequently used or essential for beginners.

## Commands

**Create a user account** with username 'Allie'
```
adduser allie
```

**Change a user's password**
```
passwd allie
```

**Print Working Directory**
```
pwd
```

**Change Directory** to 'Documents'
```
cd Documents/
```

**Move up one directory**
```
cd ..
```

**Change to specific directory**, /home/allie/
```
cd /home/allie/
```

**Change to user's "home" directory**
```
cd ~
```

**Make an application or program executable**, make '[FreeCAD](https://www.freecadweb.org/)' [AppImage](https://appimage.org/) file executable.
```
sudo chmod +x FreeCAD.AppImage
```