Linux: Difference between revisions

From David's Wiki
Line 137: Line 137:


Note that the Remmina which ships with Ubuntu 18.04 is outdated and buggy.
Note that the Remmina which ships with Ubuntu 18.04 is outdated and buggy.
You can upgrade it by adding the Remmina PPA or installing the snap version.
You can upgrade it by adding the Remmina PPA.
See [https://remmina.org/how-to-install-remmina/ https://remmina.org/how-to-install-remmina/] for details.
See [https://remmina.org/how-to-install-remmina/ https://remmina.org/how-to-install-remmina/] for details.
<pre>
<pre>

Revision as of 00:58, 6 July 2020

A collection of notes on using Linux systems. Notes here are for Ubuntu but should work on similar debian derivative distros.


Basic Terminal Commands

Disk Space

  • du Disk Usage
    • du -sh Show size of current directory
    • du -h --max-depth=1
    • Flags:
      • -h human readable (adds M or G)
  • df Disk Filesystems
    • Shows usage, total space available, and mount position
    • df -Ph . See free space in current directory

If looking to free up space, I recommend installing ncdu.

Monitoring

  • htop - basic terminal system monitor, enhanced version of top
  • watch -n 0.5 <program> - repeatedly call <program> every 0.5 seconds

Standard Streams

  • | will pipe stdout to the stdin of another process
  • > will redirect stdout to a file
  • 2>&1 will redirect stderr (2) to stdout (1)
  • tee will redirect stdout to multiple files and show it in the terminal

diff

diff examples

Important flags
  • --strip-trailing-cr Ignores \r

Package Management

apt

# List all installed packages
apt list --installed

# Search repos for package
apt search libdpkg-dev

Repositories

Repos are stored in

  • /etc/apt/sources.list
  • A file in /etc/apt/sources.list.d/

dpkg

# List everything
sudo dpkg -l

# List things with apache in the name
sudo dpkg -l | grep apache

SSH

SSH Keys

Generate an ssh-key for every client

ssh-keygen -t ed25519 -a 100 [-C "comment your client name"] [-f output_path]

Some older software such as Solid file explorer require RSA keys in PEM key format

ssh-keygen -t rsa -b 4096 -a 100 -m PEM [-C "comment your client name"] [-f output_path]

You can also convert existing keys to PEM format

ssh-keygen -p -m PEM [-C "comment your client name"] [-f output_path]

If you want to change the comment on your key

ssh-keygen -c -C "New comment" -f path_to_key

Manage ssh keys

# On the client
ssh-copy-id <host>
# On the server
vim ~/.ssh/authorized_keys

Notes:

  • According to this you should avoid using ECDSA and DSA keys.

Disable password authentication

  • Edit /etc/ssh/sshd_config
  • Set PasswordAuthentication to no
  • Set ChallengeResponseAuthentication to no

Port Forwarding

Also known as: SSH Tunneling, SSH Proxy, SSH Reverse Proxy

If you need to access a port on the remote computer, you can use the -L option to forward ports from the remote to the local machine.

ssh -L <localport>:localhost:<remoteport> <remoteurl>
# E.g. ssh -L 8080:localhost:80 [email protected]

You can also do the reverse, giving the remote access to a local port using -R

ssh -R <localport>:host:<remoteport> <remoteurl>
# E.g. ssh -R 8080:localhost:80 [email protected]
Notes
  • You can also run this without creating a shell using -N. This will block your shell. See SE Answer.
  • Adding -f pushes ssh to the background.
    • This will implicitly add -n which redirects stdin from /dev/null.
    • If you want to be able to foreground this again, the use & or Ctrl+z instead.

alias

You can create aliases in your .ssh/config

Host my_alias
  User my_username
  Hostname my_server@my_domain.com
  Port 52

VNC

x11vnc

Reference

I recommend not exposing VNC. Set it to localhost only and use ssh port forwarding.

Remmina

If using a wired connection, you can save a preset to localhost:5901 or similar.

Note that the Remmina which ships with Ubuntu 18.04 is outdated and buggy. You can upgrade it by adding the Remmina PPA. See https://remmina.org/how-to-install-remmina/ for details.

sudo apt-add-repository ppa:remmina-ppa-team/remmina-next
sudo apt update
sudo apt install remmina remmina-plugin-rdp remmina-plugin-secret

Nvidia

Driver Installation

  • Run ubuntu-drivers list to get a list of drivers
  • Install the latest driver
    • E.g. sudo apt install nvidia-driver-440
  • If you have secure boot enabled, you will be asked for a password during installation
    • This is because the driver is a DKMS module.
    • After installation, reboot your computer and select "Enroll MOK" and enter that password in.
    • Note Failure to do this will result in the driver not working
  • Validate your installation by running nvidia-smi

Cuda Installation

Download cuda from the nvidia website.

Switching between Nvidia and Intel

Reference

Make sure the Nvidia graphics drivers are installed. Then you can select between Nvidia and Intel GPUs using the Nvidia X Server Settings application nvidia-settings. Alternatively, you can use the following commands in the terminal.
To switch to the Nvidia GPU:

sudo prime-select nvidia

To switch back to the Intel GPU:

sudo prime-select intel

prime-select query will print either nvidia or intel to stdout.

Environment Variables

Ubuntu Help Reference

Tmux

Tmux cheat sheet

Tmux, or Terminal Multiplexer is an alternative to screen.
Use it to keep terminals open and tasks running after you disconnect your SSH connection.
Getting Started:

# Make a new session
tmux
# Make a new named session
tmux new -s my_session
# Rename a session
# Keybinding: Ctrl + b, $
tmux rename-session [-t current-name] [new-name]
# Detach from a session
# Keybinding: Ctrl + b, d
tmux detach
# List windows
tmux ls
# Attach to a session
tmux attach -t my_session

File Manager

The default file manager in Ubuntu is Nautilus

Add to context menu

Link

19.04+
sudo add-apt-repository universe
sudo apt-get install filemanager-actions
sudo apt update
18.04

To add Atom, create two entries:

Open file in Atom and Open folder in Atom
Path: atom
Parameters: %f
Working directory: %d

You may also want:

Copy folder path and Copy file path

Etcher

Github
Installing etcher

echo "deb https://deb.etcher.io stable etcher" | sudo tee /etc/apt/sources.list.d/balena-etcher.list
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 379CE192D401AB61
sudo apt update
sudo apt install balena-etcher-electron

Logs

Logs are stored under /var/log. These can end up taking up a lot of space.
You can delete logs in the journal folder Reference

Default gcc/g++ version

See https://askubuntu.com/questions/26498/how-to-choose-the-default-gcc-and-g-version.

# Install
sudo update-alternatives --remove-all gcc 
sudo update-alternatives --remove-all g++
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 10
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 20
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 10
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 20
sudo update-alternatives --install /usr/bin/cc cc /usr/bin/gcc 30
sudo update-alternatives --set cc /usr/bin/gcc
sudo update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++ 30
sudo update-alternatives --set c++ /usr/bin/g++

# Select
sudo update-alternatives --config gcc
sudo update-alternatives --config g++

Power Management

tlp

Website
Battery power management

Virtual Machines (VM)

Guest VMs

Using Ubuntu as a guest:

  • Install open-vm-tools-desktop

KVM

Docker

Services and Scheduling

crontab

systemd service

See [1] manual

A basic systemd service file
# Contents of /etc/systemd/system/myservice.service
[Unit]
Description=My Service
After=network.target

[Service]
Type=simple
Restart=always
WorkingDirectory=/usr/local/bin
ExecStart=/usr/local/bin/myservice

[Install]
WantedBy=multi-user.target

Enable with sudo systemctl enable myservice


Usage
  • sudo systemctl enable <my_service>
  • sudo systemctl status <my_service>
  • sudo systemctl start <my_service>
  • sudo systemctl stop <my_service>
  • sudo systemctl restart <my_service>
  • sudo systemctl disable <my_service>
Notes
  • Type should be forking if your service runs and then ends
  • See service log with sudo journalctl myservice

File Management

rsync

Documentation

Use this to sync folders between directories of across networks

Common Flags
  • -a, --archive archive mode; equals -rlptgoD
  • --info=progress2 show progress

See ArchWiki: rsync to learn how to use rclone for incremental backups (a la time machine).

rclone

Similar to rsync but for cloud services such as Dropbox and Google Drive.
I recommend installing from their website to get the latest version.

scp

Usage

scp [source_machine]:[source_file] [target_machine]:[target_file]
Flags
  • -r recursive, needed to scp directories
  • -P [port]
Notes
  • The machine can be an alias or user@domain

7z

7zip CLI
Install with sudo apt install p7zip-full

# Archive
7z a <output_file> <input_file/folder>

# Extract 
7z x <file> [-o{dir}]

zip/unzip

Note that p7zip-full also includes the ability to zip/unzip .zip files.

Zip a folder

zip -r file.zip folder

Unzip an archive

unzip file.zip [-d destination]

Dual Booting

Fix time difference between Windows

Reference

timedatectl set-local-rtc 1 --adjust-system-clock

Recover GRUB after installing Windows

Ubuntu Help
If you install windows after installing Ubuntu

GrubReboot

GrubReboot
Allows you to reboot into an OS one time.
i.e. If you are ssh'd into linux and want to boot into Windows one time.

Users and Groups

Groups

# Make a group
groupadd <group>

# Delete a group
groupdel <group>

# List members in groups
getent group <group>

# Add user to group
usermod -a -G <group> <user>

Permissions

In unix filesystems, files and folders have individual permissions.
You can set permissions for each file/folder independently and for the following sets of users:

  • User/Owner u
  • Group g
  • Other o

You can also set permissions for all of the above with:

  • All a

Each file and folder can have the following permission for each set of user:

  • Read r
  • Write w
  • Execute x

The above totals 9 bits (3 sets of users times 3 permissions).

In addition to the above, there are 3 special bits:

  • Sticky bit t - only allow the owners of subfiles/subfolders to modify them
    • Useful for shared folders such as /tmp
  • Setuid - automatically elevate execution of this file to the owner's priviledges
  • Setgid - automatically elevate execution of this file to the group's priviledges

In total, permissions for each file and folder can be stored in 16 bits or 2 bytes.

chmod

chown

chgrp

Display Scaling

See Arch Wiki HiDPI

Xorg
# Find your display
xrandr
xrandr --output <display> --scale 1.25x1.25
Wayland
gsettings set org.gnome.mutter experimental-features "['scale-monitor-framebuffer']"


I have the following script run at startup

#!/bin/bash

gsettings set org.gnome.desktop.interface scaling-factor 2
gsettings set org.gnome.settings-daemon.plugins.xsettings overrides "{'Gdk/WindowScalingFactor': <2>}"
xrandr --output DP-2 --scale 1.3x1.3

Clock

See Ubuntu Time Synchronization

# Install chrony
sudo apt install chrony
# Synchronize time
sudo chronyd -q
# Check time synchronization
sudo chronyd -Q

Notes

  • Syncing over the internet will be off by a few milliseconds (e.g. 0.003 seconds).
  • Syncing with another computer over lan

Syncing with another computer

See askubuntu

On the server

Add the following to /etc/chrony.conf

# make it serve time even if it is not synced (as it can't reach out)
local stratum 8
# allow the IP of your peer to connect (192.168 subnet)
allow 192.168
# Or
# allow all
On the client

Add the following to /etc/chrony.conf

# set the servers IP here to sync to it
server <Server_IP> iburst
# remove the default servers in the config


/dev/

random

See stackexchange
See Myths about urandom

TLDR: Use /dev/urandom instead of /dev/random

Gnome

Tweaks

sudo apt install gnome-tweaks
sudo apt install chrome-gnome-shell

Auto Reboot

reference

Auto reboot if no internet is detected:

#!/bin/bash

TMP_FILE=/tmp/inet_up

# Edit this function if you want to do something besides reboot
no_inet_action() {
    if [ "$1" -eq 1 ]; then
        systemctl restart network-manager
    elif [ "$1" -ge 2 ]; then
        rm -f $TMP_FILE
        shutdown -r now "No Internet"
    fi
}

increment_tmp_file() {
    if [ ! -f $TMP_FILE ]; then
       echo 0 > $TMP_FILE
    fi
    oldnum=$(cut -d ',' -f2 $TMP_FILE)
    newnum=$(("$oldnum" + 1))
    sed -i "s/$oldnum\$/$newnum/g" $TMP_FILE
}

if ping -c5 google.com; then
    echo 0 > $TMP_FILE
    date > /tmp/inet_up_last_check
else
    increment_tmp_file
    oldnum=$(cut -d ',' -f2 $TMP_FILE)
    no_inet_action "$oldnum"
fi

Add to sudo's crontab to run every 10 minutes

*/10 * * * * /home/david/bin/check_inet.sh

Encryption

For encrypting external drives, I recommend VeraCrypt.
I do not recommend using Ubuntu's full disk encryption.
If you want to do encryption, just encrypt your home directory using fscrypt.

Encrypt Home After Install

See Archwiki: Fscrypt#Encrypt_a_home_directory.
See https://tlbdk.github.io/ubuntu/2018/10/22/fscrypt.html.

  1. Install fscrypt and do setup
    sudo apt-get install fscrypt libpam-fscrypt
    sudo fscrypt setup
    sudo fscrypt setup /
    sudo tune2fs -O encrypt /dev/<yourdevice>
    # E.g. sudo tune2fs -O encrypt /dev/sda5
    
  2. Create a new temp sudo user and login to it
  3. Create the encrypted home folder
    export USERNAME=david
    # Move old home folder
    sudo mv /home/$USERNAME /home/$USERNAME.bak
    
    # Create a new home folder and encrypt it
    mkdir /home/$USERNAME
    chown $USERNAME:$USERNAME /home/$USERNAME
    fscrypt encrypt /home/$USERNAME --user=$USERNAME
    
    # Copy files to the new home folder using cp or rsync
    # cp -a -T /home/$USERNAME.bak /home
    rsync -aHX --info=progress2 /home/$USERNAME.bak/ /home/$USERNAME/
    
  4. Test the encrypted home folder by logging into your user
  5. Cleanup by removing the temporary user and deleting the old home folder
    shred /home/$USERNAME.bak/
    
Notes and Caveats
  • systemd will no longer have access to your home so all startup apps should be placed elsewhere
    • E.g. Move all startup scripts in your ~/bin to /usr/bin
  • ssh will not work until home has been decrypted since the authorized keys are in ~/.ssh/authorized_keys
SSH Workaround

Getting SSH to work with an encrypted home dir is a giant pain.
Also things like tmux still won't work.
Overall I do not recommend doing this on a server.

  1. Move ssh keys elsewhere such as /etc/ssh/authorized_keys/<user>.
    • Add /etc/ssh/authorized_keys/%u to the AuthorizedKeysFile line in /etc/ssh/sshd_config.
  2. Create a sudo user with and unencrypted home directory.
  3. After every restart, ssh into the unencrypted sudo user and decrypt your home directory:
    • sudo fscrypt unlock /home/david --user=david
  4. Then ssh into your account.

SFTP

You can create a specific user with a chroot to limit SFTP to specific folders.
See SFTP chroot for details. /etc/ssh/sshd_config

Subsystem sftp /usr/lib/ssh/sftp-server

Match Group sftponly
  ChrootDirectory %h
  ForceCommand internal-sftp
  AllowTcpForwarding no
  X11Forwarding no
  PasswordAuthentication no