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 |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
|
07-19-2012, 10:29 PM
|
#1
|
LQ Newbie
Registered: Jul 2012
Posts: 12
Rep: 
|
Software installation on Debian squeeze
Hi to everyone.
I'm new in linux. I already installed debian in my PC. I downloaded thunderbird(email client) linux version from mozilla.org and winrar but to installed it. The file is compressed in tgz what should I do after I extracted. I'm stock to this. Please help with this matter.
Thank you in advance.
|
|
|
07-19-2012, 10:44 PM
|
#2
|
Senior Member
Registered: Feb 2009
Posts: 4,667
|
Welcome to the forums and to Linux!
For political/ideological reasons, Debian has their own rebranded (but otherwise identical) versions of the Mozilla applications. Firefox is called Iceweasel, and Thunderbird is called Icedove. You can easily install it with (as root):
Code:
apt-get update
apt-get install icedove
Typically you do not need to download and install individual apps in Debian (like you would in Windows) because Debian has easy access to an enormous "repository" of stable, tested, and trusted software. 
Last edited by snowday; 07-19-2012 at 10:45 PM.
|
|
|
07-19-2012, 10:49 PM
|
#3
|
LQ Guru
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,726
|
Hi,
you should generally use your built in package manager to install software from the repositories. Debian has a rebranded version of thunderbird called iceowl. Either search for iceowl in your graphical package manager, or as root in a terminal run:
Code:
apt-get install iceowl
Please read up on package management. The new Debian handbook is pretty good.
http://debian-handbook.info/browse/stable/
Have a look at the package management section:
http://debian-handbook.info/browse/s...ng-system.html
Cheers,
Evo2.
|
|
|
07-19-2012, 10:53 PM
|
#4
|
LQ Newbie
Registered: Jul 2012
Posts: 12
Original Poster
Rep: 
|
Where can I see the list of repository?
|
|
|
07-19-2012, 10:57 PM
|
#5
|
LQ Guru
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,726
|
Opps, as snowpine says icedove is the package you should install.
Cheers,
Evo2.
|
|
|
07-19-2012, 11:01 PM
|
#6
|
LQ Newbie
Registered: Jul 2012
Posts: 12
Original Poster
Rep: 
|
In case the software you need is not in the repository and you need to download it. What is the procedure for installing the software?
|
|
|
07-20-2012, 12:12 AM
|
#7
|
LQ Guru
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,726
|
Hi,
Quote:
Originally Posted by heirkeyso
In case the software you need is not in the repository and you need to download it. What is the procedure for installing the software?
|
It depends on what form it is in. Typically you decompress and unpack it. You then may need to configure and compile it before finally installing it. For the exact procedure you should read the installation instructions that come with the software.
Evo2.
|
|
|
07-20-2012, 12:13 AM
|
#8
|
LQ Guru
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,726
|
Hi,
Quote:
Originally Posted by heirkeyso
Where can I see the list of repository?
|
Well you could browse http://packages.debian.org but it is probably better to use your package manager.
Evo2.
|
|
|
07-20-2012, 12:35 AM
|
#9
|
LQ Newbie
Registered: Jul 2012
Posts: 12
Original Poster
Rep: 
|
Please correct me if I'm wrong. The package manager is a software that manage the softwares in linux. So, this where you can search for the software you need for a certain task and not the software that install application you are downloaded from internet.
|
|
|
07-20-2012, 01:11 AM
|
#10
|
Member
Registered: Feb 2009
Posts: 347
Rep:
|
Yes you are right. Package manager helps you download and install packages that are available for your distribution.
If you download some package yourself from the internet, then you can not use package manager to install it, but you can do the installation manually.
|
|
|
07-20-2012, 02:06 AM
|
#11
|
LQ Guru
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,726
|
Quote:
Originally Posted by heirkeyso
Please correct me if I'm wrong. The package manager is a software that manage the softwares in linux. So, this where you can search for the software you need for a certain task and not the software that install application you are downloaded from internet.
|
Correct! Please see the 2nd link in post #3 above for details about package managers in Debian.
Cheers,
Evo2.
|
|
|
07-20-2012, 02:23 AM
|
#12
|
LQ Newbie
Registered: Jul 2012
Posts: 12
Original Poster
Rep: 
|
One last question. Is the package manager of linux is internet dependent?
|
|
|
07-20-2012, 02:39 AM
|
#13
|
LQ Guru
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,726
|
Hi,
Quote:
Originally Posted by heirkeyso
One last question. Is the package manager of linux is internet dependent?
|
just to clarify, there is no "package manager of linux". There are a number of different package managers used by a number of different GNU/Linux distributions.
Most packages managers primarily use the internet to download package files, however some of them can also fetch package files from CDs/DVDs or even a filesystem on your computer.
HTH,
Evo2.
|
|
|
07-20-2012, 06:46 AM
|
#14
|
Senior Member
Registered: Feb 2009
Posts: 4,667
|
Your question would take too long for me to type the answer  but I recommend you read the excellent documentation on the Debian website (such as the above-mentioned Handbook), or even a basic article like this one on wikipedia will begin to answer your question.
Did my suggested command apt-get install icedove work? Are you now successfully using icedove? It is a friendly thing to let people know if their advice has been helpful. 
|
|
|
07-20-2012, 07:25 AM
|
#15
|
LQ 5k Club
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,311
Rep: 
|
You can use Synaptic, the GUI package manager, to browse through whatever software's available and install what you want.
|
|
|
All times are GMT -5. The time now is 04:23 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|