From 47881d1d5da3e305a87a2010db14d5dd8c8d6ad9 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Sun, 24 Apr 2022 14:46:41 +0200 Subject: [PATCH] (Grav GitSync) Automatic Commit from RealStickman --- pages/02.linux/fstab/default.en.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 pages/02.linux/fstab/default.en.md diff --git a/pages/02.linux/fstab/default.en.md b/pages/02.linux/fstab/default.en.md new file mode 100644 index 0000000..8645b1a --- /dev/null +++ b/pages/02.linux/fstab/default.en.md @@ -0,0 +1,18 @@ +--- +title: fstab +--- + +## Other drives +Find uuid with `sudo blkid` +`UUID=(uuid) (mountpath) (filesystem) defaults,noatime 0 2` + +## Samba shares +`//(ip)/(path)/ (mountpath) cifs uid=0,credentials=(path to credentials file),iocharset=utf8,noperm,nofail 0 0` + +Example credentials file: +``` +user=(user) +password=(password) +domain=WORKGROUP +``` +Make sure to set permissions to the credential files to something like 700. \ No newline at end of file