LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 06-25-2013, 09:23 PM   #1
paulcall
LQ Newbie
 
Registered: May 2013
Posts: 16

Rep: Reputation: Disabled
Downloading From The Software Manager


Hello Everyone,

Currently Using Linux Mint 14 Cinnamon

When using the software manager the only option available is to "install" programs, does anyone by any chance know if there is a way to actually download the software installer files instead of just installing them?

Thank You All For Your Help
 
Old 06-25-2013, 09:35 PM   #2
Froggy192
LQ Newbie
 
Registered: Jun 2013
Distribution: Windows 8, Mint 15
Posts: 12

Rep: Reputation: 0
I don't believe that it has that functionality. I have Linux Mint 15, and throughout the menus, and there doesn't seem to be an option to download the package without installing. Try using apt-get instead.
 
Old 06-25-2013, 10:31 PM   #3
Firerat
Senior Member
 
Registered: Oct 2008
Distribution: Debian sid
Posts: 2,683

Rep: Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783
As Froggy192 says, apt-get has options to just download and not install

Code:
sudo apt-get install -d <some package>
But this may not do what you expect, it will download but not to your current directory
you need to look in /var/cache/apt/archives/
You will probably find most of what you have installed sitting in that cache

You can change this, check apt-get --help or for the long version man apt-get
both will help you download the packages to where you want.

I'm guessing you want to do this to install to multiple systems without having to re-download?


Another way to achieve this is to use synaptic
select your installs, and then under the file menu --> generate package download script
basically makes a wget script for easy downloading ( run it in the dir you want to download to )
Once downloaded you can use synaptic to Add Downloaded packages.
 
Old 06-26-2013, 04:30 AM   #4
eklavya
Member
 
Registered: Mar 2013
Posts: 636

Rep: Reputation: 142Reputation: 142
Why don't you download deb file of the softwares?
They are installed just like exe file in windows.
You have to double click on the file and they install the software for you.
 
Old 06-26-2013, 04:55 AM   #5
Firerat
Senior Member
 
Registered: Oct 2008
Distribution: Debian sid
Posts: 2,683

Rep: Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783
Quote:
Originally Posted by eklavya View Post
Why don't you download deb file of the softwares?
from where?
Quote:
Originally Posted by eklavya View Post
They are installed just like exe file in windows.
Not quite, a windows exe usually has it's own installer 'built in'
Quote:
Originally Posted by eklavya View Post
You have to double click on the file and they install the software for you.
Assuming it is a simple package, yes
But if the deb has dependencies that are not already installed it will fail.
you have to download all the required debs, and know which order to click them in.

Code:
mkdir /path/to/SomePackages
pushd /path/to/SomePackages
    sudo apt-get -o dir::cache=./ install -d SomePackage
popd
Put on removable media, take to none networked system
Code:
pushd /path/to/removablemedia/SomePackages
    sudo dpkg -i *.deb
popd
No such issue

Same goes for synaptic

Slight issue, if the Networked Box already has a dependency and the None Networked Box doesn't, well dependencies are not met. so back to networked Box

But I'm trying to read what has not been written and guessing why paulcall want to do this.
 
Old 06-26-2013, 08:00 AM   #6
eklavya
Member
 
Registered: Mar 2013
Posts: 636

Rep: Reputation: 142Reputation: 142
Quote:
Originally Posted by Firerat View Post
from where?
Do you know the term google, just search there for deb files. Most softwares has their deb files. You can install them easily.
Quote:
Originally Posted by Firerat View Post
Not quite, a windows exe usually has it's own installer 'built in'
Yes but installing deb files are far easier than source codes. Have you ever tried them before?
Iand I am not saying deb has installer inside, I comparing them as easy to use.
Quote:
Originally Posted by Firerat View Post
But if the deb has dependencies that are not already installed it will fail.
Why you so negative then OP will have dependency problem, If op's system is clean enough, he will not face the dependency problem.
Op said " if there is a way to actually download the software installer files instead of just installing them"

Then what is your way to install the files except deb or synaptic. OP wants to install from the installer, he does not want to use command line.
Read again."instead of just installing them"
 
Old 06-26-2013, 08:31 AM   #7
snowday
Senior Member
 
Registered: Feb 2009
Posts: 4,667

Rep: Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411
Quote:
Originally Posted by paulcall View Post
Hello Everyone,

Currently Using Linux Mint 14 Cinnamon

When using the software manager the only option available is to "install" programs, does anyone by any chance know if there is a way to actually download the software installer files instead of just installing them?

Thank You All For Your Help
How can the software manager install the programs without downloading them? That doesn't make any sense! Look in /var/cache/apt/archive
 
Old 06-26-2013, 08:37 AM   #8
Firerat
Senior Member
 
Registered: Oct 2008
Distribution: Debian sid
Posts: 2,683

Rep: Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783
Quote:
Originally Posted by eklavya View Post
Do you know the term google, just search there for deb files. Most softwares has their deb files. You can install them easily.
Google?
isn't that a bit like altavista?
can you refine your search with a pipe like altavista?
I would really miss that feature
Quote:
Originally Posted by eklavya View Post
Yes but installing deb files are far easier than source codes. Have you ever tried them before?
Iand I am not saying deb has installer inside, I comparing them as easy to use.
Source codes? who mentioned source?
and yes, I have used source code , I have even made some changes to suit my needs

xfree86 was my first, I had to tinker about to get my ATI All in Wonder to work

The second was mdadm, an un- escaped ' in a print made it crash

Quote:
Originally Posted by eklavya View Post
Why you so negative then OP will have dependency problem, If op's system is clean enough, he will not face the dependency problem.
You seem to have missed my point
if somepackage needs xyz and zxy but OP's system is 'clean' and does not have xyz and/or zxy then the install of the single somepackage.deb will fail
Quote:
Originally Posted by eklavya View Post
Op said " if there is a way to actually download the software installer files instead of just installing them"

Then what is your way to install the files except deb or synaptic. OP wants to install from the installer, he does not want to use command line.
Read again."instead of just installing them"
I have only been able to guess why paulcall wants to 'just download' and not install
My best guess was to transfer to a none networked system

I gave two options, one was pure cli, the other and cli/gui hybrid
In my opinion either one is less work than googling around to download debs, which in all honesty never even crossed my mind.

Both of our solutions will work, but depending on the package yours will take longer :P

Anyway, lets wait for feedback from paulcall, hopefully we can find out the why, and take another look at *all* of our options to see which is best suited
 
Old 07-04-2013, 09:03 PM   #9
paulcall
LQ Newbie
 
Registered: May 2013
Posts: 16

Original Poster
Rep: Reputation: Disabled
Hey Guys,

Thank you for all of your responses, I had the same idea that the software manager must download the file first and then install, I am still new to the Linux file system so I was unable to find the location but I believe snowpine has found it.

Unfortunately I am still new to Linux in general and I am not yet familiar of commands to use in the terminal.

To settle some other issues brought up in this thread....
I like to have the actual files
Reasons....
- this way if you need to setup your computer again you can just install all of the programs from a folder rather than searching for everything again.
- easier than having to remember all the programs installed from the software manager
- You can install and setup the programs without an internet connection
- saves time from having to Google each program individually
- downloading from the software manager you get the exact compatible program needed
-etc.

Thanks Again guys for all your help
 
Old 07-05-2013, 03:45 PM   #10
Firerat
Senior Member
 
Registered: Oct 2008
Distribution: Debian sid
Posts: 2,683

Rep: Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783
In that case you should read
http://community.linuxmint.com/tutorial/view/2

Linux Mint's preferred upgrade Procedure is to do a fresh install of the new version and then restore a backup of user data and installed software list.

The above link gives some detail on 'mintbackup', which should fit your needs
However I'm not certain just how it will behave with /var/cache/apt/archive

If you have space, give it a try in a Virtual Machine ( with network off/unplugged )
 
Old 07-10-2013, 07:52 PM   #11
paulcall
LQ Newbie
 
Registered: May 2013
Posts: 16

Original Poster
Rep: Reputation: Disabled
Thank you for the reply and the link, I will take a look at this.
If I ever decide to try this out on maybe a computer that is not connected to the internet, I am not sure how this would work because there would be nothing to restore from.
This link looks to have a lot of info which helps with my process of learning more about Linux.

Thanks Again
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I run sunclock after downloading it from Synaptic Package Manager? shawnlee34 Linux - Newbie 1 05-20-2009 06:38 PM
download manager doesn't starts downloading !! raju.mopidevi SUSE / openSUSE 6 02-04-2009 05:48 AM
where does fedora package manager saves packages while downloading? ashjas Fedora 4 01-18-2008 09:08 AM
newbie ask about Error adapt manager, i cant install any software from adept manager Bverly Linux - Software 2 10-31-2007 10:12 PM
How do change program Mozilla download manager tries to open downloading files with? jdruin Linux - Software 1 04-18-2004 06:37 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 06:36 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration