web-dev-qa-db-ja.com

Lubuntu用のインターネット速度テストソフトウェア

完全にGUIであるLubuntu用のインターネット速度テストソフトウェアが必要です。

2
user204653

1)installspeedtest-cli(1)例:次の端末コマンドを使用します。

Sudo apt-get install python-pip
Sudo pip install speedtest-cli

2)次のシンプルなbashスクリプトをコピーして、新しいプレーンテキストファイル(例:〜/ .bin/SpeedTestGUI.sh)に貼り付けます

#!/bin/bash
notify-send "Retrieving speedtest.net configuration..." -i gtk-dialog-info -t 1 -u normal && notify-send "Retrieving speedtest.net server list..." -i gtk-dialog-info -t 1 -u normal && notify-send "Selecting best server based on ping..." -i gtk-dialog-info -t 1 -u normal && notify-send "Your download and upload speeds will be calculated and displayed in a popup window shortly..." -i gtk-dialog-info -t 5 -u normal &
TMPFILE=`mktemp -t speedtest.XXXXXX`
speedtest-cli 2>&1 > $TMPFILE
# Check if the temp file is empty: if true there's something wrong with network
if [ ! -s "$TMPFILE" ]; then
 zenity --error --text="Network Error!"
else
# Determine ISP source server, best target server, dowload and upload speeds
SOURCE="$(cat "$TMPFILE"|sed -n '3,3p'|sed -e 's/Testing from //g' -e 's/\.\.\.//g')"
TARGET="$(cat "$TMPFILE"|sed -n '5,5p'|sed -e 's/Hosted by //g' -e 's/: .\+$//g')"
DOWNLD="$(cat "$TMPFILE"|sed -n '7,7p'|sed -e 's/Download: //g')"
UPLOAD="$(cat "$TMPFILE"|sed -n '9,9p'|sed -e 's/Upload: //g')"
# Display information obtained
zenity --info --text="\nISP Server: <b>$SOURCE</b>\n\nTarget Server: <b>$TARGET</b>\n\nDownload Speed: <b>$DOWNLD</b>\n\nUpload Speed: <b>$UPLOAD</b>"
# Remove the temp file when the user closes the zenity window
rm -f $TMPFILE
fi

3)実行可能にし、実行します-ファイルマネージャをクリックするか、メニューに追加します。

Zenity情報ボックスには、基本的なインターネット速度の詳細が表示されます。

(1)詳細: http://www.webupd8.org/2014/02/how-to-test-internet-speed-via-command.html

3
Sadi

「システム負荷インジケータ」を試すことができます。これは、パネルのメモリ、CPU、ハードディスクなどとともにネットワークの使用量と速度を表示するパネルアプリです。

コマンドライン経由でインストールするには

Sudo apt-get install indicator-multiload

それが完了したら、コマンドラインに次を入力して開始します。

indicator-multiload

アプレットは、次回の起動時に自動的に起動します。それが役に立てば幸い。

1
Dhanush