tips_and_tricks
This is an old revision of the document!
How to delete spaces from file names on Unix systems using Shell
for f in *; do mv "$f" `echo $f | tr ' ' '_'`; done
How to get your IP addresses on Unix systems
ifconfig | awk '/inet/'
And on Microsoft Windows
ipconfig
If you need to know your public IP address, please visit ifconfig.bsd.am
If your internet connection is slow at the office, do the following tests:
- Copy a large file (more than 100MB) from one of the local servers to you. If the copy speed is low, then there’s an issue with the WiFi. Try reconnecting, it might help.
- If the copy speed is slow, do a speed test using Speedtest.net. If the speed is high (more than 250Mbps) then there are no issues connecting to Armenian networks.
- Try doing a speed test using https://librespeed.org/ , make sure you use a Western European server such as Amsterdam or Frankfurt, if the speed is low, then there’s an issue at IIAP.
tips_and_tricks.1741346455.txt.gz · Last modified: by 37.26.174.181
