LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 01-04-2009, 06:35 PM   #1
hatebreeder666
LQ Newbie
 
Registered: Dec 2008
Posts: 17

Rep: Reputation: 0
how to install amsn or something like windows live messenger


how i install amsn ...or something like windows live messenger/?
for installing amsn requires a tlc or something like that i dont remember excactly, and i donw know how to install it ,linux already have pidgin but its not like msn so i cant use it very easly,so if u have any suggestions....or a way to install amsn if its good enough ofc,tell me thx !
 
Old 01-04-2009, 06:41 PM   #2
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Rep: Reputation: 65
Quote:
Originally Posted by hatebreeder666 View Post
how i install amsn ...or something like windows live messenger/?
for installing amsn requires a tlc or something like that i dont remember excactly, and i donw know how to install it ,linux already have pidgin but its not like msn so i cant use it very easly,so if u have any suggestions....or a way to install amsn if its good enough ofc,tell me thx !
You will need to give us more info mate:

- Distribution you are using. Very important, because it is very easy to install on Debian, Ubuntu, Gentoo and Fedora.

- Exactly error message your are getting and explain what you are trying to do as well (commands you are running, which package you downloaded, etc).
 
Old 01-04-2009, 06:48 PM   #3
hatebreeder666
LQ Newbie
 
Registered: Dec 2008
Posts: 17

Original Poster
Rep: Reputation: 0
oh yes ofc! i downloaded tlc latest version 8.6 i think, i am using ubuntu latest version as well and i didnt use any commands or anything like that,i am new at linux and i dont know much stuff ....aldo i dont know how to install tlc becuase its not .package ...and it dont has any like that inside the .zip file ...only has too much files for windows,mac and linux, and too many "read me"and i am a kind of confused :S

Last edited by hatebreeder666; 01-04-2009 at 06:51 PM.
 
Old 01-04-2009, 07:29 PM   #4
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Rep: Reputation: 65
Quote:
Originally Posted by hatebreeder666 View Post
oh yes ofc! i downloaded tlc latest version 8.6 i think, i am using ubuntu latest version as well and i didnt use any commands or anything like that,i am new at linux and i dont know much stuff ....aldo i dont know how to install tlc becuase its not .package ...and it dont has any like that inside the .zip file ...only has too much files for windows,mac and linux, and too many "read me"and i am a kind of confused :S
Ok, cool. Well, since you are new, it is better to stick with Ubuntu's package manager instead (in fact, you should always stick with it ).

You can find it at System > Administration > Synaptic

You can simply do a search there and easily install thousands of packages. If you search for aMSN, you will certainly find it there.

A faster way to install aMSN, however, is by running the following commands on a terminal (terminal is found at Applications > Accessories > Terminal. Copy and paste the following, clicking on enter after every line:

sudo apt-get update
sudo apt-get install amsn


You should now have aMSN installed, found at Applications > Internet > aMSN. Alternatively, you can type "amsn" on a terminal.

Usually when installing applications through apt-get/synaptic, you may end up with a slightly older version than you otherwise could when downloading from the net. But that is almost never a disadvantage in my honest opinion.

Good luck!
 
Old 01-04-2009, 07:33 PM   #5
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Rep: Reputation: 65
Oh and here is a link you may want to bookmark:

http://ubuntuguide.org/wiki/Ubuntu:Intrepid

It's an amazing guide written specifically for Ubuntu which will certainly help you out a lot on your journey

Regards!
 
Old 01-04-2009, 07:48 PM   #6
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Rep: Reputation: 65
Oh my, I just installed aMSN too. I hated the default look. It does not fit on Ubuntu at all. So here is a bonus reply if you wish to make aMSN to look less ugly, by install a Human skin

- Open a terminal (Applications > Accessories > Terminal)
- Copy and paste the following:
Code:
cd ~
mkdir temp
cd temp
wget http://www.amsn-project.net/getURL.php?id=13
unzip Ubuntu-Human-0.95.zip 
cp Ubuntu\ \(Human\)/ ~.amsn/skins/
So as a little intro to the command line, what those things do is:

mkdir will create a new directory, here called temp;
cd will change the directory to temp. Now we are inside temp folder;
wget will download a zip file, the skin, directly from source forge
unzip will unpack the file
cp will copy the Human folder to your AMSN skin folder, located at your "home". Notice that the folder starts with a ".". In Linux, those are hidden folders/files and you will find several of those on your /home folder. Most programs store info, especially settings, in those files.

I know you didn't ask for any of this, I just felt like writing a bit before going to bed

Regards!
 
Old 01-04-2009, 09:20 PM   #7
mike10
Member
 
Registered: Aug 2005
Distribution: Debian amd64 with 32bit libs and Debian 32 bit laptop
Posts: 119

Rep: Reputation: 16
just thought I would add that
Code:
cd ~
will take you to your home dir
Code:
 echo $HOME
==
I like unzip -v
 
Old 03-12-2009, 03:04 PM   #8
Varie
LQ Newbie
 
Registered: Mar 2009
Posts: 2

Rep: Reputation: Disabled
Smile cool

Quote:
Originally Posted by Mega Man X View Post
Ok, cool. Well, since you are new, it is better to stick with Ubuntu's package manager instead (in fact, you should always stick with it ).

You can find it at System > Administration > Synaptic

You can simply do a search there and easily install thousands of packages. If you search for aMSN, you will certainly find it there.

A faster way to install aMSN, however, is by running the following commands on a terminal (terminal is found at Applications > Accessories > Terminal. Copy and paste the following, clicking on enter after every line:

sudo apt-get update
sudo apt-get install amsn


You should now have aMSN installed, found at Applications > Internet > aMSN. Alternatively, you can type "amsn" on a terminal.

Usually when installing applications through apt-get/synaptic, you may end up with a slightly older version than you otherwise could when downloading from the net. But that is almost never a disadvantage in my honest opinion.

Good luck!
that was really helpful, thank you
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Can Ekiga and Windows Live Messenger call each other? gimmee Fedora 3 03-21-2009 08:51 AM
Windows Live Messenger - can this be used on Linux newbie01 Linux - Newbie 1 10-27-2008 04:32 PM
Windows live messenger shared folders psyghost Linux - Software 1 07-18-2008 02:16 AM
proble when i install amsn messenger traivietnam Linux - Software 2 08-01-2004 11:49 PM
How To Install TCL? (For amsn messenger) Nukem Linux - Software 1 12-05-2003 09:21 PM

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

All times are GMT -5. The time now is 05:46 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