Things I Wish I Knew About Solaris When I First Started.

Solaris 10 is a very powerful scalable operating system that feels tightly integrated and highly responsive. However for those of us with a strong Linux or FreeBSD background Solaris can feel a little unfamiliar and even downright confusing. This post is made up of a few things I wish I knew before I started my Solaris 10 adventure. I hope it will make things a little easier for those of you wanting to take the plunge into a true enterprise operating system.

More…

1.That annoying backspace!!!!

If you are wondering how to get the backspace key to work in Solaris you can type one simple command. It should make life much easier for you.

#stty erase ^h

The (^h) is what is displayed when you use the backspace key.

2.How do I enable Samba?

To enable Samba simply issue the following commands:

#vi /etc/sfw/smb.conf

Enter your samba config entries here

#reboot?

When Solaris 10 boots it will check /etc/sfw for the smb.conf file, If that file is present it will enable samba automatically.

  1. How do I turn the graphical login on and off on bootup?

If you want the gui to not start when the system boots you can issue the following commands.

#/usr/dt/bin/dtconfig –d

The above command will disable auto gui on boot.

#/usr/dt/bin/dtconfig –e

As you can probably guess if –d disables the gui –e enables it.

  1. How do I scan for a network card and load the driver?

If you are coming from Linux or FreeBSD the process of loading a network card driver may seem very alien. In order to check for any network cards on the system for which you have drivers you can issue the following commands

#ifconfig –a plumb

The plumb part of the command will look for any network cards for which you have drivers and attempt to attach the driver to the hardware. You can check to see if any cards were found by using the following command.

#ifconfig –a

If any new network cards were found they will now show in the above command. The trick here is to get the network card to load automatically every time the computer starts in order to do this you must create the following file.

#vi /etc/hostname.interface-name

some examples of this are:

Hostname.rtls0Hostname.vfe0

Inside this file you need to put the hostname of the computer.

If the hostname is workstation1.techinvasion.net the file should look like the following:

#cat /etc/hostname.vfe0Workstation1#

These Are just some of the things that I have learned that I wish I knew when I started my adventure into Solaris. I will add more little tips to this page as I find more little things to add.