Table of Contents

Debian Tips

Installation

GRUB

Disks

Mount SMB drive

# Mounting a CIFS/SMB network drive
# Ensure driver installed with `apt install cifs-utils`

# To mount manually, run command like this:
# Omit the `password=` option to get prompted
# uid/gid is for the local Linux account
# user is the login for the remote SMB drive
sudo mount -t cifs -o uid=myuser,gid=sudo,user=myuser, \\\\192.168.0.100\\home /mnt/smb-drive
# Example /etc/fstab entry for mounting CIFS/SMB network drive
# `apt install cifs-utils`
# Credentials should be in `/root/.smbcredentials` with `chmod 400`
# File should have 2 lines and look like:

# username=myuser
# password=my secret password

//mynas.local/home /mnt/smb-drive cifs uid=myuser,gid=sudo,credentials=/root/.smbcredentials

Laptops

Development

Audio/Video

sudo

Misc