Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by gkd

  1. gkd

    korn shell testing input parameters

    Thanks both of you.
  2. gkd

    korn shell testing input parameters

    Hi Here is the script that i have. it is fine, but is there a better way to do it? #!/bin/ksh if [ $1 = report ] || [ $1 = run ] && [ $2 -gt 0 ] then echo "This is correct: $0 $1 $2" else echo "USAGE:$0 <report|run> <number> " fi
  3. gkd

    korn shell testing input parameters

    Frieds, ./script.ksh $1 $2 i want to run a korn shell script only if $1 is equal to report or run and if $2 any number greater than zero. Can someone advise me the efficient way to write this script.
  4. gkd

    Report - which client on which tape

    This may help you. bpimagelist -media -client name -U
  5. gkd

    SAN Backup

    Do you have BCV or Volume snapshot option in your SAN environment?. Do you use any media servers with SSO option? Do you have any Disk Staging or Disk Storage unit on SAN?. You can make use of your SAN with all the above questions answered.
  6. gkd

    Web Based System Administration Tools

    Is there any WEB based system administration tool which comes along with Solaris 8 like "webmin" (www.webmin.com/solaris.html ). If so can anyone let me know how to configure the same. We are looking at administering the Solaris box completely through a web interface. Main tasks include adding...
  7. gkd

    Initial user Password

    Hi, Thanks all for the response. I tried the passwd -f -d username but it didn't work. I use Solaris 8. Does this cmd work with any of your boxes. i would like to do this way instead of having an additional tools. I will try the setpass utility also. Thanks
  8. gkd

    Initial user Password

    Is there a way to make the user to choose the passwd. After adding the users using useradd command. This is possible if i add a new user thru admintool (cleared until first login option)but not thru useradd command.
  9. gkd

    Solaris 8 /home dir permissions

    U can also stop the automount and create users with -m option which will create home directories in /home ex: useradd -u 400 -m -g user -c &quot;user oops&quot; oops will create user with id 400 and gid user and home dir /home/oops
  10. gkd

    Directory not visible

    This works..Thanx a lot.
  11. gkd

    Directory not visible

    Tried using mv ./* newname but this didn't help. Any other way to do this.? Following is the output. pisces:/usr21/temp/stage_new:# mv ./* new mv: cannot access ./* pisces:/usr21/temp/stage_new:# cp -r ./* new cp: cannot access ./*
  12. gkd

    Directory not visible

    Hi, I hav a strange situation. We use VXFS. One of the directory is hidden in my system. I don't know how to unhide it. This doesn't start with (.). Pls find the out put of the following commnads which wud give more idea about the problem. I could not see any files in the below directory unless...
  13. gkd

    umount a filesystem

    I tried the following the problem is still the same. # umount -v /bcp umount: /cdrom: Block device required # umount 10.32.22.140:/hpux umount: /cdrom: Block device required Is there anyother way..
  14. gkd

    umount a filesystem

    I have mounted a NFS volume on a HPUX but when i try to unmount the same i am getting the following error. *******output of the command********* #umount /bcp umount: /cdrom: Block device required ************************************** /bcp is the dir wer i am mounting the NFS volume which is...
  15. gkd

    permissions on an NFS mounted filesystem

    I hav mounted a NFS volume on a HPUX but when i try to unmount the same i am getting the following error. *******output of the command********* #umount /bcp umount: /cdrom: Block device required ************************************** /bcp is the dir wer i am mounting the NFS volume. This is a...

Part and Inventory Search

Back
Top