HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Mount device problem
Operating System - Linux
        1839837
        Members
    
    
        3790
        Online
    
    
        110156
        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
07-15-2007 08:58 PM
07-15-2007 08:58 PM
			
				
					
					
						I have a harddisk which has 72G size , I want to mount it to path /ora_dir , I try to mount the device from sdd1 to sdd5 , but even I try all dev path , it still found the size is not 72G , could advise how can I normally mount the path ? thx
try 1 )
#mount /dev/sdd1 /ora_dir
df
#/dev/sdd1 5036224 3480872 1299524 73% /ora_dir
try 2 )
#mount /dev/sdd2 /ora_dir
df
#/dev/sdd2 5036224 4072364 708032 86% /ora_dir
try 3 )
#mount /dev/sdd3 /ora_dir
df
#/dev/sdd3 4032000 3736716 90464 98% /ora_dir
try 4 )
#mount /dev/sdd4 /ora_dir
df
#/dev/sdd4 2355868 803156 1433036 36% /ora_dir
try 5 )
#mount /dev/sdd5 /ora_dir
df
#/dev/sdd5 2016016 69432 1844172 4% /ora_dir
					
				
			
			
				
			
			
				
	
			
				
		
			
			
			
			
			
			
		
		
		
	
	
	
try 1 )
#mount /dev/sdd1 /ora_dir
df
#/dev/sdd1 5036224 3480872 1299524 73% /ora_dir
try 2 )
#mount /dev/sdd2 /ora_dir
df
#/dev/sdd2 5036224 4072364 708032 86% /ora_dir
try 3 )
#mount /dev/sdd3 /ora_dir
df
#/dev/sdd3 4032000 3736716 90464 98% /ora_dir
try 4 )
#mount /dev/sdd4 /ora_dir
df
#/dev/sdd4 2355868 803156 1433036 36% /ora_dir
try 5 )
#mount /dev/sdd5 /ora_dir
df
#/dev/sdd5 2016016 69432 1844172 4% /ora_dir
Solved! Go to Solution.
		2 REPLIES 2
	
	            
            
		
		
			
            
                - Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2007 09:32 PM
07-15-2007 09:32 PM
Solution
			
				
					
					
						ssd1-ssd5 are the partitions on that disk, not the entire disk. Listing your current disk layout is like this: fdisk -l /dev/sdd
You'll see immediately where your 72G went in partitions.
If you want to erase the disk and use it as a whole you can use fdisk or cfdisk on it and format it after.
fdisk /dev/sdd
(delete all partitions with 'd' and create a single new one with 'n' and format it)
mkfs -t ext3 /dev/sdd1
mount /dev/sdd1 /ora_dir
(be sure to add it to /etc/fstab like this as well if you want the disk to be mounted after reboots: /dev/sdd1 /ora_dir ext3 defaults 0 2)
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		
		
		
	
	
	
You'll see immediately where your 72G went in partitions.
If you want to erase the disk and use it as a whole you can use fdisk or cfdisk on it and format it after.
fdisk /dev/sdd
(delete all partitions with 'd' and create a single new one with 'n' and format it)
mkfs -t ext3 /dev/sdd1
mount /dev/sdd1 /ora_dir
(be sure to add it to /etc/fstab like this as well if you want the disk to be mounted after reboots: /dev/sdd1 /ora_dir ext3 defaults 0 2)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2007 11:07 PM
07-15-2007 11:07 PM
			
				
					
						
							Re: Mount device problem
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						I got it , thx.
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		
		
		
	
	
	
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
