PDA

View Full Version : [ubuntu] New to ubutnu. (noob please excuse..)



revenge2
July 7th, 2008, 11:38 AM
Hey guys ive only just started using ubuntu even though i made an account here awhile back. But anyway i got the internet up and running and now i want to know how to install applications.

what different file formats are there and what are the ways of installing.

And i want first of all install these two applications
Skype and Vlc.
I got the skype .deb file and i tried installing it however it started downloading some stuff extremely slowly and i had to close it.

And for vlc i have no idea.

So um any help is much appreciated
-thanks:)

lisati
July 7th, 2008, 11:43 AM
When I've installed skype on Ubuntu, it usually likes to download some extra files that it needs when I've opened the .deb file to install it. If you have a slow connection (e.g. dial-up) you might need to exercise some patience. Frustrating, isn't it?

As for VLC, I haven't used it so can't comment.

deNoobius
July 7th, 2008, 11:52 AM
VLC is in the repositories and can be installed via synaptic.

To make sure all the repositories are enabled, go to System/Administration/Software sources and make sure they are all checked.

Then go to System/Administration/Synaptic Package Manager and search for VLC.

revenge2
July 7th, 2008, 12:10 PM
Hello there, i got skype working, the files were downloaded.
And what are repositories and how do i use them?

-thanks

deNoobius
July 7th, 2008, 12:14 PM
The repositories are where Linux software packages are made available. Synaptic package manager automatically searches the repositories--just follow my previous instructions.

satanic-yobbo
July 7th, 2008, 12:21 PM
this link will help you install almost everything you need to make ubuntu run most programs http://ubuntuforums.org/showthread.php?t=766683 it is a pretty thorough how to

gunashekar
July 7th, 2008, 12:38 PM
Re: New to ubutnu. (noob please excuse..).........So um any help is much appreciated
-thanks:)

Sad to see that new users have to feel apologetic while asking for help on Ubuntu forums .

satanic-yobbo
July 7th, 2008, 12:50 PM
this is true i agree it is sad when they only want to do that which we all had to do at some stage and ask for help to learn something new

Sef
July 7th, 2008, 03:37 PM
what different file formats are there and what are the ways of installing.

You install them generally upon installing the OS.

As for types, see Wikipedia's File Systems (http://en.wikipedia.org/wiki/Comparison_of_file_systems).

revenge2
July 8th, 2008, 12:26 AM
Hey guys well im not completely sure of what i did, but i didnt use the "synpatics packager" because i didnt know what i was looking at.

Anyway i entered the following in the terminal


% sudo apt-get update
% sudo apt-get install vlc vlc-plugin-esd mozilla-plugin-vlc


EDIT:
Ahh voila its under "sound and video"- one question though.. how do i delete it when i need to and how does it know where to install it self?

Do all programs install on to a specific place instead of us specifying it?

EDIT 2:
Are there any equivalents to msn messenger other than pidgin?

Partyboi2
July 8th, 2008, 02:40 AM
To uninstall vlc vlc-plugin-esd mozilla-plugin-vlc you could either use add/remove or synaptic package manager (System>Admin>Synaptic Package Manager) or from a terminal

sudo apt-get remove vlc vlc-plugin-esd mozilla-plugin-vlc if you wanted to remove all the config files as well you would use the --purge option

sudo apt-get remove --purge vlc vlc-plugin-esd mozilla-plugin-vlcHere is a useful page (http://monkeyblog.org/ubuntu/installing/) of info on installing programs.

Are there any equivalents to msn messenger other than pidgin? amsn is another program you could use.
Here (http://www.linuxrsp.ru/win-lin-soft/table-eng.html) is a table of equivalents that could be of use

revenge2
July 8th, 2008, 09:55 AM
Cheers partyboi, i downloaded the .tz file, and extracted it. But i dont know how to install it, how do i do this?

hyper_ch
July 8th, 2008, 09:58 AM
it is adviced to use a descriptive topic title, that means a topic title that gives some clue about the content in the thread itself...

a generic topic title like "noob here" or "need help" does not help at all. As you may have notices, just about everyone posting in here has some kind of a problem or issue or question ;)

Partyboi2
July 8th, 2008, 01:43 PM
Cheers partyboi, i downloaded the .tz file, and extracted it. But i dont know how to install it, how do i do this?
What are you trying to install?
If its amsn then you can go to Add/remove (Applications>Add/remove) and search for it and install it or from the terminal.

sudo apt-get install amsnIf you cannot find the program you are wanting in the ubuntu repository by searching through add/remove or synaptic and need to compile it from source you will need to enter the extracted directory and read the readme or install file to see how to install. Normally to install from source you would cd (change directory) into the extracted directory and type

./configure (installing any missing dependencies that get listed) then

make
if no errors then

sudo make install