I'm quite lost in linux environement. I usually install application using apt-get install and the name of the package.

Here's a quite cool text editor named 'Sublime text 2' and I would like to install it in a Debian distribution. When I download files I get a .tar.bz2 file. I unpack the file with a bz2 command and a tar command. And then I'm blocked. Somebody says to me I have to Make a ./configure and after that a make to compile the sources but the ./configure command doesn't work.

Thanks a lot for help.

link|improve this question

What do you mean by "[the] command doesn't work"? – Oliver Salzburg Feb 20 at 21:15
feedback

2 Answers

up vote 1 down vote accepted

If you want to install it directly from the tar.bz2, unzip it, and run python PackageSetup.py inside the directory.

link|improve this answer
Ok, I choose this one because it answer exactly the question – bAN Feb 21 at 9:20
feedback

An easier way is to add the PPA for this to your sources list. This will keep it automatically updated for you too.

sudo add-apt-repository ppa:webupd8team/sublime-text-2

This will make it so that you can now run sudo apt-get install sublime-text-2 and it will work.

link|improve this answer
cool thanks! But where do you get the PPA adress? – bAN Feb 21 at 6:18
@bAN that is the PPA address – Simon Sheehan Feb 21 at 12:02
yes I see but where did YOU get it? – bAN Feb 21 at 14:47
@bAN I found it on launchpad, the website that hosts all the repositories – Simon Sheehan Feb 21 at 19:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.