Jan 5, 2009 #1 timfox123 Technical User Oct 30, 2008 13 US I want to pull all tapes out of my jukebox that are full and not recycleable. I need mminfo to tell which tapes I can move. How do I find the flags for full ? Recycleable ? This is Legato 7.2.2
I want to pull all tapes out of my jukebox that are full and not recycleable. I need mminfo to tell which tapes I can move. How do I find the flags for full ? Recycleable ? This is Legato 7.2.2
Jan 6, 2009 #2 julianbarnett Technical User Sep 25, 2002 178 GB mminfo -m -q "pool=<POOL>,full,!volrecycle" | grep -v volume | awk '{ print $1 } Should do the trick Upvote 0 Downvote
Jan 6, 2009 #3 julianbarnett Technical User Sep 25, 2002 178 GB oops - missed final ' ! mminfo -m -q "pool=<POOL>,full,!volrecycle" | grep -v volume | awk '{ print $1 }' Upvote 0 Downvote
oops - missed final ' ! mminfo -m -q "pool=<POOL>,full,!volrecycle" | grep -v volume | awk '{ print $1 }'
Jan 6, 2009 #4 johnmoore6 MIS Apr 21, 2001 16 CH You may need to put a space between the "!" and "volrecycle", I have to for 7.4.x Upvote 0 Downvote
Jan 9, 2009 #5 a060463xyz IS-IT--Management Oct 17, 2003 281 DE mminfo -r "volume" -q "location=<libname>,full,!volrecycle" does it for me Upvote 0 Downvote