On the first question... this depends on the filesystem used. Solaris does not have support for ext2/3 or most of the other popular filesystems for Linux. To add it, see the following post:
http://blogs.sun.com/pradhap/entry/mount_ntfs_ext2_ext3_in As for the second question, the following network changes should be made: 1) Insert the netmask into /etc/netmasks 2) Insert the IP address and hostname into /etc/hosts 3) Insert the hostname alone into /etc/nodename (echo "myhost" > /etc/nodename) 4) Insert the defualt gateway address alone into /etc/defaultrouter (echo "10.0.0.1" > /etc/defaultrouter) 5) Insert the hostname alone used in /etc/hosts into /etc/hostname.rtls0 (echo "myhost" > /etc/hostname.rtls0) Once this is done, restart the network stack. If the interface is plumbed already (ifconfig -a) you may want to unplumb it first just to be sure: svcadm restart network/physical:default Then check 'ifconfig -a' and 'netstat -nr' to ensure things are properly configured. To setup DNS use /etc/resolv.conf like you would on Linux and then "cp /etc/nsswitch.dns /etc/nsswitch.conf". Use 'dig' or 'host' to test. Good Luck! benr. This message posted from opensolaris.org
