LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This 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


Reply
  Search this Thread
Old 04-07-2013, 08:40 AM   #1
deathcorpez
LQ Newbie
 
Registered: Apr 2013
Posts: 4

Rep: Reputation: Disabled
How to see all lines in the terminal window?


Hello guys,

When i run airodump-ng comman in terminal, it finds too many essid and when it exceed the maximum terminal window size, then i can't see the all lines.

It's like a scroll bar problem but i couldn't solve.

Hope you can help me.

Thanks in advance.
 
Old 04-07-2013, 09:34 AM   #2
gdejonge
Member
 
Registered: Aug 2010
Location: Netherlands
Distribution: Kubuntu, Debian, Suse, Slackware
Posts: 317

Rep: Reputation: 73
Have you tried pipe the output of airodump through more
Like:
Code:
# airodump | more
 
Old 04-07-2013, 09:37 AM   #3
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Of you could pipe it to a file then use your favourite editor to examine it with something like:
Code:
airodump > airodump.log
 
Old 04-07-2013, 10:07 AM   #4
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,375

Rep: Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754
You could also use the Shift-PageUp and Shift-PageDown key combinations to scroll back and forward through the terminal display.
 
Old 04-07-2013, 12:32 PM   #5
deathcorpez
LQ Newbie
 
Registered: Apr 2013
Posts: 4

Original Poster
Rep: Reputation: Disabled
Thank you but neither of woked for me :\.
 
Old 04-07-2013, 12:37 PM   #6
Madhu Desai
Member
 
Registered: Mar 2013
Distribution: Rocky, Fedora, Ubuntu
Posts: 541

Rep: Reputation: 153Reputation: 153
From: http://ubuntuforums.org/showthread.php?t=2034890

Code:
$ man airodump-ng
-w <prefix>, --write <prefix>
              Is  the dump file prefix to use. If this option is not given, it will only show data on the screen. Beside this file a CSV file with the same filename as the capture
              will be created.

Last edited by Madhu Desai; 04-07-2013 at 01:00 PM.
 
Old 04-07-2013, 01:56 PM   #7
deathcorpez
LQ Newbie
 
Registered: Apr 2013
Posts: 4

Original Poster
Rep: Reputation: Disabled
@mddesai, thank you for the link. I will try it.

Last edited by deathcorpez; 04-07-2013 at 02:01 PM.
 
Old 04-07-2013, 02:06 PM   #8
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Code:
airodump-ng -c 1,6,11 wlan0 | more
An example.
Just type out whichever command it is you want to run, followed by the pipe sign '|' and "more".
The same goes for less, or to redirect the output to a file as I suggested use the '>' and then a file name like so:
Code:
 airodump-ng -c 1,6,11 wlan0 > airodump.log
Then open the file airodump.log with vi or nano, I like nano so I'd use:
Code:
nano airodump.log
 
Old 04-07-2013, 02:07 PM   #9
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
Quote:
Originally Posted by deathcorpez View Post
Hello guys,

When i run airodump-ng comman in terminal, it finds too many essid and when it exceed the maximum terminal window size, then i can't see the all lines.

It's like a scroll bar problem but i couldn't solve.

Hope you can help me.

Thanks in advance.
You can set your prefences for terminal to unlimited scroll
Open terminal go to Edit>>Profile Preferences>>Scrolling
 
Old 04-07-2013, 03:15 PM   #10
deathcorpez
LQ Newbie
 
Registered: Apr 2013
Posts: 4

Original Poster
Rep: Reputation: Disabled
Thank you @273, i forgot to said that im a linux newbie, now i completely got you.

@EDDY1, i already tried it but no chance.
 
Old 04-07-2013, 03:23 PM   #11
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Look at something like this:
http://linuxcommand.org/lts0060.php
It's a good idea to learn some basic shell commands before you start playing with tools like Aircrack.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Troubleshoot wvdial . Terminal Procedures and Scrolling through Terminal Lines theKbStockpiler Linux - General 7 01-27-2012 06:44 PM
Starting new terminal window or tab from existing window remaining as root? homerun Linux - Newbie 1 08-14-2009 11:34 AM
New lines in gnome-terminal overlapping old lines instead of scrolling crontab Linux - Software 2 04-17-2009 10:08 AM
Difference between a Shell terminal window and the KDE Linux Console terminal window? bostonantifan Fedora 2 03-25-2007 07:23 PM
weird lines on X window terminal - I'm worried... towsonu2003 Linux - Hardware 8 09-22-2005 03:34 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 01:27 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration