- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ls -l command
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
02-07-2003 03:34 AM
02-07-2003 03:34 AM
ls -l command
while listing ls -l?
I know it is called door.
But what does this mean.
Thanks
Thomas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2003 03:40 AM
02-07-2003 03:40 AM
Re: ls -l command
Hi,
I am not getting any D while doing ls -l
i could find only d which is for directory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2003 03:51 AM
02-07-2003 03:51 AM
Re: ls -l command
b Block special file
c Character special file
d Directory
l Symbolic link
n Network special file
p Fifo (also called a "named pipe") special file
s Socket
- Ordinary file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2003 04:01 AM
02-07-2003 04:01 AM
Re: ls -l command
check for the man pages of ipcs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2003 04:03 AM
02-07-2003 04:03 AM
Re: ls -l command
l1:/tmp 102 > > xx
l1:/tmp 103 > ll xx
1543 -rw-rw-rw- 1 merijn softwr 0 Feb 7 12:47 xx
l1:/tmp 104 > chmod 1666 xx
l1:/tmp 105 > ll xx
1543 -rw-rw-rwT 1 merijn softwr 0 Feb 7 12:47 xx
l1:/tmp 106 > chmod 1777 xx
l1:/tmp 107 > ll xx
1543 -rwxrwxrwt 1 merijn softwr 0 Feb 7 12:47 xx
l1:/tmp 108 > chmod +s xx
l1:/tmp 109 > ll xx
1543 -rwsrwsrwt 1 merijn softwr 0 Feb 7 12:47 xx
l1:/tmp 110 > chmod -x xx
l1:/tmp 111 > ll xx
1543 -rwSrwSrwT 1 merijn softwr 0 Feb 7 12:47 xx
l1:/tmp 112 >
the 'd' however is not a subject to this change. I'm now curious too.
Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2003 05:12 AM
02-07-2003 05:12 AM
Re: ls -l command
afaik, it's a solaris file type only:
Solaris uses a STREAMS file, usually /dev/log to route locally generated syslog messages. See the log(7d) driver manual page for more information. Starting with SunOS 5.6 (Solaris 2.5.1) the syslog(3) library contains support for "doors", a superfast and multithreaded IPC mechanism provided by the Solaris Operating Environment. Using a door file - /etc/.syslog_door up to SunOS 5.7, /var/run/syslog_door on SunOS 5.8 and later, the process listening on the syslog_door gets immediate notification upon receipt of a log message.
Rgds, Robin