0

At my home I don't get very fast internet. So I want to use the softwares installed in my friend's Ubuntu 15.04 on my Ubuntu 15.04 Laptop. Is there some way I could do this, or some other possible way I could achieve my objective?

Most of the computers around me are Windows systems. Can I download full software in windows then install it in ubuntu?

Grammargeek
  • 2,762
Gourav Kumar
  • 13
  • 3
  • 10

2 Answers2

0

Yes you can download it on your friend's Laptop with apt-get download (NAMEOFPACKAGEHERE) and you will get the deb file used to install the package which can be installed with sudo dpkg -i (NAMEOFPACKAGEHERE).deb on your computer.

As for downloading on Windows computers you can browse the APT repo.

Another option is checking in /var/cache/apt/archives/ for the deb file for the program you want to install.

Also you could use the APT repo in a (MUCH) prettier format

Grammargeek
  • 2,762
0

I would make sure you have the names right of all the programs you want to install and ensure they are in the repositories. Then open a terminal and list off the programs you wish to install as seen below. You could also mark all programs you wish to install in Synaptic Package Manager. Then I would set your computer to not sleep or hibernate, and simply start the process when you go to bed one night, and hopefully it would be done by the time you wake up the next morning. In terminal, if the process gets interrupted due to internet connectivity, you can just run the same command again, and it picks up where it left off.

sudo apt-get install program1 program2 program3 program4 -y
jbrock
  • 3,307