-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e6678f9
commit b67e985
Showing
2 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<html> | ||
<head> | ||
<title>New Linux Machine Setup</title> | ||
</head> | ||
<body> | ||
<ol> | ||
<li> | ||
External drive | ||
<ul> | ||
<li>sudo vim /etc/fstab</li> | ||
<li>UUID=767E-687A /mnt/external exfat defaults 0 1</li> | ||
<li>Find UUID with: lsblk -f</li> | ||
</ul> | ||
</li> | ||
<li> | ||
Samba | ||
<ul> | ||
<li><a href="https://wiki.archlinux.org/title/Samba">Arch Wiki</a></li> | ||
<li>sudo pacman -S samba</li> | ||
<li>sudo vim /etc/samba/smb.conf</li> | ||
[MEDIA] | ||
path = /mnt/external | ||
browsable = yes | ||
guest ok = yes | ||
writable = yes | ||
read only = no | ||
<li>sudo systemctl restart smb.service</li> | ||
<li>sudo ufw allow samba</li> | ||
</ul> | ||
</li> | ||
</ol> | ||
</body> | ||
</html> |