This is from putty
When you run yum list, how do you view all of the list.
When the list finishes you can't go back to the beginning of the list.
This is from putty
When you run yum list, how do you view all of the list.
When the list finishes you can't go back to the beginning of the list.
Many thanks for the fast reply!
Alternately, change the settings in putty so that the scrollback buffer is something better than the paltry 200 lines it does by default. Then you can just use the scrollbar to go back and forth through the list. Right click the title bar, go to change settings. Click on "Window" and change the setting for lines of scrollback. This is handy for cli output too, but you might want to change the option for "Reset scrollback on display activity."
Also, you can capture the output in a file, then edit it, then you can search through it for keywords if you need to. "yum list > somefile.txt"
Also, yum has a built in search. "yum search keyword" grep is case sensitive by default, so "yum list | grep rhino" won't find "Rhino." Whereas yum search rhino will find Rhino or RhInO for that matter. Granted, you could also do yum "list | grep -i rhino" and do pretty much the same thing, however "yum search" will give you a short description of the packages that match, which can come in handy.
Just alternate ways, hopefully I've overwhelmed and confused you so that your only recourse is to hire me to do it for you. That's my goal.
WARNING: I no longer actively participate in these forums. My thoughts on trixbox in a nutshell: http://www.youtube.com/watch?v=q4xBMkWu1pE Use AsteriskNOW instead.
KodaK,
Thanks for the additional info.
And when you said "...hopefully I've overwhelmed and confused you..."
You haven't....I stay that way. : )
It's my natural state.
What I use when working on a machine remotely (or even locally) is to tee the output for later use.
E.g., assuming you login to a bash account:
yum list 2>&1 | tee yum.list
This captures both stdout and stderr for later use as well as output to the terminal. You can then print, view, archive, move to another machine, etc. I especially use this when the output is very verbose.
Mike Hamilton
Rev
Thanks for the info Mike.
Every piece of knowledge I get helps me get better at the linux game.
Copyright © 2011 Fonality
Fonality and trixbox are trademarks of Fonality. Trademark Policy. Privacy Policy.
Asterisk is a trademark of Digium, Inc. Fonality and trixbox are not affiliated with, nor endorsed by Digium, Inc.
Member Since:
2006-09-24