User Tools

Site Tools


amateurlogic_episode_60

AmateurLogic 60

FreeDV, JT65 & Pi

Show Hosts

  • George Thomas (W5JDX)
  • Tommy Martin (N5ZNO)
  • Peter Berrett (VK3PB)

Topics

  • Tommy Share Some Pi
  • Peter Talks JT 65
  • George looks at FreeDV, Digital Voice for HF
  • We model the new AmateurLogic T-shirts
  • 8th Anniversary Giveaway

Links

Sponsors

(offered ended December 2nd. 2013)

After Show Net

  • Dodropin* (Echolink node 355800)

Show Notes

  • Setup a Raspberry Pi Samba File Server
  • sudo bash
  • apt-get update
  • apt-get install ntfs-3g
  • apt-get install hfsplus hfsutils (mac volumes only)
  • sudo apt-get install samba samba-common-bin
  • fdisk -l (find the mount point for your disk)
  • mkdir /media/RPI_SHARE
  • mount -o auto /dev/sda1 /media/RPI_SHARE (mount the disk)
  • mkdir /media/RPI_SHARE/shares
  • configure samba
  • cp /etc/samba/smb.conf /etc/samba/smb.conf.backup
  • pico /etc/samba/smb.conf
  • Uncomment the security = user line by removing the # sign
  • [RPI_DISK]
  • comment = Raspberry Pi Shared Drve
  • path = /media/RPI_SHARE/shares
  • valid users = @users
  • force group = users
  • create mask = 0660
  • directory mask = 0771
  • read only = no
  • restart the samba daemon
  • /etc/init.d/samba restart
  • create a user for the share
  • useradd rpidisk -m -G users
  • passwd rpidisk
  • smbpasswd -a rpidisk
  • Make the mounting persistent so it will work after a reboot
  • Edit /etc/fstab
  • cd /etc
  • sudo pico -w fstab
  • /dev/sda1 /media/RPI_SHARE/shares ntfs-3g quiet,defaults,locale=en_US.utf8,umask=0,noexec 0 0
amateurlogic_episode_60.txt · Last modified: 2013/12/04 09:51 by w5jdx-george

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki