Posts with "linux" Tag
Using the ```find``` command in bash
by Dan Aukes
Using the find command in bash
Find files with find
```bash find [-flags] path -expression find ~/ ...
Linux / Bash Cheatsheet
by Dan Aukes
Logging in Ubuntu
by Dan Aukes
Networking
by Dan Aukes
Networking
list all current ethernet adapters
ifconfig
to bring a specific network interface up or down
```bash ifconfig <network ...
Rsync Quickref
by Dan Aukes
quick recipes
Local
```bash rsync -haviP --inplace --delete-before --no-compress /storage/nas/photos /media/danaukes/extreme-ssd/ rsync -haviP --inplace --delete-before --no-compress ...
Setup Samba from Bash
by Dan Aukes
Make your folder
mkdir ~/happy
chmod 0700 ~/happy
Set up samba
```bash sudo apt install -y samba sudo nano ...
Shell Script Examples
by Dan Aukes
Sourcing bash scripts
source my_script
and
. my_script
are equivalent. This is like copying and pasting each ...