Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I have checked similar threads but found no satisfactory answer.
I want to increase the size of my terminal buffer so that later command output won't truncate earlier commands' output. I am not ready to download new 'packages' just yet.
Also, in the big result in the Terminal's output, would be nice if one can 'Find' (CTRL-F in Windows) a particular string...
Distribution: (Home)Opensolaris, Ubuntu, CentOS, (Work - AIX, HP-UX, Red Hat)
Posts: 2,032
Rep:
To edit the scroll back lines, when you open up the terminal click on edit then click on profile perferences, and then click on scrolling tab. You can change the number of lines you can scroll back too.
I have checked similar threads but found no satisfactory answer.
I want to increase the size of my terminal buffer so that later command output won't truncate earlier commands' output. I am not ready to download new 'packages' just yet.
Also, in the big result in the Terminal's output, would be nice if one can 'Find' (CTRL-F in Windows) a particular string...
I have Ubuntu 8.4.2
Thank you.
When you write "terminal buffer" do you mean the history of commands or do you mean the number of lines that of terminal display you can use the scroll bar to scroll back through (I don't know what Ctrl_F does in Windows).
To search through past commands, try Ctrl+R then enter a search string. Ctrl+R again will look for the next oldest occurrence of that string.
To edit the scroll back lines, when you open up the terminal click on edit then click on profile perferences, and then click on scrolling tab. You can change the number of lines you can scroll back too.
When you write "terminal buffer" do you mean the history of commands or do you mean the number of lines that of terminal display you can use the scroll bar to scroll back through (I don't know what Ctrl_F does in Windows).
To search through past commands, try Ctrl+R then enter a search string. Ctrl+R again will look for the next oldest occurrence of that string.
My bad. I had two questions in one post. The question about Windows Ctrl_F, a FIND function, (you can try that with any web page, except that Windows extends that function to any of its documents) has been met with the suggestion to use a combination of pipe, grep and redirect commands to search for a particular string from a huge output of a command.
For the other question, I should have been a little more specific about the buffer of my terminal. The input buffer, which allows me to cycle through my previous commands, is adequate. But the output buffer, which allows me to scroll back and forth to view the (large) output of a command, such as <dmesg>, is a little small. As a result, the top portion of the output got truncated. I wished to increase the output buffer of my terminal so that I can view the entire output result of my commands. But this question has also been resolved by an earlier post.
My bad. I had two questions in one post. The question about Windows Ctrl_F, a FIND function, (you can try that with any web page, except that Windows extends that function to any of its documents) has been met with the suggestion to use a combination of pipe, grep and redirect commands to search for a particular string from a huge output of a command.
For the other question, I should have been a little more specific about the buffer of my terminal. The input buffer, which allows me to cycle through my previous commands, is adequate. But the output buffer, which allows me to scroll back and forth to view the (large) output of a command, such as <dmesg>, is a little small. As a result, the top portion of the output got truncated. I wished to increase the output buffer of my terminal so that I can view the entire output result of my commands. But this question has also been resolved by an earlier post.
Thanks.
Oh! That Ctrl+F! You might also try
Code:
dmesg | less
which lets you use /<string> (without the < > signs) to search forwards and ?<string> to search backwards. See the less man page for full details of it's searching commands. Does Ctrl+F work on the Windows command prompt screen? I never tried it.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.