Hello everyone, I need to clean-up some disk space on one of our servers. However, it's still running Solaris 7. I've never really worked with this version of Solaris. Can anyone suggest which command I should use to check for which file is taking up the most disk space. I usually do a du -akd command, but I can't think of an equivalent.
Here is the script that I run, but would'nt work on Solaris 7 since there is no du.
#!/bin/sh
while true
do
du -akd $1 | grep '\<[0-9][0-9][0-9]\>'
sleep 600
done
Here is the script that I run, but would'nt work on Solaris 7 since there is no du.
#!/bin/sh
while true
do
du -akd $1 | grep '\<[0-9][0-9][0-9]\>'
sleep 600
done