When I do a:
I get this:
I can't add:
What do I do and what has happend? I think a update overwrite my files without prompting...
I think I fixed It... Removed everything and pasted my lines. all good now
Code:
sudo nano /etc/samba/smb.conf
I get this:
Code:
#!/bin/sh -e
mv_conffile() {
local OLDCONFFILE="$1"
local NEWCONFFILE="$2"
[ -e "$OLDCONFFILE" ] || return 0
echo "Preserving user changes to $NEWCONFFILE ..."
mv -f "$NEWCONFFILE" "$NEWCONFFILE".dpkg-new
mv -f "$OLDCONFFILE" "$NEWCONFFILE"
}
case "$1" in
configure)
if dpkg --compare-versions "$2" le "30~pre9-2"; then
mv_conffile "/etc/network/if-up.d/wireless-tools" "/etc/network/if-pre-up.d/wireless-tools"
mv_conffile "/etc/network/if-down.d/wireless-tools" "/etc/network/if-post-down.d/wireless-tools"
fi
esac
I can't add:
Code:
[TV] #This is the name of the share it will show up as when you browse
comment = TV Shows
path = /mnt/usbstorage/TV
create mask = 0755
directory mask = 0755
read only = no
browseable = yes
public = yes
force user = pi
#force user = root
only guest = no
What do I do and what has happend? I think a update overwrite my files without prompting...
I think I fixed It... Removed everything and pasted my lines. all good now