Skip to content

Commit

Permalink
Start creating server linux notes
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyLeland committed Jun 23, 2024
1 parent e6678f9 commit b67e985
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
15 changes: 15 additions & 0 deletions linux.html
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,21 @@
<li>More suggestions <a href="https://lemmy.world/post/12205671">here</a></li>
</ul>
</li>
<li>
Samba
<ul>
<li>sudo apt install 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 smbd</li>
<li>sudo ufw allow samba</li>
</ul>
</li>
</ul>
</body>
</html>
33 changes: 33 additions & 0 deletions linux/server.html
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>

0 comments on commit b67e985

Please sign in to comment.