i love this OS but will have to go back to a old version of Xandros. Can't seem to get any help from here or any place else. I'm a user not a hacker. I think Linux is the way to go but it's to hard to configure when you don't know you way around and don't understand most of the how to's They aren't written in simlpe english.
Announcement
Collapse
No announcement yet.
love kubuntu but
Collapse
This topic is closed.
X
X
-
Re: love kubuntu but
Sorry for the above post. I was about ready to quit, found I now have network up and running to some degree, don't know what I did.
The only big thing is how to get a partition to mount. I'm afraid to experiment. It seems it wants to mount to a mount point that is use.
- Top
- Bottom
-
Re: love kubuntu but
One of these should help:
http://www.psychocats.net/ubuntu/mountwindows
http://www.psychocats.net/ubuntu/mountlinux.html
- Top
- Bottom
Comment
-
Re: love kubuntu but
Thanks for the info. I get this when I sudo mount -a
scott@scott-laptop:~$ sudo cp /etc/fstab /etc/fstab_backup
scott@scott-laptop:~$ sudo nano /etc/fstab
scott@scott-laptop:~$ sudo mount -a
mount: /dev/sda already mounted or <mount point> busy
mount: /dev/hda5 already mounted or /storage busy
mount: according to mtab, /dev/hda5 is mounted on /media/hda5
scott@scott-laptop:~$
How to do I make another mount point? or what can I do to change this?
Thanks Scott
- Top
- Bottom
Comment
-
Re: love kubuntu but
A 'mount point' is just a directory, for the sake of convention they live in /mnt or /media, as an exampleCode:$ sudo mkdir /mnt/camera
Code:/dev/sda1 /mnt/camera auto noauto,user 0 0
The command you used 'mount -a' means 'mount everything in fstab'. the linesCode:mount: /dev/hda5 already mounted or /storage busy mount: according to mtab, /dev/hda5 is mounted on /media/hda5
Code:mount: /dev/sda already mounted or <mount point> busy
If you are apprehensive about messing with your fstab file (and believe me, at times you should be) without being too sure about what you are doing you can try the same commands out for yourself. TypingCode:sudo mount /dev/sda /mnt/camera/
Code:cat /etc/mtab
- Top
- Bottom
Comment
-
Re: love kubuntu but
Thanks On a Roll: I found one i should have write more carefully. I'm strying to get /dev/hda4 to work not 5. Changed that, things still don't mount. It appears that I have 3 devices trying to mount to the same point. The other 2 are storage devices(usbs). I also found there is a folder in my home folder that is named <mounting> tried to edit it out but get the message that it isn't in modiifable mode. This seems to be the issue all along. I don't have a clue on how to fix this.
Thanks Scott
- Top
- Bottom
Comment
Comment