Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
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.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
09-01-2002, 06:18 AM
|
#1
|
Member
Registered: May 2002
Location: Australia, Sydney, St.Clair
Distribution: Rh 7.3
Posts: 836
Rep:
|
quick questions for rh 7.3
i just installed rh 7.3 and i just want to know how do you mount windows on it???....i have looked everywhere, i know how to do it on mandrake, but on the latest version of KDE, its not there.....and the other question is i accidently set my kPPP to use wizard all the time and the wizard doesnt have my ISP so i cant setup an account, can i take off this wizard?
|
|
|
09-01-2002, 06:27 AM
|
#2
|
LQ Guru
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613
Rep:
|
KPPP, I have no idea....
Do it from the command line, assuming you have fat32:
mount -t vfat /dev/hdX /mnt/winbloze
replace X with the correct letter and number of the device.
If you want to always be able to mount it, and easier, place this line in your /etc/fstab file:
/dev/hdX /mnt/winbloze vfat default 0 0
If it's NTFS, a search on this site will unvail a plethora of options.
Here's pretty close though:
/dev/hdX /mnt/winbloze ntfs users,user,noauto,ro,umask=022 0 0
Or something like that.
Cool
|
|
|
09-01-2002, 06:42 AM
|
#3
|
Member
Registered: May 2002
Location: Australia, Sydney, St.Clair
Distribution: Rh 7.3
Posts: 836
Original Poster
Rep:
|
thanks masterC!...anyone have ideas about kppp, maybe i got to delete/install again....sounds like windows lol
|
|
|
09-01-2002, 07:05 AM
|
#4
|
LQ Guru
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613
Rep:
|
No problem
|
|
|
09-01-2002, 09:42 AM
|
#5
|
Member
Registered: Aug 2002
Distribution: RedHat / Debian / Ubuntu
Posts: 35
Rep:
|
(Hello MasterC...)
I've no idea about KDE at all, either. But, as a general set of rules to try to fix something:
1) rpm -qc kppp
- Tells you what configuration files are included in the package.
- This can give hints as to what files might be worth editing to remove the Wizard. MasterC will tell you that wizards are evil, and to be fair, he's right if they don't offer an option to get rid of them.
2) rpm -qd kppp
- Tells you what documentation is included with the package.
- Generally this is a good place to start.
3) If all else fails, don't bother reinstallingthe whole system unless that's the only method. Try: rpm -e kppp (Remove the damn thing) and then reinstall the *package*. Default configuration files will probably then be put in place, although probably with an ".rpmnew" suffix.
|
|
|
09-03-2002, 05:02 AM
|
#6
|
Member
Registered: May 2002
Location: Australia, Sydney, St.Clair
Distribution: Rh 7.3
Posts: 836
Original Poster
Rep:
|
i tried mounting windows from the command line exactly how u did it but i get a 'mount point does not exists' or something along those lines, and when i just do /mnt instead of /mnt/windows for the directory, it mounts, BUT, my floppy and cd-rom drives etc. aren't there, it's just all my windows folders in /mnt, anyone can help ?
|
|
|
09-03-2002, 05:29 AM
|
#7
|
Senior Member
Registered: Sep 2002
Location: Philippines
Distribution: Slackware, RHEL&variants, AIX, SuSE
Posts: 1,127
Rep:
|
for kppp, login or su to root and delete this file:
/root/.kde/share/config/kppprc
|
|
|
09-03-2002, 05:33 AM
|
#8
|
Senior Member
Registered: Sep 2002
Location: Philippines
Distribution: Slackware, RHEL&variants, AIX, SuSE
Posts: 1,127
Rep:
|
uhhhmm for the windows mount point - you need to create the mount point first:
mkdir /mnt/windows
Then retry mounting the partition:
mount -t vfat /dev/hdXY /mnt/windows
/dev/XY is your windows partition as seen by fdisk -l
If it is ntfs - you'll need to have the ntfs module first. In RHL 7.3, you need to recompile it. You can try searching google.com/linux for an ntfs.o module and load it using modprobe:
modprobe /tmp/ntfs.o
Then mount it using this:
mount -t ntfs /dev/hdXY /mnt/windows
|
|
|
09-03-2002, 08:26 AM
|
#9
|
LQ Guru
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613
Rep:
|
Quote:
Originally posted by dwd
(Hello MasterC...)
I've no idea about KDE at all, either. But, as a general set of rules to try to fix something:
1) rpm -qc kppp
- Tells you what configuration files are included in the package.
- This can give hints as to what files might be worth editing to remove the Wizard. MasterC will tell you that wizards are evil, and to be fair, he's right if they don't offer an option to get rid of them.
2) rpm -qd kppp
- Tells you what documentation is included with the package.
- Generally this is a good place to start.
3) If all else fails, don't bother reinstallingthe whole system unless that's the only method. Try: rpm -e kppp (Remove the damn thing) and then reinstall the *package*. Default configuration files will probably then be put in place, although probably with an ".rpmnew" suffix.
|
Hi, he he he Not all wizards are evil, but if they don't work, then it's a good idea to know where to go. For example, take Voldemort, he is an EVIL wizard. But say, Albus Dumbledore, well now, then that's a good wizard
As for setting up dial up, I just had no idea, and would probably vote for the wizard as well.
Very good explaination btw, and that goes for almost all of your responses on here, thanks
Cool
|
|
|
09-04-2002, 05:51 AM
|
#10
|
Member
Registered: May 2002
Location: Australia, Sydney, St.Clair
Distribution: Rh 7.3
Posts: 836
Original Poster
Rep:
|
ok people, really thanks for your help but just couple things are not happenin for me, one when i try puttin that line in to mount windows automatically i get a 'no final line' or something like that and yeh i think thats my last problem.....
|
|
|
09-04-2002, 08:10 AM
|
#11
|
LQ Guru
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613
Rep:
|
Quote:
Originally posted by MasterC
KPPP, I have no idea....
Do it from the command line, assuming you have fat32:
mount -t vfat /dev/hdX /mnt/winbloze
replace X with the correct letter and number of the device.
If you want to always be able to mount it, and easier, place this line in your /etc/fstab file:
/dev/hdX /mnt/winbloze vfat default 0 0
If it's NTFS, a search on this site will unvail a plethora of options.
Here's pretty close though:
/dev/hdX /mnt/winbloze ntfs users,user,noauto,ro,umask=022 0 0
Or something like that.
Cool
|
If you are talking to me, I have an edit from the line above. You don't need both 'user' and 'users' entry, either one.
users = the ability for any user to umount a drive mounted by any user.
user = The ability for a user to mount a drive, but only the user who mounted can umount it.
Those definitions are from my skull, so if you see some other differences, by all means, add/correct them.
Ok, so you might want to check and see if you actually have a line after the last entry in fstab. This would probably be the source of your problem. Since I am not on Linux I can't check to see if there should be one or not. Either way, do the opposite. If you have an extra line, backspace up until you are the very end of the last entry, no further lines. If you don't have one, go the last entry, and then press return to create a "blank" line.
If you still have problems, go ahead and post your /etc/fstab file here and someone can probably easily fix it.
Cool
|
|
|
09-05-2002, 03:41 AM
|
#12
|
Member
Registered: May 2002
Location: Australia, Sydney, St.Clair
Distribution: Rh 7.3
Posts: 836
Original Poster
Rep:
|
i'm currently not on linux too, but i have tried the method of allowing an extra line and deleting one, and it has not solved my problem.....i tired moving the windows mount line to another spot eg. in the middle of all the other lines (if that made sense) and the same error returned....
|
|
|
09-07-2002, 02:51 AM
|
#13
|
LQ Guru
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613
Rep:
|
Go ahead and post /etc/fstab then. Let's see if it's something with that.
Cool
|
|
|
All times are GMT -5. The time now is 11:30 PM.
|
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
|
|