gnome-terminal: how to install .tgz softwares

Asked by abmaheswara

i wrote in terminal command sudo apt-get install Plone-3.3.5-UnifiedInstaller.tgz . But i get error i.e
                                          E: Couldn't find package Plone-3.3.5-UnifiedInstaller.tgz
what is the problem?
What is the use of .tgz packages?
How to install this packages?
.tgz software is a package or not?
                                                          Please send me information to "<email address hidden>"

Question information

Language:
English Edit question
Status:
Answered
For:
Ubuntu gnome-terminal Edit question
Assignee:
No assignee Edit question
Last query:
Last reply:
Revision history for this message
abmaheswara (r092361) said :
#1

i recieved no answer

On 7/23/10, abmaheswara <email address hidden> wrote:
> New question #118680 on Ubuntu:
> https://answers.launchpad.net/ubuntu/+question/118680
>
> i wrote in terminal command sudo apt-get install
> Plone-3.3.5-UnifiedInstaller.tgz . But i get error i.e
> E: Couldn't find package
> Plone-3.3.5-UnifiedInstaller.tgz
> what is the problem?
> What is the use of .tgz packages?
> How to install this packages?
> .tgz software is a package or not?
> Please send me
> information to "<email address hidden>"
>
> --
> You received this question notification because you are a direct
> subscriber of the question.
>

Revision history for this message
inashdeen (inashdeen) said :
#2

couldn't find package could probbably means to thing;
1) your software is moved from the site
2) you havent update your terminal.
so try this first:
sudo apt-get update

now, .tgz is another compressed format of file, similar to .rar,.exe,.msi,.tar.bz, bla...bla...
it is a common installation file for linux.
d best way to install things in ubuntu is using .deb or ubuntu software center.

i am not sure is this th eplone u want, but plone exist in ubuntu software center ( type "plone")

or, since the .deb package does not exist, get the latest .tgz version ( version 4.0) or previous from https://launchpad.net/plone/+download

then, install alien, ( a software to install .tgz) by using:

sudo apt-get install alien
sudo apt-get update

next, install plone:

first, rename plone to plone, it is easier, right??
advisable, put on ur desktop,ow terminal to desktop

open terminal, show terminal to go to desktop by typing

cd ~/Desktop

then type

sudo alien -i plone.tgz

in many case, this works

Revision history for this message
abmaheswara (r092361) said :
#3

thank you verymuch Sir

On 7/23/10, inashdeen <email address hidden> wrote:
> Your question #118680 on Ubuntu changed:
> https://answers.launchpad.net/ubuntu/+question/118680
>
> Status: Open => Answered
>
> inashdeen proposed the following answer:
> couldn't find package could probbably means to thing;
> 1) your software is moved from the site
> 2) you havent update your terminal.
> so try this first:
> sudo apt-get update
>
> now, .tgz is another compressed format of file, similar to
> .rar,.exe,.msi,.tar.bz, bla...bla...
> it is a common installation file for linux.
> d best way to install things in ubuntu is using .deb or ubuntu software
> center.
>
> i am not sure is this th eplone u want, but plone exist in ubuntu
> software center ( type "plone")
>
> or, since the .deb package does not exist, get the latest .tgz version (
> version 4.0) or previous from https://launchpad.net/plone/+download
>
> then, install alien, ( a software to install .tgz) by using:
>
> sudo apt-get install alien
> sudo apt-get update
>
>
> next, install plone:
>
> first, rename plone to plone, it is easier, right??
> advisable, put on ur desktop,ow terminal to desktop
>
> open terminal, show terminal to go to desktop by typing
>
> cd ~/Desktop
>
> then type
>
> sudo alien -i plone.tgz
>
>
> in many case, this works
>
> --
> If this answers your question, please go to the following page to let us
> know that it is solved:
> https://answers.launchpad.net/ubuntu/+question/118680/+confirm?answer_id=1
>
> If you still need help, you can reply to this email or go to the
> following page to enter your feedback:
> https://answers.launchpad.net/ubuntu/+question/118680
>
> You received this question notification because you are a direct
> subscriber of the question.
>

Revision history for this message
actionparsnip (andrew-woodhead666) said :
#4

The location the terminal is in is VERY important. If you run:

pwd

You will see where you are in the folder tree. The first folder you start in is $HOME or /home/$USER, If you (for example) downloaded the file to the Downloads folder then you will need to run:

cd Downloads

and so on, it depends where you downloaded the file to and I have no way of knowing that so you have to be the smart one here.

You do NOT install tar.gz files with apt-get, you don't even install deb files with apt-get, apt-get is told to install a package and it will be downloaded from the web. a tar.gz file is a compressed archive and is extractable using the right click menu in nautilus, if you want to use command line you can use:

tar zxvf Plone-3.3.5-UnifiedInstaller.tgz

and it will extract (rember Linux is VERY case sensitive so the capital P must be in the filename as Plone-3.3.5-UnifiedInstaller.tgz is not the same as plone-3.3.5-UnifiedInstaller.tgz

You can then manipulate the files as they are supposed to be. I have no idea what is in the archive so again, you must be the intelligent one here.

Can you help with this problem?

Provide an answer of your own, or ask abmaheswara for more information if necessary.

To post a message you must log in.