HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Features available only on linux but not on hpux
Operating System - Linux
        1839874
        Members
    
    
        3743
        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
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
11-28-2003 05:14 AM
11-28-2003 05:14 AM
			
				
					
						
							Features available only on linux but not on hpux
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Hi,
I posted a query on how to set limits based on user on the thread: http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=278966
To my surprise, this feature is not available fully on hpux. But it is available on linux.
This increases my interest to find out all security and manageability features that are available only on Linux but not on hpux. I want to just compile a list .
Replies awaited ...
Regards
Jayesh
		
		
	
	
	
I posted a query on how to set limits based on user on the thread: http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=278966
To my surprise, this feature is not available fully on hpux. But it is available on linux.
This increases my interest to find out all security and manageability features that are available only on Linux but not on hpux. I want to just compile a list .
Replies awaited ...
Regards
Jayesh
		2 REPLIES 2
	
	            
            
		
		
			
            
                - Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2003 06:21 AM
11-28-2003 06:21 AM
			
				
					
						
							Re: Features available only on linux but not on hpux
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						To answer that You need lots of knowledge on both HP-UX kernel/system layers and linux kernel/system layers, there are probably more able fellows in this forums your question then me, but I know a good place to look is sysctl
# sysctl -a
and man sysctl where helpful for me start peeling the kernel layers
You will also find usefull documentation/pointers in
ls -l /usr/share/doc/kernel-doc-?.?.??/kernel-docs.txt
Hope this help you get started
J-P
		
		
	
	
	
# sysctl -a
and man sysctl where helpful for me start peeling the kernel layers
You will also find usefull documentation/pointers in
ls -l /usr/share/doc/kernel-doc-?.?.??/kernel-docs.txt
Hope this help you get started
J-P
	Smile I will feel the difference
			
			
				
			
			
			
			
			
			
		- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2003 06:15 PM
11-29-2003 06:15 PM
			
				
					
						
							Re: Features available only on linux but not on hpux
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						i'd like to suggest you few links with relevant linux doc:
http://www.samag.com/documents/s=8920/sam0311a/0311a.htm Linux Kernel Tuning Using System Control
http://www-106.ibm.com/developerworks/linux/library/l-adfly.html?ca=den-wud Administer Linux on the fly (Use the /proc filesystem to get a handle on your system
)
http://www.redhat.com/docs/manuals/linux/RHL-7.2-Manual/ref-guide/s1-proc-directories.html Directories in /proc
http://www.linux.hitech.by/modules.php?name=Content&pa=showpage&pid=21 Linux optimisation (sorry, Russian only)
In many cases we want to increase max file handlers per process/user limit (or others per process/user limits).
/etc/security/limits.conf file controls such limits, for example in order to change max open files limit for all users we should add
* soft/hard nofile xxxxx
line to /etc/security/limits.conf
See /usr/share/doc/pam-version/txts/README.pam_limits for more.
regards,
vitaly
		
		
	
	
	
http://www.samag.com/documents/s=8920/sam0311a/0311a.htm Linux Kernel Tuning Using System Control
http://www-106.ibm.com/developerworks/linux/library/l-adfly.html?ca=den-wud Administer Linux on the fly (Use the /proc filesystem to get a handle on your system
)
http://www.redhat.com/docs/manuals/linux/RHL-7.2-Manual/ref-guide/s1-proc-directories.html Directories in /proc
http://www.linux.hitech.by/modules.php?name=Content&pa=showpage&pid=21 Linux optimisation (sorry, Russian only)
In many cases we want to increase max file handlers per process/user limit (or others per process/user limits).
/etc/security/limits.conf file controls such limits, for example in order to change max open files limit for all users we should add
* soft/hard nofile xxxxx
line to /etc/security/limits.conf
See /usr/share/doc/pam-version/txts/README.pam_limits for more.
regards,
vitaly
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
