LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
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


Reply
  Search this Thread
Old 02-24-2009, 02:57 PM   #31
Sabba Hillel
LQ Newbie
 
Registered: Oct 2008
Posts: 4

Rep: Reputation: 1

I have had a similar problem with attempting to build Fedora 10 on a Dell PowerEdge with a hardware RAID configuration. I installed Fedora 10 using a complete install (not an upgrade) and initialized the partitions completely. It appears to build correctly from the Fedora 10 DVD. However, after the end of the installation, the system reboot will give the error message

Volume Group "VolGroup00" not found
Unable to access remote device (/dev/VolGroup00/LogVol01)
mount error mounting /dev/root on /sysroot as ext3: no such file or directory


At this point, it locks up and I cannot even get into grub.

The problem seems similar and may point to the difficulty here as well. Fedora 7 and Fedora9 both install and boot properly. Does anyone know why Fedora 10 would no longer build?
 
Old 03-02-2009, 02:49 PM   #32
mostlyharmless
Senior Member
 
Registered: Jan 2008
Distribution: Arch/Manjaro, might try Slackware again
Posts: 1,851
Blog Entries: 14

Rep: Reputation: 284Reputation: 284Reputation: 284
!!!!!, In case you are still interested:

Your sda and sdb are raid0 together. The second disk in a firmware raid0 set gets reported as having no partition table by fdisk, which is what you see. The first disk has the table for both, but the numbers may appear screwy. Don't worry about it, just don't mess with the partition table at this point.

Your raid is firmware raid or "fakeraid". It has already been setup by dmraid as listed by you:
Quote:
control via_cgddjifhah via_cgddjifhahp1 via_cgddjifhahp2 via_cgddjifhahp3 via_cgddjifhahp4 via_cgddjifhahp5 via_cgddjifhahp6
which shows that you have a via Raid controller. Typing dmraid -s will show you the raid set.

As Quakeboy02 pointed out, you need merely mount the appropriate partitions such as /dev/mapper/via_cgddjifhahp1 using mount and the ntfs or ntfs-3g filesystem. eg.
Quote:
mount -t ntfs /dev/mapper/via_cgddjifhahp1 /mnt
Sabba Hillel: you have a different problem and probably need your own thread.

Last edited by mostlyharmless; 03-02-2009 at 02:51 PM.
 
Old 07-18-2009, 02:39 PM   #33
!!!!!
LQ Newbie
 
Registered: Jan 2009
Posts: 25

Original Poster
Rep: Reputation: 15
mostlyharmless....you did it man,actually I did this before (not me,but a friend works in our data centre but he didn't told me how he did it.)now i did the last command you said and i can see my windows files.thanks a lot.

Last edited by !!!!!; 07-19-2009 at 03:38 AM.
 
Old 07-19-2009, 01:37 PM   #34
!!!!!
LQ Newbie
 
Registered: Jan 2009
Posts: 25

Original Poster
Rep: Reputation: 15
unfortunately the previous mount ntfs files temporary but everything disappear after reboot.
 
Old 07-20-2009, 02:44 PM   #35
mostlyharmless
Senior Member
 
Registered: Jan 2008
Distribution: Arch/Manjaro, might try Slackware again
Posts: 1,851
Blog Entries: 14

Rep: Reputation: 284Reputation: 284Reputation: 284
Put the command in your rc.local file (usually in /etc/rc.d) and it will be executed every time the system boots.
 
Old 07-25-2009, 07:10 AM   #36
!!!!!
LQ Newbie
 
Registered: Jan 2009
Posts: 25

Original Poster
Rep: Reputation: 15
i will try do this,but someone told me that i must edit something in the fstab do you have any idea how that done.?
 
Old 07-27-2009, 10:31 AM   #37
mostlyharmless
Senior Member
 
Registered: Jan 2008
Distribution: Arch/Manjaro, might try Slackware again
Posts: 1,851
Blog Entries: 14

Rep: Reputation: 284Reputation: 284Reputation: 284
You could probably put it in fstab instead, but it is not necessary.

There's nothing wrong with just putting the

mount -t ntfs /dev/mapper/via_cgddjifhahp1 /mnt

(or preferably)

mount -t ntfs-3g /dev/mapper/via_cgddjifhahp1 /mnt

at the end of your rc.local using pico. You have to be root to mount or edit rc.local.
 
Old 07-27-2009, 03:31 PM   #38
PTrenholme
Senior Member
 
Registered: Dec 2004
Location: Olympia, WA, USA
Distribution: Fedora, (K)Ubuntu
Posts: 4,187

Rep: Reputation: 354Reputation: 354Reputation: 354Reputation: 354
After you've done a sudo mkdir /Vista and sudo mkdir /Vista/Recovery you could do a sudo nano /etc/fstab and add this:
Code:
UUID=342D7D7923AC4107   /Vista                  ntfs-3g rw,defaults     0 0
UUID=2C88743C8874071C   /Vista/Recovery         ntfs-3g rw,defaults     0 0
where the numbers after the UUID= can be found in the output of ls -l /dev/disk/by-uuid/

Note that the mount point names are almost completely arbitrary, and can by in any directory you want to place them. I like to mount hard drives directly under / with name that start with an upper-case letter, but that's not a standard *nix convention. As mostelyharmless has suggested, the "conventional" mount point is a directory created under /mnt. (Although one way to read his suggestion is to mount the drive on /mnt which would preclude mounting more than one drive.) Bottom line: Where you decide to mount your NTFS drives is entirely up to you.

Last edited by PTrenholme; 07-27-2009 at 03:33 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
mount existing ntfs SATA RAID 0 on RHEL4 VIA fake RAID tmoble Linux - Hardware 10 11-13-2009 07:49 PM
Unable to Mount NTFS RAID O Array lpboarder23 SUSE / openSUSE 1 03-14-2006 04:29 PM
how to mount NTFS fliesystem in fedora sagun_newbie Linux - Hardware 13 04-26-2005 08:04 AM
mount ntfs SATA Raid Youbou Linux - Hardware 1 02-23-2005 06:04 AM
Mount NTFS Raid on Linux 9.0 blurhappy Linux - Hardware 1 05-06-2003 08:17 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 05:55 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration