Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #16  
Old 9th June 2012, 04:26 PM
erwtas Offline
Registered User
 
Join Date: Jun 2012
Location: rethymno
Posts: 20
linuxchrome
Re: Fedora 17 does not recognize additional drives

Quote:
Originally Posted by tashirosgt View Post
After some web searching, i found a post (from the days of Fedora Core 8) that said the Linux kernel needs to be configured with CONFIG_LDM_PARTITION=y in order for Dynamic disks to be a recognizable type of partition. in my /boot/config.... files (FC 16-64) the kernels don't have this configuration variable turned on.
I added the sentence to the "/boot/config...", but nothing happened.
Reply With Quote
  #17  
Old 9th June 2012, 04:30 PM
greno Offline
Registered User
 
Join Date: Oct 2005
Location: U.S.A.
Posts: 261
linuxchrome
Re: Fedora 17 does not recognize additional drives

No, no.

You have to add the option to the kernel config and build a new kernel.

Google how to build a Linux kernel and you'll see what needs to be done.

.
Reply With Quote
  #18  
Old 9th June 2012, 05:21 PM
glennzo's Avatar
glennzo Online
Un-Retired Administrator
 
Join Date: Mar 2004
Location: Salem, Mass USA
Posts: 13,924
windows_xp_2003chrome
Re: Fedora 17 does not recognize additional drives

Quote:
Originally Posted by greno View Post
SFS does not mean squashfs.

It is SFS (Dynamic Disk).

I think the kernel option is probably the right direction here.

You'll need to build a kernel with CONFIG_LDM_PARTITION=y option.

.
Ahhh. My bad then.
__________________
Glenn
The Bassinator © ®


Laptop: Toshiba Satellite / Intel Core 2 Duo 1.73 GHz / 2GB / 160GB / Intel Mobile 945GM/GMS/GME/943/940GML Integrated Graphics
Desktop: BioStar MCP6PB M2+ / AMD Phenom 9750 Quad Core / 4GB / 1TB SATA / 500GB SATA / EVGA GeForce 8400 GS 1GB
Reply With Quote
  #19  
Old 9th June 2012, 05:50 PM
RHamel Offline
Registered User
 
Join Date: Sep 2004
Location: Denver, Colorado
Posts: 547
linuxfirefox
Re: Fedora 17 does not recognize additional drives

This is a quote from my windows 7 resource kit book concerning these type of disks.

Quote:
Dynamic disks, first introduced in Microsoft Windows 2000, provide all of the functionality
of the basic disk, plus the ability to span a volume across multiple dynamic disks or stripe
multiple dynamic disks to create a larger (and faster) volume. Dynamic disks present difficulties,
however, because they are not accessible from operating systems other than the operating
system instance that converted the disk to dynamic. This makes dynamic disks inaccessible in
multiboot environments and makes recovering data more difficult in the event of partial hard
disk failure. You should always use basic disks unless you have a specific requirement that can
be met only by dynamic disks.
Reply With Quote
  #20  
Old 9th June 2012, 06:17 PM
greno Offline
Registered User
 
Join Date: Oct 2005
Location: U.S.A.
Posts: 261
linuxchrome
Re: Fedora 17 does not recognize additional drives

Quote:
Originally Posted by RHamel View Post
This is a quote from my windows 7 resource kit book concerning these type of disks.
Yes, that's propaganda.

With the right kernel module, ldm.ko, you can access these disks.

.
Reply With Quote
  #21  
Old 9th June 2012, 07:02 PM
tashirosgt Offline
Registered User
 
Join Date: Aug 2004
Posts: 3,855
linuxfirefox
Re: Fedora 17 does not recognize additional drives

Quote:
Originally Posted by erwtas View Post
I added the sentence to the "/boot/config...", but nothing happened.
The config file doesn't do anything to the kernel. It merely informs you of the options that were used when the kernel was compiled. You need to find a kernel that was compiled with the option enabled or compile a kernel yourself.
__________________
"Never let the task you are trying to accomplish distract you from the study of computers."
Reply With Quote
  #22  
Old 9th June 2012, 08:33 PM
erwtas Offline
Registered User
 
Join Date: Jun 2012
Location: rethymno
Posts: 20
linuxchrome
Re: Fedora 17 does not recognize additional drives

Thanks, I've downloaded the latest patch to the kernel (i hope that fixes it), but since I'm a complete noob when it comes to linux, can someone guide me through the update process?

Sorry about the hassle, but I'm really new at this
Reply With Quote
  #23  
Old 9th June 2012, 08:38 PM
greno Offline
Registered User
 
Join Date: Oct 2005
Location: U.S.A.
Posts: 261
linuxchrome
Re: Fedora 17 does not recognize additional drives

What patch do you mean?

For generating ldm.ko?

.
Reply With Quote
  #24  
Old 9th June 2012, 08:48 PM
erwtas Offline
Registered User
 
Join Date: Jun 2012
Location: rethymno
Posts: 20
linuxchrome
Re: Fedora 17 does not recognize additional drives

I mean for Upgrading kernel 3.4.0 to 3.4.2, which contains the CONFIG_LDM_PARTITION=y option, so I don't have to build an entire kernel by myself.
Reply With Quote
  #25  
Old 9th June 2012, 08:51 PM
greno Offline
Registered User
 
Join Date: Oct 2005
Location: U.S.A.
Posts: 261
linuxchrome
Re: Fedora 17 does not recognize additional drives

Where did you find this kernel?

I see no 3.4.2 in yum listing

yum list 'kernel*'

.
Reply With Quote
  #26  
Old 9th June 2012, 08:52 PM
erwtas Offline
Registered User
 
Join Date: Jun 2012
Location: rethymno
Posts: 20
linuxchrome
Re: Fedora 17 does not recognize additional drives

http://www.kernel.org/
Reply With Quote
  #27  
Old 9th June 2012, 08:58 PM
greno Offline
Registered User
 
Join Date: Oct 2005
Location: U.S.A.
Posts: 261
linuxchrome
Re: Fedora 17 does not recognize additional drives

Ok, you cannot use straight vanilla kernels from kernel.org without knowing exactly what you're doing.

Keep checking yum for kernels.

I thought the 3.4.0 might be a good candidate until I see a report of it causing NFS corruption.

Once a kernel past 3.4.0 appears in yum list then install it plus the *matching* kernel-modules-extra package.

So you would check like this:

Code:
su
yum list 'kernel*'
And when ready to install:

Code:
su
yum install kernel  kernel-modules-extra
You need to check, but I think LDM might be in the kernel-modules-extra package.

UPDATE: ok, bad news. I checked the kernel-modules-extra package contents and did not find LDM module.

So you need to get the kernel source for your running fedora kernel (get this from fedora) and enable the LDM option in the config as suggested previously and then build your kernel.

.

Last edited by greno; 9th June 2012 at 09:10 PM.
Reply With Quote
  #28  
Old 9th June 2012, 09:08 PM
erwtas Offline
Registered User
 
Join Date: Jun 2012
Location: rethymno
Posts: 20
linuxchrome
Re: Fedora 17 does not recognize additional drives

Thank you for the info, I've downloaded the kernel-modules-extra, but how do I check it to see if it contains LDM?
Reply With Quote
  #29  
Old 9th June 2012, 09:10 PM
greno Offline
Registered User
 
Join Date: Oct 2005
Location: U.S.A.
Posts: 261
linuxchrome
Re: Fedora 17 does not recognize additional drives

Quote:
Originally Posted by erwtas View Post
Thank you for the info, I've downloaded the kernel-modules-extra, but how do I check it to see if it contains LDM?
It doesn't. I checked.

What is your running kernel version?
Reply With Quote
  #30  
Old 9th June 2012, 09:37 PM
DBelton's Avatar
DBelton Offline
Administrator
 
Join Date: Aug 2009
Posts: 6,613
linuxfirefox
Re: Fedora 17 does not recognize additional drives

SFS are Windows dynamic disks and can span multiple drives. They can be supported in Fedora if you manually configure them as a linear RAID, then mount the filesystem.

It's a pain in the butt, though. I believe the last time I looked at doing it, I had to manually configure the size, etc... and use dm-raid to mount the linear raid with. I do remember that after I got mine set up, I vowed to never use SFS drives again, and it was only about a month until I reformatted all of my drives and got rid of them, using only basic disks in Windows.

I'll look around in my notes here and see if I wrote down the steps I took.
Reply With Quote
Reply

Tags
additional, drives, fedora, recognize

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Wine does not recognize CD drives SpectrumDT Gamers' Lounge 5 21st July 2010 04:33 AM
rbldnsd does not recognize additional instances heutger Servers & Networking 0 2nd July 2009 10:56 AM
mainboard doesn't recognize hard drives stunter Hardware & Laptops 6 9th February 2009 08:06 PM
Mounting additional NTFS drives Ewaves Using Fedora 22 15th November 2006 02:58 PM
FC3 and Additional NTFS drives post install sc123 Installation and Live Media 6 24th November 2004 04:38 AM


Current GMT-time: 09:47 (Sunday, 19-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat