Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/EvokeMadness/Linux-terminal-cheat-sheets
- Owner: EvokeMadness
- License: mit
- Created: 2022-01-12T21:24:35.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-01T03:37:59.000Z (5 months ago)
- Last Synced: 2024-08-16T19:13:40.736Z (3 months ago)
- Topics: bash, cheat-sheet, cheat-sheets, cheatsheet, cheatsheets, command-line, guide, linux, noob, terminal, tutorial
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-open-source - github.com/EvokeMadness/linux-command-line-cheat-sheet
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
```