Bunch o' Linux Questions

Solaris, RedHat, FreeBSD and the like
Post Reply
Message
Author
Miller88
Junior Member
Junior Member
Posts: 259
Joined: Tue Oct 24, 2006 1:30 pm
Location: Morrisville NY

Bunch o' Linux Questions

#1 Post by Miller88 » Sat Feb 03, 2007 12:50 pm

Let me start off with an introduction that no one will want to read. For my intro to linux class, we're playing with CentOS linux. I decided to install Ubuntu on my desktop and get it to dual boot - after having to reinstall XP (thanks a lot partition magic) and ubuntu, I got it working pretty well.

How do I install any sort of program that will play mp3s?

Are there any programs that play avi, wmv?

And I installed a program called automatix and I can't uninstall it ... how do I uninstall it?
Past: T60 , XPS M1330, Inspiron 1420 & 1520, Presario V2010US
Present: T61 , Acer D150, T61 7663 (Parents)
Screen swapped between the 7661 and 7663

Temetka
Senior ThinkPadder
Senior ThinkPadder
Posts: 2790
Joined: Fri Sep 30, 2005 3:27 am
Location: Glendora, CA

#2 Post by Temetka » Sat Feb 03, 2007 1:53 pm

There should be a mp3 player installed. If not you can download xmms or Amarok. Both work fine. As far as movie playing, I have given up on finding a decent player. There's just too many codecs and not a lot of players come with more than a standard set of divx and avi built in. I have yet to get linux to play anything compressed with Sorensen (quicktime) or mp4 files. You said you have Ubuntu installed, don't they have a forum or a FAQ for this sort of thing? I don't run any mainline distro's. I use Whax which can be found at remote-exploit.org. It's mainly for security and PEN testing, comes with KDE and Fluxbox. Very minimal on the set of apps installed as it's main reason for existance is network security and not multimedia.

I wish you luck.
New:
Thinkpad T430s 8GB DDR3, 1600x900, 128GB + 250GB SSD's, etc.
Old:
E6520, Precision M4400, D630, Latitude E6520
ThinkPad Tablet 16GB 1838-22U
IBM Thinkpad X61T, T61, T43, X41T, T60, T41P, T42, T410, X301

Miller88
Junior Member
Junior Member
Posts: 259
Joined: Tue Oct 24, 2006 1:30 pm
Location: Morrisville NY

#3 Post by Miller88 » Sat Feb 03, 2007 4:37 pm

I got three programs working - Juk, Rythmbox and Xine ... but none of them will browse networks.
Past: T60 , XPS M1330, Inspiron 1420 & 1520, Presario V2010US
Present: T61 , Acer D150, T61 7663 (Parents)
Screen swapped between the 7661 and 7663

Volker
Junior Member
Junior Member
Posts: 482
Joined: Fri Oct 01, 2004 10:21 am
Location: Dublin, Ireland
Contact:

#4 Post by Volker » Sat Feb 03, 2007 6:07 pm

Remove a rpm package: rpm -e packagename
List all packages: rpm -qa
To play audio and video, install mplayer. Its not the prettiest solution, but the one that can play everything.

Jedacite
Freshman Member
Posts: 70
Joined: Thu Nov 16, 2006 2:24 am
Location: Vancouver BC, Canada

Re: Bunch o' Linux Questions

#5 Post by Jedacite » Sun Feb 04, 2007 4:32 am

Miller88 wrote: How do I install any sort of program that will play mp3s?
Myself, I setup my machine to use both xmms and gstreamer. At the very least, I would suggest that you setup gstreamer, as it fix more than just mp3s (see the links at the bottom of the post.)

For playing just an mp3 I prefer to use XMMS.

For playing music, using your music more as a music library I prefer to use RhythmBox.
Miller88 wrote: Are there any programs that play avi, wmv?
You can use Totem if you have the correct codecs and such installed (its used by default) but I prefer to generally use either xine or mplayer myself.

Xine may be installed following the instructions in a link at the bottom of my post. Mplayer should be able to be installed simply with the command "sudo apt-get install mplayer"
Miller88 wrote: And I installed a program called automatix and I can't uninstall it ... how do I uninstall it?
If you installed it via apt, you should be able to simply do "sudo apt-get remove automatix".

If you installed it via a .deb you will have to use dpkg.

If you come across problems, I would make sure that you have the correct repositories enabled. There are universe, and multiverse repositories that are not enabled by default and are not for everyone. Certain codecs and applications will require those repositories to be enabled.

In a later post you mention that neither RhythmBox or Xine will browse networks. If you are referring to Windows File Sharing (a.k.a smb) then you will need to install smbfs "sudo apt-get install smbfs". Myself, I have my Windows Shares automatically get mounted at bootup and browse them with my apps as if they are part of my filesystem.

LINKS:
Installing XMMS: http://ubuntuguide.org/wiki/Ubuntu_Edgy ... .28XMMS.29
Installing gstreamer (avi, mp3, ...): http://ubuntuguide.org/wiki/Ubuntu_Edgy ... dia_Codecs
Installing Xine: http://ubuntuguide.org/wiki/Ubuntu_Edgy ... xine-ui.29

azimi3
Posts: 34
Joined: Tue Sep 05, 2006 5:41 pm
Location: Arizona

#6 Post by azimi3 » Sun Feb 04, 2007 10:50 am

Volker wrote:Remove a rpm package: rpm -e packagename
List all packages: rpm -qa
To play audio and video, install mplayer. Its not the prettiest solution, but the one that can play everything.
Since he's using Ubuntu he won't be dealing with rpm packages but rather deb.

An easy way to get audio codecs and what not initially setup is to use an app called Easyubuntu: http://easyubuntu.freecontrib.org/

Go to Download, follow the steps it gives. Run the command it tells you to get the GPG key then download and install EasyUbuntu using the link. Once the program is installed go to Applications>>System Tools>>Easy Ubuntu. Just check the boxes for what you want and you should be good to go.

The easiest way to install programs in ubuntu is to use the package manager. This is the last selection in the Applications menu. In this app you just search for the app you want, put a checkbox next to it and hit apply. If you want to uninstall an app just uncheck it and hit apply. Remember there are only a few repositories by default and you can search the web for additional repositories for other specific apps. 75% of the time any program I'm looking for will be in the repos but the drawback is it might not always be the latest version.

Volker
Junior Member
Junior Member
Posts: 482
Joined: Fri Oct 01, 2004 10:21 am
Location: Dublin, Ireland
Contact:

#7 Post by Volker » Sun Feb 04, 2007 11:01 am

azimi3 wrote:Since he's using Ubuntu he won't be dealing with rpm packages but rather deb.
You are right... I stopped reading when he said "CentOS" :D

azimi3
Posts: 34
Joined: Tue Sep 05, 2006 5:41 pm
Location: Arizona

#8 Post by azimi3 » Sun Feb 04, 2007 11:03 am

Also, to get WMV files working run the following command in your terminal (assuming you are on a thinkpads forum and you use a computer with i386 architecture):

wget -c http://www.debian-multimedia.org/pool/m ... 0_i386.deb
sudo dpkg -i w32codecs_20061022-0.0_i386.deb

The Spirit of X21
Senior Member
Senior Member
Posts: 746
Joined: Fri Apr 28, 2006 4:21 pm
Location: Providence, RI, USA
Contact:

#9 Post by The Spirit of X21 » Mon Feb 05, 2007 4:50 am

I've found that installing automatix with Ubuntu solves just about all of my multimedia issues - including playing DVDs!
X61 - 3GB, 80GB SSD

al7kz
Freshman Member
Posts: 117
Joined: Thu Dec 15, 2005 5:06 pm
Location: Juneau, Alaska

#10 Post by al7kz » Wed Feb 07, 2007 4:42 pm


smugiri
Senior Member
Senior Member
Posts: 774
Joined: Tue Nov 23, 2004 4:29 pm
Location: Mississauga, ON
Contact:

#11 Post by smugiri » Wed Feb 07, 2007 11:04 pm

VLC will play a ton of media formats.
Steve

Post Reply
  • Similar Topics
    Replies
    Views
    Last post

Return to “Linux Questions”

Who is online

Users browsing this forum: No registered users and 1 guest