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 Rhinorhino 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 PedroG

  1. PedroG

    True 64 vdump command

    Hi, vdump does backups of filesets, so make a directory per filesystem on the local machine. Mount them all on the local machine (for an example mount -t nfs remotesystem:/usr_backup /mnt/usr_backup) Make clones of every filesystem (for an example clonefset usr_domain#usr usr_clone). Mount the...
  2. PedroG

    killing a telnet session

    Yes, there is. You need a program called lsof (ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/) . To kill a telnet session you need the PID of its telnetd process. And to obtain this PID, you could use lsof this way: lsof -i | grep <port_number> It would return one or more lines, containing the...
  3. PedroG

    df -k out put

    I've found that sometimes df does not report right, it's output display a false filesystem occupation. Try a quotacheck over the filesystem and then the df command, sometimes it is fixed this way. You can use quotacheck <mount point> or quotacheck filedomain#fileset , it does not need...
  4. PedroG

    How to get a listing of hanging/zombie processes ?

    To get rid of a zombie process, you can kill its parent. But if its parent is the init process... you'll have to reboot to destroy it.

Part and Inventory Search

Back
Top