Ubuntu Networking :: Graphical Bandwidth Real Time Monitor?
Dec 14, 2010
I come from a windows world where there's a magical tool called netlimiter that allows me to shape bandwidth and watch upload and download traffic: And easily check stats: I wonder if there's such a beauty for linux?
View 1 Replies
ADVERTISEMENT
Mar 11, 2011
I would like to know how to monitor dual nic cards graphically in real time. I want to be able to see the traffic of each port separately.
View 3 Replies
View Related
Mar 21, 2010
I'm trying to check my server's bandwidth usage in real time, installed the following programs but none worked so far.
Iptraf - No results even when using iptraf -u
Tcptrack - Error : pcap_loop: cooked-mode frame doesn't have room for sll header
Iftop - No results, everything 0b
Are there any programs that displays bandwidth usage in real time and actually works on VPSes? Or getting real time bandwidth usage on a VPS is simply impossible?
View 5 Replies
View Related
Jun 5, 2009
Is there any application (preferrably web) that can monitor in real time what is going on in my mail server?
Who is sending to who
Who is receiving
List of incoming/sent mail
Dovecot mailbox size
Monitor postfix queue
etc.
View 4 Replies
View Related
Dec 26, 2008
Does anyone maybe know of a client app for Windows/Linux that polls the Linux (Ubuntu) Gateway and checks (in almost real-time) what the bandwidth usage is? Something like KInternet (which is SuSE only as far as I know) where you can see a graph showing how much kbps is sent and received per second.
View 11 Replies
View Related
Mar 2, 2010
is there any software which can show us real time monitoring of ISA2006 usage(for example as we can see in WinGate software)
View 1 Replies
View Related
Aug 18, 2011
I would like to connect to Linux Server remotely over LAN in graphical modeBut I need access for several users in real time. Everyone must have its own desktop.
View 2 Replies
View Related
Mar 23, 2010
what the recommended way to set up real-time (or near real-time) folder synchronization among 2+ servers. I looked a rsync but that doesn't sound real-time and it looks like its something that you might put in a cron once an hour.
View 1 Replies
View Related
Feb 18, 2010
I'd like to find some sort of program which can tell me how much incoming data I've had in the last 24 hours. It goes by hours, not by days, but anything that's simple and that can display this will do. Is there any sort of program that does this? Something that would fit well with Ubuntu's style wouldn't hurt, but I'm not that worried about it as long as it does the job.
View 1 Replies
View Related
Sep 1, 2011
is there any way to monitor each application network bandwidth usage ?I've used gnome-system-monitor, but unfortunately it just show the total network activity
View 3 Replies
View Related
Jul 6, 2010
I have a linux router box with ubuntu which routes internet for several people. There is no extra traffic shaping, so everybody can get the whole bandwidth when its free. What I would like to have is a real time traffic counter per ip, just like a program called "iptraf" but on a per-ip basis. Iptraf can only count on a per-connection basis and thus cannot display a bandwidth that a certain ip has taken (because a single ip can start several onnections). So a console program with text interface like iptraf would be perfect - does anybody know about such a program? After some googling I came to the conclusion that such a program does not exist (which must be wrong - i think that per-ip real time traffic flow information is the first thing every router owner would like to know).
View 2 Replies
View Related
Feb 7, 2010
Is there any web-tool that provides real time squid users utilization and websites access.
View 2 Replies
View Related
Aug 18, 2009
I'm on Comcast (insert vomit sound here) and they have a 250GB monthly limit. I don't think I'm remotely close to this on a normal month and want to figure out if I could perhaps squeak by with the 5GB limit imposed by Verizon's 3G wireless broadband.
I'm ideally looking for a quick easy-to-use GUI application, rather than something that's done via the command line.
I thought perhaps I could look in my Account and find a nice "You've used X percent of 250 GB thus far" window. Then I called, but Comcast couldn't tell me. They just borked me off to some Windoze application 3rd party which I'm supposed to install.
I run Skype and occasionally download Fedora iso images and so on. Rarely am I doing more than surfing the web, chatting, and sending emails. I doubt I'm even close to 250GBs but I'm guessing that 5GB will end up being problematic.
Are there any programs that will keep track of how much bandwidth I'm using? It'd be great to have an application that runs there in the taskbar and just shows a graph of how much I've used thus far.
View 2 Replies
View Related
Mar 15, 2010
I want a bandwidth monitor which performs constant monitoring of the ethernet. I want to see how much bandwidth I am spending by opening each website, downloading, etc. A small program which can remain "always on top".
I am using Gkrellm but the problem is it does not updates itself constantly, I mean I have to close/open its eth0 monitoring window to view changes (I am not talking about restarting Gkrellm, only the bandwidth window which shows the daily, monthly bandwidths)
View 7 Replies
View Related
May 3, 2011
Let's say I am pinging a host, and want to output to a file each reply and its timestamp of when this started.
I know that it can be done with a loop and a shell script. Something like this
DO
echo "$(date)" >> results.txt ###includes the time and outputs results to txt###
ping -c 4 HOST >> results.txt ###a total of 4 pings at a rate of 1 per second###
REPEAT UNTIL USER PRESSES CTRL-C
Now, my first issue is that I need to be able to see results real-time as well.
Is there a way one can print to BOTH a screen and output? If one uses the ">>" command, it is essentially sending everything to the file. Running another ping command in parallel is not an option.
View 3 Replies
View Related
Dec 28, 2010
Is there any tool in linux, so that the bandwidth, each user consuming, can be monitored.
View 2 Replies
View Related
Feb 16, 2010
my isp is putting a max bandwidth in my area and I need to monitor my downloads and uploads per month. Is there anything that has a gui that is easy to set up and just shows the amount of data downloaded and uploaded per month. Also if possible to do a pop up if you set a maximum bandwidth amount.
View 2 Replies
View Related
Aug 4, 2009
I am hosting two Virtual Servers both running Centos 5.3 on a host machine also running the same OS. The VM software in use is Xen, as supplied with the OS.The host machine's time and date is fine, however both Virtual Servers are running ahead of real time consitantly.Running /etc/init.d/ntpd restart will resolve the issue however one of these is running MailScanner and when the time suddenly goes backwards, sometimes by as much as an hour, it stops working properly.
View 1 Replies
View Related
Jan 28, 2010
I used the following command to get the unix time of root user creation:
Code:
awk -F":" '$1 == "root" {print $3}' /etc/shadow
How can i convert this into the date/time of creation?
I am writing a shell script, which determines the OS installation date among other stuff, and i am assuming the root user's account creation date should be a pretty accurate pointer. Are there reasons why i should not be assuming so?I would be open to other suggestion for getting this date/time, but it would nevertheless be interesting to convert the unix time to "real" time without doing complex manual(or otherwise) computation..
View 4 Replies
View Related
Nov 18, 2010
I created a the class like this for shaping the packets with a specified bandwidth rate.....
tc qdisc del dev eth0 root
tc qdisc add dev eth0 root handle 1: htb default 15
tc class add dev eth0 parent 1:0 classid 1:1 htb rate 750kbit ceil 750kbit
tc class add dev eth0 parent 1:1 classid 1:3 htb rate 600kbit ceil 750kbit prio 0
For Our Requirement:-
I dont want to specify the bandwidth rate strictly like this rate750kbit ceil 750kbit,based on whatever speed is coming which should allocate the bandwidth rate for particular class...I need one application for finding the upcoming bandwidth & Is any other method is there for specify the bandwidth rate in a classes.
View 1 Replies
View Related
Sep 9, 2010
if I want to use an rt kernel in ubuntu studio, how do i use the kernel? say for instance, Ubuntu studio is installed with generic kernel.then i download the rt kernel.
View 3 Replies
View Related
Oct 12, 2010
I'm new in UBUNTU and would like to get a real-time antivirus.Maybe it's not necessary, but I still want it (I've got an iMAC and have installed an antivirus... ) So, please... which antivirus is good and in real-time (I mean that, if I try to open an infected file or go to a bad website, it stops it). Is KLAMav good and in Real time?
View 9 Replies
View Related
Dec 29, 2010
Just installed a real time kernel on my new computer so I can record music. My problem is that I have no GUI. I noted that I would not when fglrx drivers could not be installed/applied to the new kernel when installing it.
View 7 Replies
View Related
Mar 27, 2010
I am hosting some websites and i want to monitor who is using more resources from a thoughput standpoint... Would this be bandwidth monitoring. can use to monitor these sites. I am using an uptodate version of apache2 and a single ip vhost setup.
View 9 Replies
View Related
Jul 28, 2010
I live in the boonies, so I have satellite internet. It's not too bad, but I'm restricted to 200 mb's of download per day.
I'm looking for an app that will keep track of my usage, so I don't go over 200. I was using "System Monitor", but it's a little buggy, so I'd like to try something else.
View 7 Replies
View Related
Oct 16, 2010
I've installed an Ubuntu GNU/Linux 10.04 Server (Lucid Lynx) in a great computer, but with a small and old CRT monitor, that doesn't support much screen resolutions and frequencies. How can I do to make the system to use everytime traditional text mode (80x25 characters or compatibles)?
View 3 Replies
View Related
May 17, 2010
when the server is getting overloaded with users. At present I run the server mainly as a proxy server with about 100 users. The bandwidth at the data centre is 100Mbps connection with total bandwidth used last month = 17431.16 MB
I would like to add a VPN in future but feel that this might overload the bandwidth as instead of it just being web traffic it will the entire client TCP connections. I would like to monitor this before it gets to the stage where users are complaining but not sure how to gauge whether the proxy is being overloaded. It is used mainly for video traffic.
View 1 Replies
View Related
Dec 20, 2010
Running qjackctl as root allows me to run the audio in realtime so it seems to be a permissions problem and it seems to me that lubuntu does not read the /etc/security/limits.d/audio.conf file when I boot.
View 3 Replies
View Related
Feb 24, 2010
I created filesystem XFS on partition hda8 with subvolume real-time on partition hda5: Code: mkfs.xfs -r rtdev=/dev/hda5 /dev/hda8 and i mounted it: Code: mount -t xfs -o rtdev=/dev/hda5 /dev/hda8 /xfs But I don't know how can I use this partition hda5 with subvolume real-time. I don't know how to create directories, copy files to it and another. Thanks for all answers!
EDIT:in manual it is writen: The realtime section is used to store the data of realtime files.These files had an attribute bit set through xfsctl(3) after file creation, before any data was written to the file.
View 2 Replies
View Related
Dec 7, 2009
I've got the following problem:
1. I start two bash windows
2. In one of them I start a script test1:
Code:
This script puts a natural number 5 times a second.
3. Then in the second bash window I type (as root):
Code:
The script test2 looks as follows:
Code:
While true; do
true;
done
During the following 15 seconds test2 is the process with the highest real-time priority. As far as I know the script doesn't perform any system calls so it shouldn't be suspended even for a minimal timeslice. My question is: why the process test1 manages to put a few numbers on the screen before test2 stops. I thought that test2 would exclusivly own the processor for 15 seconds.
View 8 Replies
View Related