Posts in linux-basics
Logging in Ubuntu
by danaukes
Simple Netplan Config
by danaukes
Configs
Are usually found in /etc/netplan/
Usage
to test your config for 120 seconds
sudo netplan try
to ...
Networking
by danaukes
Networking
list all current ethernet adapters
ifconfig
to bring a specific network interface up or down
```bash ifconfig <network ...
Rsync Quickref
by danaukes
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 danaukes
Make your folder
mkdir ~/happy
chmod 0700 ~/happy
Set up samba
```bash sudo apt install -y samba sudo nano ...
Shell Script Examples
by danaukes
Sourcing bash scripts
source my_script
and
. my_script
are equivalent. This is like copying and pasting each ...
Software Management
by danaukes
Introduction
We hope to answer
- what are repositories
- what is a package
- how to install ...
Run scripts remotely over ssh with ```tmux```
by danaukes
Overview
tmux is tool that lets you run multiple sub-sessions from one session. It's good ...