Setting WiFi On UBUNTU via Parallels on MAC

It is sometimes grueling when WIFI donot work after installing UBUNTU via Parallels on MAC.
The following might resolve the Wifi issues.

1. Make Sure the following configuration is set for Network Adapter


2. Login into UBUNTU and open Terminal
3. Execute the following commands:
sudo ifconfig eth0 up
sudo dhclient eth0


4. Open Firefox browser. By default it is set to 'Work Offline'.
5. In the Firefox Menu: Open 'File' and uncheck 'Work Offline'

No comments:

Post a Comment

Python contextlib for Timing Python code

If you've ever found yourself needing to measure the execution time of specific portions of your Python code, the `contextlib` module o...