How to install a Cisco valet connector without internet?
I installed Ubuntu to try it out. My computer doesn’t have internal internet card.
So I would like to use Cisco valet connector.
My question is how do I install it ?
- I can't open an exe file,
- I can't install wine because there is no internet.
Any other way?
81 Answer
To install Wine once you get an internet connection, copy and paste the following commands:
sudo su
Then type:
add-apt-repository ppa:ubuntu-wine/ppa --y && apt-get update && apt-get install wine1.7 wine wine-gecko2.24 gnome-exe-thumbnailer --y
That does everything automatically. Just paste the first command in, enter your password, and enter the big command. The big command adds a PPA that will keep Wine up to date with the latest development version.
2