LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 03-13-2007, 03:56 PM   #1
Meteorswarm
LQ Newbie
 
Registered: Mar 2007
Posts: 4

Rep: Reputation: 0
Question Getting Synaptic to load files not downloaded by itself


I'm brand new to Debian Linux, and I only used my previous version of Linux, SUSE for a few hours before getting fed up for a similar reason as what's occurring now.
I want to install software that isn't provided in repositories (getting them to work is another story entirely), but I can't get Synaptic to load anything. I'm not even sure of what exactly to do with a tar.gz. I uncompress it, but then what? When I go to the "add downloaded packages" section of synaptic, nothing happens once I select the folder that the program I'm trying to install is in.

Please help me get this to work, I'm sure it's just some option I'm missing.
 
Old 03-13-2007, 06:09 PM   #2
hacker supreme
Member
 
Registered: Oct 2006
Location: As far away from my username as possible
Distribution: Gentoo
Posts: 259
Blog Entries: 1

Rep: Reputation: 31
Look for a shell script named something like: 'configure'. Run this from the terminal.
Please note: I can't check this @ the moment, so I may have got it wrong.
 
Old 03-24-2007, 06:55 PM   #3
LanceHaverkamp
LQ Newbie
 
Registered: Jan 2007
Distribution: xubuntu
Posts: 6

Rep: Reputation: 0
You shouldn't generally be using tar.gz files in debian (that's the whole point of debian, it's easier). You should be simply "point & click" installing packages using synaptic or kpackage.
 
Old 03-24-2007, 08:58 PM   #4
Junior Hacker
Senior Member
 
Registered: Jan 2005
Location: North America
Distribution: Debian testing Mandriva Ubuntu
Posts: 2,687

Rep: Reputation: 61
In Debian, you first need to set up repositories, if you did not set up repositories, the only packages that appear in Synaptic are those that are on the CD. Debian repositories have something like 11000 packages or more, so you should be able to install the package you want through Synaptic and not from source. Here is some reading material to get to know how to set up repositories:

http://www.debian.org/doc/manuals/ap...basico.en.html

The sources list can contain all kinds of sources (download mirrors). I have Debian Etch 64bit, here is a copy of my sources.list:

Quote:
###############################
##### From Debian Install #####
###############################
deb cdrom:[Debian GNU/Linux testing _Etch_ - Official Snapshot amd64 DVD Binary-1 20070216-00:44]/ etch contrib main
deb cdrom:[Debian GNU/Linux testing _Etch_ - Official Snapshot amd64 DVD Binary-3 20070216-00:44]/ etch contrib main
deb cdrom:[Debian GNU/Linux testing _Etch_ - Official Snapshot amd64 DVD Binary-2 20070216-00:44]/ etch contrib main

deb http://debian.yorku.ca/debian/ etch main contrib non-free
deb-src http://debian.yorku.ca/debian/ etch main contrib non-free

####################
##### Security #####
####################
deb http://security.debian.org etch/updates main contrib non-free
deb-src http://security.debian.org etch/updates main contrib non-free

##################
##### Kernel #####
##################
deb http://mirrors.kernel.org/debian/ etch main
deb-src http://mirrors.kernel.org/debian/ etch main

######################
##### Multimedia #####
######################
#gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys 1F41B907
#gpg --armor --export 1F41B907 | apt-key add -
deb http://www.debian-multimedia.org/ etch main
deb-src http://www.debian-multimedia.org/ etch main

######################
##### Unofficial #####
######################
#gpg --keyserver subkeys.pgp.net --recv-keys 6823D007
#gpg --armor --export 6823D007 | apt-key add -
deb http://ftp.debian-unofficial.org/debian/ etch main contrib non-free restricted
deb-src http://ftp.debian-unofficial.org/debian/ etch main contrib non-free restricted

##### Kirya #####
#gpg --keyserver wwwkeys.eu.pgp.net --recv-keys FBABB737
#gpg --export -a FBABB737 | apt-key add -
#deb http://packages.kirya.net/debian/ unstable main contrib non-free
#deb-src http://packages.kirya.net/debian/ unstable main contrib non-free
The lines with a hash at the beginning (#) are commented out and not read by apt, if an entry was not commented out and invalid, apt would give an error during the "apt-get update" step that should be performed before every time you go to use synaptic, the first time you do "apt-get update" will take a little time to download repo data, but after that it only downloads changes and goes allot faster. In my apt sources.list are three sections that require one to download a gpg key to verify packages, they are directly under the title and are applied with the two commands that are commented out, for example:

For Multimedia you would copy and paste the gpg key commands into a terminal as root one at a time to get the key installed on your key ring:

Quote:
gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys 1F41B907
gpg --armor --export 1F41B907 | apt-key add -
Once you have the key, apt will not complain about invalid package signatures when installing something. Also, in my sources list are two sources from university of Yorkton Saskatchewan because they are close and fast for me, you would need to set up mirrors closer to you. In the howto above (web link) is a link to all Debian mirrors to choose one close to you.

Last edited by Junior Hacker; 03-24-2007 at 09:04 PM.
 
Old 03-24-2007, 09:19 PM   #5
Junior Hacker
Senior Member
 
Registered: Jan 2005
Location: North America
Distribution: Debian testing Mandriva Ubuntu
Posts: 2,687

Rep: Reputation: 61
In Synaptic, right click on a package you want to install and select "mark for installation", then keep looking for anything else you want to install and do the same for it. At the bottom left is a button called "Status", when you click on it you will find 4 or 5 sections in the left pain, one will be "installed upgradeable", by clicking on it you will get a list of all packages installed that have an update available, right click on any you want to update and select "mark for upgrade". Once you are happy with all selections, such as "install, remove, and update" certain packages, hit "Apply" at the top and apt will make all changes you marked.
 
Old 03-24-2007, 11:29 PM   #6
LanceHaverkamp
LQ Newbie
 
Registered: Jan 2007
Distribution: xubuntu
Posts: 6

Rep: Reputation: 0
Of course the easiest way is to use MEPIS Linux, which uses the Ubuntu pools based on Debian. One CD & everything's pre-configured. Just burn the CD from the free download .iso & reboot. Nothing to configure, the repositories are already setup in Synaptic.
 
  


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
Where can I find the downloads which have been downloaded by synaptic? abhishekp Ubuntu 1 02-09-2006 02:21 PM
Using Synaptic.......but where are the downloaded files stored? Crasherz Linux - Newbie 3 08-26-2005 08:39 AM
Can't install downloaded programs with Synaptic. atko Linux - Software 1 07-06-2004 08:27 AM
installing already downloaded RPMs with Synaptic Grimsdyke Linux - Software 4 09-18-2003 01:11 PM
How to load Downloaded SB Audigy Scripts Hairy Bas Linux - Software 1 06-20-2003 03:06 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:06 AM.

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