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 |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
06-22-2003, 12:11 AM
|
#1
|
|
Member
Registered: Jun 2003
Location: mason, mi, usa
Distribution: rh9
Posts: 87
Rep:
|
mp3 plugin for xmms not working?
tried to install the mp3 pluging for xmms, i downloaded it on another computer, put it on a cd, then opened the cd on my rh9 box, it showed me everything on the cd, including the mp3 plugin rpm, i double click it, it shows a dialogue box for like one second, then it disappears and nothing happens after that. i try to find it in the plugin list in xmms, it isnt there, tried to activate the mpeg plugin that's already there then tried to play an .mp3, didnt work. what am i doing wrong?
also - i mount a partition that i have mp3's on, using this command:
[root]:mount -t vfat /dev/hdb1 /uniac
it mounts, i can read everything in it, except when i restart the machine it's not there and i have to mount it again to see all the files. how can i have it so it's permantly mounted?
partition is a fat
help is greatly appreciated! thanks in advance
~warheros
Last edited by warheros; 06-22-2003 at 12:18 AM.
|
|
|
|
06-22-2003, 12:17 AM
|
#2
|
|
Guru
Registered: Jan 2001
Posts: 24,128
Rep: 
|
I'm presuming you installed mpg123 for mp3 support? Check out http://www.xmms.org and follow the links to download and install mpg123 cause Redhat doesn't come preinstalled with it to support mp3's. This is asked all the time by the way, a quick search would have found an answer to this and your mounting problem I explained below.
About the mounting, you have to add it in your /etc/fstab file to mount at boot time.
|
|
|
|
06-22-2003, 12:19 AM
|
#3
|
|
Member
Registered: Jun 2003
Location: mason, mi, usa
Distribution: rh9
Posts: 87
Original Poster
Rep:
|
how do i add it in that file? im new to linux...
|
|
|
|
06-22-2003, 12:22 AM
|
#4
|
|
Guru
Registered: Jan 2001
Posts: 24,128
Rep: 
|
Open the file in your preferred editor of choice and do something like this, adding at end of file:
Code:
/dev/hdb1 /uniac vfat defaults 0 0
That is just the basics you would want to do to get it to mount automatically at bootup.
man fstab for more details.
|
|
|
|
06-22-2003, 12:30 AM
|
#5
|
|
Member
Registered: Jun 2003
Location: mason, mi, usa
Distribution: rh9
Posts: 87
Original Poster
Rep:
|
ok, thanks. what do the two zero's at the end of the line mean?
also...it gives me an error when i try to write to that partition, how can i fix that? i am the only one who uses my computer.
Last edited by warheros; 06-22-2003 at 12:32 AM.
|
|
|
|
06-22-2003, 12:45 AM
|
#6
|
|
Guru
Registered: Jan 2001
Posts: 24,128
Rep: 
|
0's are to check at boot time with fsck, etc.. You don't want to do that since its not a native Linux partition/filesystem.
Change your permissions with the chmod command for your /dev/hdb1 partition..
Example: chmod 775 /dev/hdb1
That would give owner and group read/write/execute access and only Read and Execute for everyone else.
To Change ownership and group ownership.. check out the man pages on these two commands:
chown
chgrp
And get familiar with your /etc/passwd file and /etc/group file as this is where all your users and groups are recognized at..
|
|
|
|
06-22-2003, 12:59 AM
|
#7
|
|
Member
Registered: Jun 2003
Location: mason, mi, usa
Distribution: rh9
Posts: 87
Original Poster
Rep:
|
so...by typing:
Code:
chmod 775 /dev/hdb1
that will give read/write/execute rights to root and...???? who else??? i dont get what 775 means...and when i restart my machine am i going to have to type that again to have those right again?
|
|
|
|
06-22-2003, 01:20 AM
|
#8
|
|
Member
Registered: Jun 2003
Location: mason, mi, usa
Distribution: rh9
Posts: 87
Original Poster
Rep:
|
ok i got it to mount the drives everytime it boots up. thank you.
what does the 775 after 'chmod' mean/do?
|
|
|
|
06-22-2003, 01:49 AM
|
#9
|
|
Member
Registered: Jun 2003
Location: mason, mi, usa
Distribution: rh9
Posts: 87
Original Poster
Rep:
|
booya, mp3 plugin workin' like a charm.
|
|
|
|
06-22-2003, 10:14 AM
|
#10
|
|
Guru
Registered: Jan 2001
Posts: 24,128
Rep: 
|
Quote:
Originally posted by warheros
ok i got it to mount the drives everytime it boots up. thank you.
what does the 775 after 'chmod' mean/do?
|
That is just the numerical value of setting the permissions.
man chmod for more details.
read = 4
write = 2
execute = 1
You have User, Group, and Everyone defined with permissions.
Each number in that 775 is associated with each user level I just stated, User, Group and Everyone or World as some call it.
Basically you add the values up to determine what access you want to give.
Say I want the owner of the file to have full access but no one else has no access, I would do a: chmod 700 <filename>
If I wanted to do the same thing but wanted to add group read access to the file, I would do this: chmod 740
Hope this helps explain a little.
|
|
|
|
06-23-2003, 04:36 AM
|
#11
|
|
Member
Registered: Jun 2003
Location: mason, mi, usa
Distribution: rh9
Posts: 87
Original Poster
Rep:
|
yes! thank you very much.
|
|
|
|
06-29-2003, 05:30 PM
|
#12
|
|
Member
Registered: Jun 2003
Location: mason, mi, usa
Distribution: rh9
Posts: 87
Original Poster
Rep:
|
can linux read directCD
Thanks for the answer. For some reason when Linux is starting up and it says Checking forward / etc/ sstab/ it says Failed.
I didn't do anything to make it do that. It just started randomly. I checked that file and the cdrom is listed correctly.
From the command line If I try to mount anything from froward/dev/cdrom1, it says: "special device does not exist."
Any ideas?
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 05:18 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|