In order to work effectively from a windows pc a samba share on the ps3 is very handy. First make sure samba is installed.
rpm -q smb-clientIf not install samba.
yum -y install sambaWhen samba is installed edit the configuration file.
nano /etc/samba/smb.confChange the following settings:
workgroup = WORKGROUPNAME security = share [tmp] comment = Temporary file space path = /tmp read only = no public = yes [andreas] comment = andreas's home path = /home/andreas public = yes writable = yesStart the samba server.
sudo /etc/init.d/smb startNow you need to add a user, you'll be asked to provide a samba password for the user. Remember the user has to be a user on the machine.
smbpasswd -a usernameAfter you've added a user you need to restart the server in order to reflect changes.
/etc/init.d/smb restartAt this time it's a good choice to make sure samba will be started every time you start your system. Add smb to both runlevel 3 and 5.
/sbin/chkconfig --level 35 smb onThen you can verify it's on by issuing the follwing command.
/sbin/chkconfig --list smbEnjoy!
Leave a comment