HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- mdadm: /dev/hdb1 does not appear to be an md devic...
Operating System - Linux
        1839916
        Members
    
    
        3103
        Online
    
    
        110157
        Solutions
    
Forums
        Categories
Company
Local Language
                
                  
                  back
                
        
                
        
                
        
                
        
        
        
                
        
                
        
        
        
                
        
              
              Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
                
                  
                  back
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
            
                
            
                
            
                
            
                
            
            
                
            
                
            
            
                
            
                
              
            Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
        Information
        Community
Resources
Community Language
        Language
        Forums
Blogs
	
		
			
            
                
            Go to solution
        
            
		
		
			
            	
	
		
        
		
	
	
		Topic Options
			
				
					
	
			
		
	- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2005 06:14 PM
04-26-2005 06:14 PM
			
				
					
					
						Hello gurus
# fdisk -l /dev/hdb
Disk /dev/hdb: 8622 MB, 8622931968 bytes
255 heads, 63 sectors/track, 1048 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hdb1 1 123 987966 fd Linux raid autodetect
# fdisk -l /dev/hdd
Disk /dev/hdd: 3249 MB, 3249340416 bytes
16 heads, 63 sectors/track, 6296 cylinders
Units = cylinders of 1008 * 512 = 516096 bytes
Device Boot Start End Blocks Id System
/dev/hdd1 1 1939 977224+ fd Linux raid autodetect
# mdadm --create --verbose --level=1 --raid-devices=2 /dev/hdb1 /dev/hdd1
mdadm: /dev/hdb1 does not appear to be an md device
Plz help
Regards
Maaz
					
				
			
			
				
			
			
				
	
			
				
		
			
			
			
			
			
			
		
		
		
	
	
	
# fdisk -l /dev/hdb
Disk /dev/hdb: 8622 MB, 8622931968 bytes
255 heads, 63 sectors/track, 1048 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hdb1 1 123 987966 fd Linux raid autodetect
# fdisk -l /dev/hdd
Disk /dev/hdd: 3249 MB, 3249340416 bytes
16 heads, 63 sectors/track, 6296 cylinders
Units = cylinders of 1008 * 512 = 516096 bytes
Device Boot Start End Blocks Id System
/dev/hdd1 1 1939 977224+ fd Linux raid autodetect
# mdadm --create --verbose --level=1 --raid-devices=2 /dev/hdb1 /dev/hdd1
mdadm: /dev/hdb1 does not appear to be an md device
Plz help
Regards
Maaz
Solved! Go to Solution.
		3 REPLIES 3
	
	            
            
		
		
			
            
                - Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2005 06:26 PM
04-26-2005 06:26 PM
			
				
					
						
							Re: mdadm: /dev/hdb1 does not appear to be an md device -- plz help
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						For RAID, in particular RAID1, the two physical devices need to be of the same size.
By the looks of it, they are somewhat different in size.
The 'mdadm' manual states that it won't create if there is more than a 1% descrepancy.
It also mentions a '--run' argument which might be of use to you.
But start by checking the partition sizes..
		
		
	
	
	
By the looks of it, they are somewhat different in size.
The 'mdadm' manual states that it won't create if there is more than a 1% descrepancy.
It also mentions a '--run' argument which might be of use to you.
But start by checking the partition sizes..
	One long-haired git at your service...
			
			
				
			
			
			
			
			
			
		- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2005 06:49 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2005 05:08 PM
04-27-2005 05:08 PM
			
				
					
						
							Re: mdadm: /dev/hdb1 does not appear to be an md device -- plz help
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Dear Stuart Browne and Sergejs Svitnevs  Thanks a Million for help/reply.
Yes I forgot/skiped to write '/dev/md0'.
now correct syntax that works is:
mdadm --create --verbose /dev/md0 --level=1 --raid-devices=2 /dev/hdb1 /dev/hdd1
Thanks again
Regards
Maaz
		
		
	
	
	
Yes I forgot/skiped to write '/dev/md0'.
now correct syntax that works is:
mdadm --create --verbose /dev/md0 --level=1 --raid-devices=2 /dev/hdb1 /dev/hdd1
Thanks again
Regards
Maaz
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
		
	
	
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP
