- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- permissions
Categories
Company
Local Language
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
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
Community
Resources
Forums
Blogs
- 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
08-22-2001 10:56 AM
08-22-2001 10:56 AM
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2001 11:05 AM
08-22-2001 11:05 AM
Re: permissions
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2001 11:16 AM
08-22-2001 11:16 AM
Solution1. If you want to set this permission system wide you modify the /etc/inetd.conf file (default umask option is 027-hence the file gets create with the permissions of 640)
ftp stream tcp nowait root /usr/sbin/ftpd ftpd -lu 002
This will create files will permissions of 664 (and directories 755)
2. If you the permissions changed only for this file transfer, within the ftp session you can use "chmod 664
-HTH
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2001 11:18 AM
08-22-2001 11:18 AM
Re: permissions
when you set the umask of 002,
files will be created with a permission of 664 and directories will be created with a permission of 775.
-Regards
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2001 03:11 PM
08-22-2001 03:11 PM
Re: permissions
This works for me ..
Edit your /etc/inetd.conf and edit this line with the -u option and the umask 022
ftp stream tcp nowait root /usr/lbin/ftpd ftpd -l -u 022
And run the command to reread the inetd.conf file or else it wont know that it has new permissions
/usr/sbin/inetd -c
you can also do a man on inetd for more info on services.
Richard