General Solaris Command
Shows the ethernet address arp table # arp -a Delete a stale ethernet entry for host xhost # arp -d xhost Reports disk space used in Kilobytes # du -k Reports only total disk space used in Kilobytes # du -sk Tells you how big the / files are in reverse order # du -ad / | sort -nr Mount an ISO 8660 CDROM # /bin/mount -F hsfs -o ro /dev/sr0 /cdrom Disk geometry and partitioning info # prtvtoc /dev/rdsk/c0t0d0s2 Zero's out the file without breaking pipe # cat /dev/null > filename Make a mirror image of your boot disk # dd if=/dev/rdsk/... of=/dev/rdsk/... bs=4096 Check a UFS filesystem # fsck -F ufs /dev/rdsk/cxtxdxsx Check a UFS filesystem with auto-answer "yes" # fsck -F ufs -y /dev/rdsk/cxtxdxsx Check using an alternate super block # fsck -F ufs -o b=97472 /dev/rdsk/cxtxdxsx Verify reconfigurable hardware resources # cfgadm Display kernel module information # /usr/sbin/modinfo Load a kernel module # /usr/sbin/modload Unload a kernel module # /usr/sbin/modunload -i Tune...