UNIX
UNIX Articles
df –kt Filesystem kbytes used avail capacity Mounted on /dev/vx/dsk/rootvol 4032504 970905 3021274 25% / /proc 0 0 0 0% /proc fd 0 0 0 0% /dev/fd mnttab 0 0 0 0% /etc/mnttab Entire Article on How to find Free Space...
Sendmail has the reputation of having the most hideous configuration file in the history of mankind. It's extremely long and incredibly cryptic. However, it is this very complexity that has made it the most popular MTA (Mail Transport Agent) on the Internet. Its' flexibility allows sendmail to handle the most demanding, disjointed mail routing and serving configurations you can dream up. The sendmail that's distributed freely is coordinated by the folks at the www.sendmail.org Web site. Downloads,...
Solaris x86 can picky when it comes to hardware. It may not work on hardware that's not listed in the HCL (Hardware Compatibility List). My older Pentium system's motherboard was OK, and it found the hard-drive I had connected to the primary IDE channel (on the motherboard) but it wouldn't recognize the CD-ROM drive even though it was connected to the secondary IDE channel on the motherboard. (I had better luck on a system where the CD-ROM drive was connected as the slave on the primary IDE channel....
Basic Definition of Shell Scripting is Storing Frequently Used Commands in Files. Store the following in a file named simple.sh and execute it. #!/bin/sh# Generate some useful info for# use at the start of the daydatecallast $USER | head -6 Shows current date, calendar, and a six of your previous logins for security check. You might run this at the beginning of each day.Notice that the commands themselves are not displayed, only the results.To display the commands verbatim as they run, execute with...