Skip to main content

Samba share from Solaris

To view folder on Solaris, you can configure Solaris samba service as below:
cd /etc/sfw
cp smb.conf-example smb.conf
vi smb.conf

add the lines before Share Definations as

password server = None
guest ok = yes
guest account = patrol
security = SHARE
dns proxy = no

add the lines below to the end

[home]
path = /export/home/patrol
writeable = yes
comment = patrol home on blue

Restarts samba services
/etc/init.d/samba stop
/etc/init.d/samba start

Now from Windows, you can access the Solaris server by \\blue

Comments