We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I like to use samba to simplify the creation of samples, I can upload wav files directly and reload them without restarting my Raspberry Pi
As Samba won't work in a read-only filesystem, and since I need it only when i'm making samples. i remove it from boot.
Here is the procedure
mount -o remount,rw / apt-get update;apt-get upgrade apt-get install samba
Create password for root
smbpasswd
Modify /etc/samba/smb.conf
======================= Global Settings ======================= [global] dns proxy = no workgroup = WORKGROUP os level = 20 syslog = 0 panic action = /usr/share/samba/panic-action %d max log size = 1000 #Unsecure mode security = user browseable = yes writeable = yes guest ok = yes load printers = no printing = bsd printcap name = /dev/null disable spoolss = yes #======================= Name ========================= #Name of your Raspberry Pi netbios name = synth #======================= Shares ======================= [usb] # Path / User path = /media force user = root
Restart samba
/etc/init.d/samba restart
Check if you have access to \synth\usb
Remove it from boot
update-rc.d -f smbd remove update-rc.d -f nmbd remove
mount -o remount,rw / /etc/init.d/samba start
User :root Password: root
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I like to use samba to simplify the creation of samples, I can upload wav files directly and reload them without restarting my Raspberry Pi
As Samba won't work in a read-only filesystem, and since I need it only when i'm making samples.
i remove it from boot.
Here is the procedure
Create password for root
Modify /etc/samba/smb.conf
Restart samba
Check if you have access to \synth\usb
Remove it from boot
How to use it
User :root
Password: root
The text was updated successfully, but these errors were encountered: