Not able to run ls -ltr


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Not able to run ls -ltr
# 1  
Old 07-11-2011
Not able to run ls -ltr

Hi ,

Whenever i try to execute ls with l as an option the system hangs.

The workload on server is not more than 1.
What could be the reason .

Normal ls works fine but ls -l causes the system to hang.




This is happening when i m in /usr/local/sbin directory.


I can see that the output is getting generated after 3-4 minutes.

See the comparison.
Code:
#time ls
real    0m0.004s
user    0m0.000s
sys     0m0.002s
#time ls -ltr
real    3m2.443s
user    0m0.003s
sys     0m0.002s

Code:
# which ls
alias ls='ls --color=tty'
        /bin/ls

Distribution details
Code:
# lsb_release -a
LSB Version:    :core-3.1-ia32:core-3.1-noarch:graphics-3.1-ia32:graphics-3.1-noarch
Distributor ID: EnterpriseEnterpriseServer
Description:    Enterprise Linux Enterprise Linux Server release 5.2 (Carthage)
Release:        5.2
Codename:       Carthage


Last edited by pinga123; 07-11-2011 at 02:50 AM..
# 2  
Old 07-11-2011
Are there NFS mounts in /usr/local/sbin and have they become stale?
# 3  
Old 07-11-2011
Quote:
Originally Posted by Scrutinizer
Are there NFS mounts in /usr/local/sbin and have they become stale?
No such NFS are mounted in /usr/local/sbin
# 4  
Old 07-11-2011
The difference between ls and ls -l is that the latter command reads inodes and performs user name and group name lookups. If your directory service (for example ldap) functions poorly there may be delays. How fast is ls -n ?

Last edited by Scrutinizer; 07-11-2011 at 07:15 AM..
# 5  
Old 07-12-2011
Quote:
Originally Posted by Scrutinizer
The difference between ls and ls -l is that the latter command reads inodes and performs user name and group name lookups. If your directory service (for example ldap) functions poorly there may be delays. How fast is ls -n ?
ls -n is faster than ls -l
but we dont have ldap configured.

---------- Post updated at 10:53 PM ---------- Previous update was at 05:21 AM ----------

It was a problem of ownership .When i tried executing ls -n it resulted in faster responce .
-n option make sure that only uid and gid are displayed.

So i figured out that one of the folder has wrong ownership.
I changed the ownership of the folder and the problem is solved.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Fields in the Output of ls -ltr for a directory

Could you please let me know what each of the output fields in ls -ltr for a directory imply. Example : drwxrwsr-x 4294967295 infamgr infagrp 2147549184 Sep 2 17:01 job basically would want to know 4294967295 and 2147549184 (6 Replies)
Discussion started by: infernalhell
6 Replies

2. Shell Programming and Scripting

I have two commands “ls -h” and “ls -ltr”. How do i make sure “ls -ltr” is run after “ls -h” is suc

help me (2 Replies)
Discussion started by: sonu pandey
2 Replies

3. Shell Programming and Scripting

Ls -ltr in scripting

Hi All, I wrote below script for i in `ls` do echo "list of files $i" done but i want display as like ls -ltr,it's displaying as one column Thanks (14 Replies)
Discussion started by: bmk
14 Replies

4. Programming

Ls -ltr Sort multiple columns

Hi All, I have one requirement, where I need to have output of ls -l command sorted on 1) first on filename 2) last modified time ( descending ) - latest change first. I am not able to figure out how to do it.. Also I dont have a way to change Date display for ls -ltr command.. I am... (1 Reply)
Discussion started by: freakabhi
1 Replies

5. Solaris

using ls -ltr : display only last four file names

Hi , Server details – Machine hardware: sun4u OS version: 5.9 Processor type: sparc Hardware: SUNW,Sun-Fire-880 When I put ls –ltr command I get – /users/testuser> ls -ltr -rw-rw-r-- 1 testuser dba 76 Jan 13 2009 ftp.scr -rwxr-xr-x 1... (6 Replies)
Discussion started by: rahulbahulekar
6 Replies

6. Shell Programming and Scripting

How to parse the listing (ls -ltr)

Hi, I need to parse the listing (ls -ltr) in a given directory and get a particular value to see the success or failure. e.g drwxr-xr-x 5 sensr vpnuser 512 Nov 7 07:46 disc_001811. Here i need to take the value 5 which is after drwxr-xr-x . how to so the same in shell... (1 Reply)
Discussion started by: MuthuAlagappan
1 Replies

7. Shell Programming and Scripting

ls -ltr command On Remote server

I am writing a script where in i have to log into a remote machine and check for necessary file by typing (ls -ltr *200505) (this gets all 05month of 2008 yr files) and if files are found get them to the local machine. If not found print a message saying no files on local machine. When i was... (2 Replies)
Discussion started by: vasuarjula
2 Replies

8. Shell Programming and Scripting

ls -ltr help

i have to list some file with certain exemption suppose for example i have two files file1.log.1 file1.log.1.123 i want ls -ltr command to list only 1st type of files so i want like this ls -ltr *.log.*---------it should grep 1st kind of files but this command greps all the files... (4 Replies)
Discussion started by: ali560045
4 Replies

9. UNIX for Advanced & Expert Users

ls -ltr, TIME DETAILS ??

when I write the command ls -ltr it shows the detail of the files. Like -rwxrwxrwx 1 mqsiadm mqbrkrs 0 Aug 29 14:03 dspmq_temp -rwxrwxrwx 1 mqsiadm mqbrkrs 666 Aug 30 06:12 dspmq_script In this,DATE TIME is shown, Now the question is : how can I see the all the times... (5 Replies)
Discussion started by: varungupta
5 Replies

10. UNIX for Dummies Questions & Answers

what does the ls -ltr command list

Hi, THe following is the output when i run the command ls -ltr can anyone explain the meaning of the field in red -rw-r----- 3 orca orca 20924 Sep 08 19:21 BTL027SASI.gnt -rw-r----- 3 orca orca 20924 Sep 08 19:21 BTL027RITD.gnt -rw-r----- 3 orca orca ... (2 Replies)
Discussion started by: ranjita.c
2 Replies
Login or Register to Ask a Question