Quote:
|
Originally Posted by gvsrinivasan
1. How can i know whether my Ethernet card is recognized or not under solaris 10 ?
|
Run:
Code:
ifconfig -a plumb
ifconfig -a
and see if your network card is shown (ignore the lo0 interface).
Quote:
|
2.I need to enable dhcp in my Ethernet to have an internet connection in my Linux/solaris pc from a winxp system
|
Code:
ifconfig xyz0 dhcp start
Replace xyz0 by your interface driver name.
Quote:
|
3. How can i mount and use fat32 partitions in solaris ,when the system is in dual boot with winxp and solaris 10
|
Something like:
Code:
mount -F pcfs /dev/dsk/c0t0d0p0:c /fat32
Quote:
|
4. I need to view all the partitions in my hard drive
|
Code:
fdisk -v -W - /dev/rdsk/c0d0p0
Quote:
|
i need to put my solaris system in network with other winxp system ,i know samba is there for doing this , but many apps in Linux and solaris does not support saving a work n to a fat32 partition using the samba protocol
|
Indeed.
Quote:
|
I am still a learner regarding solaris os ,so if you find any of above questions as a silly thing , please forgive me
|
No problem, you are welcome.