====== 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** * http://physics.princeton.edu/pulsar/K1JT/ * http://www.wsprnet.org * http://www.hflink.com/jt65 * http://www.freedv.org * http://www.amateurlogic.spreadshirt.com/ **Sponsors** * GigaParts: http://www.gigaparts.com For a limited time, use the promo code ALDSTAR at checkout. (offered ended December 2nd. 2013) * MFJ Enterprises Inc. http://www.mfjenterprises.com * Icom HF/VHF/UHF Transceiver http://www.icomamerica.com/hf-vhf-uhf **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