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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: gkd
  • Order by date
  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...
  16. gkd

    More from Getting Started with Oracle

    Thank you Dustman!! This is exactly the kind of information that I was looking for. I will look for the book right away.
  17. gkd

    More from Getting Started with Oracle

    The Oracle on the UNIX machine is production. But, what I really want to know is what do I need to do to work independently on my PC. What software do I need to install on my PC? I want to use my PC as my training tool and be totally independent of the UNIX machine until I become more...
  18. gkd

    Getting started with Oracle

    I am brand new to the Oracle world. I am currently using SQL and INFORMIX on a Unix platform. I am trying to learn Oracle so that I may use it on a Unix platform. What I would like to do is create a test database and play. One of my contacts told me that I should have Personal Oracle for...
  19. gkd

    how to access cd-drive in core installation

    Hi.. Try mount -F hsfs /dev/sr0 /cdrom sr0 is the link to the CDROM device. hope it helps Kavi
  20. gkd

    rpc not registered problem

    If rpcbind is not running, RPC processes would not be registered on the server. To check whether rpcbind is running: ps -ef | grep rpcbind Use rpcinfo command to list rpc services available: rpcinfo -s servername Look in the man pages of rpcinfo for more information Thanxs Kavidasan

Part and Inventory Search

Back
Top