Difference between revisions of "Solaris 10"

From Hackepedia
Jump to navigationJump to search
 
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
One major change I've noticed in [[Solaris]] 10 is that admintool is gone. They have replaced it with smc (Solaris Management Console) which is a bloated client-server tool.
  
  One major change I've noticed in Solaris 10 is that admintool is gone. They have replaced it with smc (Solaris Management Console) which is a bloated client-server tool. I'll never understand why they don't add a little more to the single "hostname" binary for example, so that when you run "hostname foo" it would update the +5 neccesary files that need touched.
+
You will want to install [http://www.blastwave.org/pkg-get.php pkg-get] and make sure you have gzip, and wget, in your [[path]].
 +
 
 +
 
 +
  /etc/init.d/syslog:
 +
            /usr/sbin/syslogd -t >/dev/msglog 2>&1 &
 +
add the -t to stop accepting remote logs
 +
 
 +
/etc/init.d/sendmail:
 +
            MODE=""
 +
remove the -bd to stop it from running in daemon mode

Latest revision as of 11:40, 12 July 2006

One major change I've noticed in Solaris 10 is that admintool is gone. They have replaced it with smc (Solaris Management Console) which is a bloated client-server tool.

You will want to install pkg-get and make sure you have gzip, and wget, in your path.


/etc/init.d/syslog:
           /usr/sbin/syslogd -t >/dev/msglog 2>&1 &

add the -t to stop accepting remote logs

/etc/init.d/sendmail:
            MODE=""

remove the -bd to stop it from running in daemon mode