By Geetu R. Vaswani, on September 11th, 2012% To determine all services connecting to the internet, enter the command below in a terminal window: $ sudo lsof -n -P -i +c 15 <enter>
You can also find similar information using the command below: $ sudo netstat -anp | grep e tcp e udp <enter>
. . . → Read More: List of all services connected to internet in Linux
By Geetu R. Vaswani, on July 11th, 2012% You have a wireless router at home. There are occasions when you have guests at your home, and they require to access the internet over your Wireless Network. Unfortunately, the default firmware on the Cisco / Linksys WRT54G2 wireless router does not allow you to have a separate WLAN access password for your guests.
In . . . → Read More: Multiple Wireless LANs WRT54G2 – Allow guests to use your WLAN
By Geetu R. Vaswani, on May 6th, 2012% If you are new to firewalls and want an easy way to build the rules for your devices, you can use Firewall Builder. It can be installed on Linux, Windows and other platforms. You can download it from http://www.fwbuilder.org.
The key feature is an easy to use GUI-based firewall rules system. Firewall Builder can also . . . → Read More: Remove the pain from firewall rules building – Firewall Builder
By Geetu R. Vaswani, on April 9th, 2012% Login as root and type following command to edit the network connections.
# wicd <enter>
You can then setup the wireless LAN after a reboot.
By Geetu R. Vaswani, on March 18th, 2012% To change the host name on Fedora Linux, do the following:
Open a terminal window Login as root Add the host name to /etc/hosts Add the host name to /etc/syconfig/network Reboot your computer
Add the host name to /etc/hosts
# vi /etc/hosts <enter> Add below line to the end of the file 192.168.1.101 . . . → Read More: Change host name in Fedora Linux
By Geetu R. Vaswani, on February 25th, 2012% You can list out open network connections using lsof by logging in as root and using the lsof command as given below: 1. su 2. lsof -i -P -n
This will list out all commands and processes that are connected to the network.
By Geetu R. Vaswani, on August 14th, 2011% Use scp to copy files securely from one linux computer to another over a network. $ scp -r /folder/folder1 user@computer.com:/home/user/folder <enter>
where: /folder/folder1 is the source folder -r is for recursively copy user@computer.com: is the destination computer. This can also be an IP address /home/user/folder is the destination folder.
Once you type above command, you . . . → Read More: Securely copy files to Linux across a network
By Geetu R. Vaswani, on August 7th, 2011% # netstat -tupnl <enter>
This command will show you all the open ports on your system.
By Geetu R. Vaswani, on March 9th, 2011% You can use http://nmap-online.com It is the equivalent of scanning a system or network for open ports from outside of the network you are in.
By Geetu R. Vaswani, on January 14th, 2011% To connect to your computer over your home network or the Internet you can use SSH to securely route your communications to your computer from another device (computer or smart phone).
Pre-requisites:
You have configured SSH on your computer running Linux. You have converted your private key in your ~/.ssh folder to putty required format. . . . → Read More: Connect to your Computer using SSH from a Nokia E63 smart phone
|
|
|