Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Call to lnusertemp failed

151 views
Skip to first unread message

Gene

unread,
Dec 27, 2007, 5:41:35 PM12/27/07
to
Hello, I have the MDV2008 and the problem, because when I try to login
to KDE as user system reports the error "Call to lnusertemp failed
(temporary directioies full?) Check your installation"
I have deleted (as root) all files from the /tmp and /user/tmp, and no
result. Please help me. I am just beginner. Greetings, Gene

Bit Twister

unread,
Dec 27, 2007, 5:56:10 PM12/27/07
to

Another one might be /var/tmp

But, if your system was not up at 4am Sunday, your /var/log may be
filling up because the log compress/rotate script has not had a chance
to run.

I have seen people lose lots of space when they were moving partition around.
They would have a bunch of stuff under, say /data. They created new
mount point, copied data into new mount point, umounted both
partitions, change /data to new partition in /etc/fstab and now old
data is hidden under the new /data mount point still using space in
old partition space.

Jim Beard

unread,
Dec 28, 2007, 10:51:17 AM12/28/07
to

Go to a command line, and run the command mount.
You will get back something like
/dev/sdb1 on / type ext3 (rw,noatime)
/dev/sdb8 on /home type ext3 (rw,noatime)
/dev/sdb9 on /music type ext3 (rw,noatime)
none on /tmp type tmpfs (rw)
/dev/sdb6 on /usr type ext3 (rw,noatime)
/dev/sdb7 on /var type ext3 (rw,noatime)

What you want from this is the mount points for
partitions, / /home /music /usr /var in the
list above.

Then, cd to each of these mount points and run
df -k .
(or df -k / ; df -k /home ; df -k /music ; etc)
and see what percentage of each partition is full.

Once you know which partition(s) are the problem,
you can start looking for the reason why.

Cheers!

jim b.

--
UNIX is not user-unfriendly; it merely
expects users to be computer-friendly.

Gene

unread,
Jan 3, 2008, 9:23:28 AM1/3/08
to
> Go to a command line, and run the command mount.
> You will get back something like
> /dev/sdb1 on / type ext3 (rw,noatime)
> /dev/sdb8 on /home type ext3 (rw,noatime)
> /dev/sdb9 on /music type ext3 (rw,noatime)
> none on /tmp type tmpfs (rw)
> /dev/sdb6 on /usr type ext3 (rw,noatime)
> /dev/sdb7 on /var type ext3 (rw,noatime)
>
> What you want from this is the mount points for
> partitions, / /home /music /usr /var in the
> list above.
>
> Then, cd to each of these mount points and run
> df -k .
> (or df -k / ; df -k /home ; df -k /music ; etc)
> and see what percentage of each partition is full.
>
> Once you know which partition(s) are the problem,
> you can start looking for the reason why.
>
> Cheers!
>
> jim b.


Hello, I have noticed that after df -k, there is no free space on "/"
100% used, all tmp's are empty, I dont know which of /var/tmp could be
deleted all? The partition /home is almost empty (3% used only) How to
obtain the information about size of each directory (together with its
subdirectories)? Bye, Gene

Jim Beard

unread,
Jan 3, 2008, 11:06:06 AM1/3/08
to
Gene wrote:
>> Go to a command line, and run the command mount.
>> What you want from this is the mount points for
>> partitions,
>> Then, cd to each of these mount points and run
>> df -k .
>> Once you know which partition(s) are the problem,
>> you can start looking for the reason why.
>> jim b.
>
>
> Hello, I have noticed that after df -k, there is no free space on "/"
> 100% used, all tmp's are empty, I dont know which of /var/tmp could be
> deleted all? The partition /home is almost empty (3% used only) How to
> obtain the information about size of each directory (together with its
> subdirectories)? Bye, Gene

If / is 100 percent full, you have a serious problem.
That normally crashes the system immediately, and you
have to resort to a rescue disk to clean things up
before rebooting.

If your machine is still working, cd / and run
df -k . to see how much space you have in the
root partition and how much is filled. Cut and
paste/post the results.

du -s dir
(Disk Usage) will tell you how much space is used
by dir and files/directories under it. Size is
given in blocks rather than bytes, so
man du
for more information.

Anything in any tmp or temp directory that is not
in use at the time should be removable, without
adverse effect on your system. If something is in
use (e.g. if you are using a graphic user interface
such as kde or gnome), removing it may create a
problem or perhaps crash everything started up since
you logged in. But logging out (Cntl-Alt-Backspace
to get out of kde, Cntl-d to exit the current shell)
and logging in again should straighten everything out.
At worst, you might need to reboot.

If for some reason you cannot run the shutdown -r now
command, run each of the following commands a couple of
times:

Cntl-Alt-Backspace /* kills x-server */
Alt-SysReq-r /* puts terminal in raw mode */
Alt-SysReq-s /* sync -- updates writes to disk */
Alt-SysReq-e /* terminate everything except init */
Alt-SysReq-i /* kill everything except init */
Alt-SysReq-u /* remount all partitions read only */
Alt-SysReq-b /* reboot */

David W. Hodgins

unread,
Jan 3, 2008, 3:57:24 PM1/3/08
to
On Thu, 03 Jan 2008 09:23:28 -0500, Gene <gen...@wp.pl> wrote:

> Hello, I have noticed that after df -k, there is no free space on "/"
> 100% used, all tmp's are empty, I dont know which of /var/tmp could be
> deleted all? The partition /home is almost empty (3% used only) How to
> obtain the information about size of each directory (together with its
> subdirectories)? Bye, Gene

If you can get it installed, or run it from a livecd, kdirstat is a very
usefull utility, for seeing which directories/files, are taking up the
space.

I think it was mentioned previously, in this thread, but is worth repeating.

Truly hidden files can be created by copying a file to a directory, and
then mounting a filesystem, using that directory, as a mount point.

For example. Assume you have a filesystem on /dev/hda1, that is normally
mounted as /media/winc. With /dev/hda1 unmounted, copy a file to /media/winc.
Mount /dev/hda1 on /media/winc. The file in the directory /media/winc is now
completly hidden, but still taking up space. To delete the file, you first
have to umount /dev/hda1 (or umount /media/winc).

So try umounting all unneeded filesystems, before you start looking for the
files that are taking up the space on the root filesystem.

Regards, Dave Hodgins

--
Change nomail.afraid.org to ody.ca to reply by email.
(nomail.afraid.org has been set up specifically for
use in usenet. Feel free to use it yourself.)

Carlton

unread,
Apr 16, 2008, 4:37:41 PM4/16/08
to
Gene wrote:
> Hello, I have the MDV2008 and the problem, because when I try to login
> to KDE as user system reports the error "Call to lnusertemp failed
> (temporary directories full?) Check your installation"

I have the same problem, but it only effects one of the 2 users on the
system. (Mandriva 2008.0 Free).
I had to move the /var directory from the root partition to another, as
the system was over 95% full on a 9.5Gb partition.
Since moving the /var directory to another partition and replacing it
with a symbolic link the problem occurred.
Would the move have broken some symbolic links?
The output from DF is;
[root@localhost /]# df -k
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/hda5 9292992 4052828 4768096 46% /
/dev/hdb2 20641788 17968944 1624204 92% /home
/dev/hdb3 30961696 9377892 20011044 32% /mnt/hdb3
/dev/hdb5 20200708 9217988 9956572 49% /mnt/hdb5
/dev/hdb6 25197220 24083724 89516 100% /mnt/hdb6
/dev/hdd5 20271580 16014848 3226968 84% /mnt/M2008/home
/dev/hdd6 20464800 12826752 7638048 63% /mnt/hdd6-music
/dev/hdd7 30241928 14475224 14230492 51% /mnt/M2008/root
/dev/hdd8 40701388 37992104 641724 99% /mnt/Backup
/dev/hdd1 82172464 75481792 6690672 92% /mnt/wincopy

whilst /dev/hdb6 is full, it contains no system files, only some backup
.iso images

I have looked at the other related posts, but can't understand why it
effects only one user.

For future reference, should I have performed the move using a live disk
such as Knoppix?

Thanks for any assistance,
regards,
Carlton.

David W. Hodgins

unread,
Apr 16, 2008, 4:56:00 PM4/16/08
to
On Wed, 16 Apr 2008 16:37:41 -0400, Carlton <USE...@adent.demon.co.uk> wrote:

> I have the same problem, but it only effects one of the 2 users on the
> system. (Mandriva 2008.0 Free).

Delete any broken links from ~/.kde and the various subdirectories of ~/tmp.

Carlton

unread,
Apr 16, 2008, 5:37:59 PM4/16/08
to
David W. Hodgins wrote:
> On Wed, 16 Apr 2008 16:37:41 -0400, Carlton <USE...@adent.demon.co.uk> wrote:
>
>> I have the same problem, but it only effects one of the 2 users on the
>> system. (Mandriva 2008.0 Free).
>
> Delete any broken links from ~/.kde and the various subdirectories of ~/tmp.
>
> Regards, Dave Hodgins
>
Thanks for the tip,
I used
find . -type l -follow 2>&1 | cut -d: -f2 | sed s/\ //g
to locate the broken links, there was only 1 ( .kde/socket-localhost )
in ~/ and in /var
however, it didn't solve the problem, no change in the error message.
Back to square 1 :-(
Carlton.

David W. Hodgins

unread,
Apr 16, 2008, 9:43:47 PM4/16/08
to
On Wed, 16 Apr 2008 17:37:59 -0400, Carlton <USE...@adent.demon.co.uk> wrote:

> to locate the broken links, there was only 1 ( .kde/socket-localhost )
> in ~/ and in /var

What's the output of "ls -l ~/.kde" and "ls -l /var/tmp"?

Carlton

unread,
Apr 17, 2008, 6:43:25 PM4/17/08
to
David W. Hodgins wrote:
> On Wed, 16 Apr 2008 17:37:59 -0400, Carlton <USE...@adent.demon.co.uk> wrote:
>
>> to locate the broken links, there was only 1 ( .kde/socket-localhost )
>> in ~/ and in /var
>
> What's the output of "ls -l ~/.kde" and "ls -l /var/tmp"?
>
> Regards, Dave Hodgins
>

[claire@localhost home]$ cd ~
[claire@localhost ~]$ ls -al .kde/
total 20
drwx------ 4 claire claire 4096 2008-04-16 22:29 ./
drwx------ 31 claire claire 4096 2008-04-17 23:31 ../
drwx------ 2 claire claire 4096 2008-03-20 19:10 Autostart/
drwx------ 9 claire claire 4096 2008-03-25 15:09 share/
lrwxrwxrwx 1 claire claire 27 2008-03-20 19:10 tmp-localhost ->
/home/claire/tmp/kde-claire/
[claire@localhost ~]$ ls -l /var/tmp
total 4
drwx------ 2 root root 4096 2008-04-16 21:47 kdecache-root/

[claire@localhost ~]$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/hda5 8.9G 3.9G 4.6G 46% /
/dev/hdb2 20G 17G 1.8G 91% /home
/dev/hdb3 30G 9.0G 20G 32% /mnt/hdb3
/dev/hdb5 20G 8.8G 9.5G 49% /mnt/hdb5
/dev/hdb6 25G 23G 88M 100% /mnt/hdb6
/dev/hdd5 20G 16G 3.1G 84% /mnt/M2008/home
/dev/hdd6 20G 13G 7.3G 63% /mnt/hdd6-music
/dev/hdd7 29G 14G 14G 51% /mnt/M2008/root
/dev/hdd8 39G 37G 627M 99% /mnt/Backup
/dev/hdd1 79G 72G 6.4G 92% /mnt/wincopy

there are no system files on /mnt/hdb6

I think all is well with these directories now.

I created a new user from mcc, the new user also generates the error
message "Call to lnusertemp failed (temporary directories full?) Check
your installation"
I don't know what to try next?
At least I have 1 user working
Anyone any ideas?
Carlton

Bit Twister

unread,
Apr 17, 2008, 7:01:34 PM4/17/08
to
On Thu, 17 Apr 2008 23:43:25 +0100, Carlton wrote:
> Anyone any ideas?

if installed, try gnome-system-monitor

David W. Hodgins

unread,
Apr 17, 2008, 7:34:52 PM4/17/08
to
On Thu, 17 Apr 2008 18:43:25 -0400, Carlton <USE...@adent.demon.co.uk> wrote:

While the current directory is ~/, try running
strace -f -F -v -odebugcache.txt lnusertemp cache
strace -f -F -v -odebugsocket.txt lnusertemp socket
strace -f -F -v -odebugtmp.txt lnusertemp tmp

Then view the files debugcache.txt, debugsocket.txt, and debugtmp.txt,
to see exactly which system call is failing.

> [claire@localhost ~]$ df -h
> Filesystem Size Used Avail Use% Mounted on
> /dev/hda5 8.9G 3.9G 4.6G 46% /
> /dev/hdb2 20G 17G 1.8G 91% /home
> /dev/hdb3 30G 9.0G 20G 32% /mnt/hdb3
> /dev/hdb5 20G 8.8G 9.5G 49% /mnt/hdb5
> /dev/hdb6 25G 23G 88M 100% /mnt/hdb6
> /dev/hdd5 20G 16G 3.1G 84% /mnt/M2008/home
> /dev/hdd6 20G 13G 7.3G 63% /mnt/hdd6-music
> /dev/hdd7 29G 14G 14G 51% /mnt/M2008/root
> /dev/hdd8 39G 37G 627M 99% /mnt/Backup
> /dev/hdd1 79G 72G 6.4G 92% /mnt/wincopy

You mentioned before, that you moved /var. Where is it symlinked to? Is
that filesystem mounted?

Carlton

unread,
Apr 17, 2008, 7:39:03 PM4/17/08
to

gnome-system-monitor is installed, but what should I be looking for?

Bit Twister

unread,
Apr 17, 2008, 7:44:25 PM4/17/08
to

Well you have a full file system problem, so I would check under File Systems
for something 95+ percent full.

Jim Beard

unread,
Apr 17, 2008, 9:30:42 PM4/17/08
to
Carlton wrote:
> [claire@localhost ~]$ df -h
> Filesystem Size Used Avail Use% Mounted on
> /dev/hdb2 20G 17G 1.8G 91% /home
> /dev/hdb6 25G 23G 88M 100% /mnt/hdb6
> /dev/hdd8 39G 37G 627M 99% /mnt/Backup
> /dev/hdd1 79G 72G 6.4G 92% /mnt/wincopy
>
> there are no system files on /mnt/hdb6
>
> I think all is well with these directories now.
>
> At least I have 1 user working
> Anyone any ideas?

df seems to think there is something filling hdb6. hdd8
likewise could be a problem, 627M notwithstanding. hdb2
and hdd1 with 91 and 92 percent respectively should work,
but that might depend on what is being put in tmp storage.

Carlton

unread,
Apr 20, 2008, 2:40:26 PM4/20/08
to
David W. Hodgins wrote:
> On Thu, 17 Apr 2008 18:43:25 -0400, Carlton <USE...@adent.demon.co.uk> wrote:
>
> While the current directory is ~/, try running
> strace -f -F -v -odebugcache.txt lnusertemp cache
> strace -f -F -v -odebugsocket.txt lnusertemp socket
> strace -f -F -v -odebugtmp.txt lnusertemp tmp
>
> Then view the files debugcache.txt, debugsocket.txt, and debugtmp.txt,
> to see exactly which system call is failing.
>
>> [claire@localhost ~]$ df -h
>> Filesystem Size Used Avail Use% Mounted on
>> /dev/hda5 8.9G 3.9G 4.6G 46% /
>> /dev/hdb2 20G 17G 1.8G 91% /home
>> /dev/hdb3 30G 9.0G 20G 32% /mnt/hdb3
>> /dev/hdb5 20G 8.8G 9.5G 49% /mnt/hdb5
>> /dev/hdb6 25G 23G 88M 100% /mnt/hdb6
>> /dev/hdd5 20G 16G 3.1G 84% /mnt/M2008/home
>> /dev/hdd6 20G 13G 7.3G 63% /mnt/hdd6-music
>> /dev/hdd7 29G 14G 14G 51% /mnt/M2008/root
>> /dev/hdd8 39G 37G 627M 99% /mnt/Backup
>> /dev/hdd1 79G 72G 6.4G 92% /mnt/wincopy
>
> You mentioned before, that you moved /var. Where is it symlinked to? Is
> that filesystem mounted?
>
> Regards, Dave Hodgins
>
After running the 3 strace commands, there were some errors relating to
missing files, which are given below.

grep -n ENOENT debug*.txt
debugcache.txt:3:7227 access("/etc/ld.so.preload", R_OK) = -1 ENOENT
(No such file or directory)
debugcache.txt:71:7227 connect(3, {sa_family=AF_FILE,
path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
debugcache.txt:75:7227 connect(3, {sa_family=AF_FILE,
path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
debugsocket.txt:3:7242 access("/etc/ld.so.preload", R_OK) = -1 ENOENT
(No such file or directory)
debugsocket.txt:71:7242 connect(3, {sa_family=AF_FILE,
path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
debugsocket.txt:75:7242 connect(3, {sa_family=AF_FILE,
path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
debugtmp.txt:3:7246 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No
such file or directory)
debugtmp.txt:71:7246 connect(3, {sa_family=AF_FILE,
path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
debugtmp.txt:75:7246 connect(3, {sa_family=AF_FILE,
path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)

As to the location of /var, that was moved to hdb5
The fstab entry is

grep hdb5 /etc/fstab
/dev/hdb5 /mnt/hdb5 ext3 relatime 1 2

I looked for information on nscd, but it doesn't appear to be running

[root@localhost /]# nscd --help
-bash: nscd: command not found

[root@localhost /]# ps aux|grep nscd
root 7461 0.0 0.1 3068 736 pts/1 S+ 19:25 0:00 grep
--color nscd

I assume something must have broken when I moved /var

the contents of /var/run is
[root@localhost /]# ls /var/run/
acpid.socket cups/ httpd.pid
ntpd.pid utmp
alsactl dbus/ ifplugd.eth0.pid
resolvconf/ xauth/
avahi-daemon/ dhclient-eth0.pid kdm.pid
runlevel.dir xdmctl/
clamav/ dirmngr/ klogd.pid
samba/
console/ dm.pid messagebus.pid
sensord.pid
console-kit-daemon.pid haldaemon.pid mysqld/
sudo/
crond.pid hplip/ netreport/
syslogd.pid

I have checked the contents of previous M2006/M2008 installations, they
also have no /var/run/nscd directories.

Another thing I noticed was that haldaemon was not starting at boot.
I don't know if the problems are likely to be connected.
Also, haldaemon failed to start from mcc, but would start from the
command line running '/etc/init.d/haldaemon start'
I hope the additional information is useful.
I don't want to resort to re-installation, since it is an admittance of
defeat, but it may be the quickest way out.
Thanks for the help
Carlton.

David W. Hodgins

unread,
Apr 20, 2008, 3:24:01 PM4/20/08
to
On Sun, 20 Apr 2008 14:40:26 -0400, Carlton <USE...@adent.demon.co.uk> wrote:

> grep -n ENOENT debug*.txt
> debugcache.txt:3:7227 access("/etc/ld.so.preload", R_OK) = -1 ENOENT
> (No such file or directory)

The above is left over from an earlier version of dynamic linking.

> debugcache.txt:71:7227 connect(3, {sa_family=AF_FILE,
> path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)

nscd is an optional service that caches things like /etc/groups, /etc/passwd,
and /etc/services. It may improve performance, at the expense of about
100MB of virtual storage. Only seems to use about 1KB of actual ram,
on my system. If the nscd service is not installed, or not running, the
program simply accesses the files directly, so that is not the cause of
the problem.

> Another thing I noticed was that haldaemon was not starting at boot.
> I don't know if the problems are likely to be connected.
> Also, haldaemon failed to start from mcc, but would start from the
> command line running '/etc/init.d/haldaemon start'

That's very strange. All mcc does is run "service haldaemon start", which
is basically the same as running "/etc/init.d/haldaemon start".

> I hope the additional information is useful.

Looks like you need to post more of the debug*.txt. Use tail to grab the
last 20 lines, or so, from on of the runs of lnusertemp, that failed.

Carlton

unread,
Apr 20, 2008, 4:41:26 PM4/20/08
to
David W. Hodgins wrote:
> On Sun, 20 Apr 2008 14:40:26 -0400, Carlton <USE...@adent.demon.co.uk> wrote:
> - SNIP -

>
> Looks like you need to post more of the debug*.txt. Use tail to grab the
> last 20 lines, or so, from on of the runs of lnusertemp, that failed.
>
> Regards, Dave Hodgins
>
Here are the last 20 lines of each of the 3 files.
[root@localhost /]# tail -n20 debug*.txt
==> debugcache.txt <==
7227 fstat64(3, {st_dev=makedev(3, 5), st_ino=874403,
st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_size=38420,
st_atime=2008/03/17-23:25:45, st_mtime=2007/11/21-16:39:46,
st_ctime=2008/03/17-23:25:32}) = 0
7227 mmap2(NULL, 41620, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE,
3, 0) = 0xb7bfa000
7227 mmap2(0xb7c03000, 8192, PROT_READ|PROT_WRITE,
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8) = 0xb7c03000
7227 close(3) = 0
7227 munmap(0xb7f71000, 97642) = 0
7227 open("/etc/passwd", O_RDONLY) = 3
7227 fcntl64(3, F_GETFD) = 0
7227 fcntl64(3, F_SETFD, FD_CLOEXEC) = 0
7227 fstat64(3, {st_dev=makedev(3, 5), st_ino=1101667,
st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_size=1221,
st_atime=2008/04/17-23:08:33, st_mtime=2008/04/17-23:08:26,
st_ctime=2008/04/17-23:08:26}) = 0
7227 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS,
-1, 0) = 0xb7f88000
7227 read(3, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 1221
7227 close(3) = 0
7227 munmap(0xb7f88000, 4096) = 0
7227 stat64("/root/.kde", {st_dev=makedev(3, 5), st_ino=210500,
st_mode=S_IFDIR|0700, st_nlink=3, st_uid=0, st_gid=0, st_size=4096,
st_atime=2008/04/07-04:06:09, st_mtime=2008/04/19-16:03:13,
st_ctime=2008/04/19-16:03:13}) = 0
7227 uname({sysname="Linux", nodename="localhost",
release="2.6.22.18-desktop-1mdv", version="#1 SMP Mon Feb 11 13:53:50
EST 2008", machine="i686"}) = 0
7227 lstat64("/root/.kde/cache-localhost", {st_dev=makedev(3, 5),
st_ino=989057, st_mode=S_IFLNK|0777, st_nlink=1, st_uid=0, st_gid=0,
st_size=22, st_atime=2008/03/18-20:50:04, st_mtime=2008/03/18-06:53:47,
st_ctime=2008/03/18-06:53:47}) = 0
7227 readlink("/root/.kde/cache-localhost", "/var/tmp/kdecache-root",
4096) = 22
7227 lstat64("/var/tmp/kdecache-root", {st_dev=makedev(3, 69),
st_ino=2453281, st_mode=S_IFDIR|0700, st_nlink=2, st_uid=0, st_gid=0,
st_size=4096, st_atime=2008/04/16-22:34:03,
st_mtime=2008/04/16-21:47:04, st_ctime=2008/04/16-21:47:04}) = 0
7227 getuid32() = 0
7227 exit_group(0) = ?

==> debugsocket.txt <==
7242 fstat64(3, {st_dev=makedev(3, 5), st_ino=874403,
st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_size=38420,
st_atime=2008/03/17-23:25:45, st_mtime=2007/11/21-16:39:46,
st_ctime=2008/03/17-23:25:32}) = 0
7242 mmap2(NULL, 41620, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE,
3, 0) = 0xb7b89000
7242 mmap2(0xb7b92000, 8192, PROT_READ|PROT_WRITE,
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8) = 0xb7b92000
7242 close(3) = 0
7242 munmap(0xb7f00000, 97642) = 0
7242 open("/etc/passwd", O_RDONLY) = 3
7242 fcntl64(3, F_GETFD) = 0
7242 fcntl64(3, F_SETFD, FD_CLOEXEC) = 0
7242 fstat64(3, {st_dev=makedev(3, 5), st_ino=1101667,
st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_size=1221,
st_atime=2008/04/17-23:08:33, st_mtime=2008/04/17-23:08:26,
st_ctime=2008/04/17-23:08:26}) = 0
7242 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS,
-1, 0) = 0xb7f17000
7242 read(3, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 1221
7242 close(3) = 0
7242 munmap(0xb7f17000, 4096) = 0
7242 stat64("/root/.kde", {st_dev=makedev(3, 5), st_ino=210500,
st_mode=S_IFDIR|0700, st_nlink=3, st_uid=0, st_gid=0, st_size=4096,
st_atime=2008/04/07-04:06:09, st_mtime=2008/04/19-16:03:13,
st_ctime=2008/04/19-16:03:13}) = 0
7242 uname({sysname="Linux", nodename="localhost",
release="2.6.22.18-desktop-1mdv", version="#1 SMP Mon Feb 11 13:53:50
EST 2008", machine="i686"}) = 0
7242 lstat64("/root/.kde/socket-localhost", {st_dev=makedev(3, 5),
st_ino=210520, st_mode=S_IFLNK|0777, st_nlink=1, st_uid=0, st_gid=0,
st_size=22, st_atime=2008/04/19-16:03:39, st_mtime=2008/04/19-16:03:08,
st_ctime=2008/04/19-16:03:08}) = 0
7242 readlink("/root/.kde/socket-localhost", "/root/tmp/ksocket-root",
4096) = 22
7242 lstat64("/root/tmp/ksocket-root", {st_dev=makedev(3, 5),
st_ino=210519, st_mode=S_IFDIR|0700, st_nlink=2, st_uid=0, st_gid=0,
st_size=4096, st_atime=2008/04/19-16:03:08,
st_mtime=2008/04/19-16:03:08, st_ctime=2008/04/19-16:03:08}) = 0
7242 getuid32() = 0
7242 exit_group(0) = ?

==> debugtmp.txt <==
7246 fstat64(3, {st_dev=makedev(3, 5), st_ino=874403,
st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_size=38420,
st_atime=2008/03/17-23:25:45, st_mtime=2007/11/21-16:39:46,
st_ctime=2008/03/17-23:25:32}) = 0
7246 mmap2(NULL, 41620, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE,
3, 0) = 0xb7c20000
7246 mmap2(0xb7c29000, 8192, PROT_READ|PROT_WRITE,
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8) = 0xb7c29000
7246 close(3) = 0
7246 munmap(0xb7f97000, 97642) = 0
7246 open("/etc/passwd", O_RDONLY) = 3
7246 fcntl64(3, F_GETFD) = 0
7246 fcntl64(3, F_SETFD, FD_CLOEXEC) = 0
7246 fstat64(3, {st_dev=makedev(3, 5), st_ino=1101667,
st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_size=1221,
st_atime=2008/04/17-23:08:33, st_mtime=2008/04/17-23:08:26,
st_ctime=2008/04/17-23:08:26}) = 0
7246 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS,
-1, 0) = 0xb7fae000
7246 read(3, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 1221
7246 close(3) = 0
7246 munmap(0xb7fae000, 4096) = 0
7246 stat64("/root/.kde", {st_dev=makedev(3, 5), st_ino=210500,
st_mode=S_IFDIR|0700, st_nlink=3, st_uid=0, st_gid=0, st_size=4096,
st_atime=2008/04/07-04:06:09, st_mtime=2008/04/19-16:03:13,
st_ctime=2008/04/19-16:03:13}) = 0
7246 uname({sysname="Linux", nodename="localhost",
release="2.6.22.18-desktop-1mdv", version="#1 SMP Mon Feb 11 13:53:50
EST 2008", machine="i686"}) = 0
7246 lstat64("/root/.kde/tmp-localhost", {st_dev=makedev(3, 5),
st_ino=210528, st_mode=S_IFLNK|0777, st_nlink=1, st_uid=0, st_gid=0,
st_size=18, st_atime=2008/04/19-16:03:49, st_mtime=2008/04/19-16:03:13,
st_ctime=2008/04/19-16:03:13}) = 0
7246 readlink("/root/.kde/tmp-localhost", "/root/tmp/kde-root", 4096) = 18
7246 lstat64("/root/tmp/kde-root", {st_dev=makedev(3, 5),
st_ino=210527, st_mode=S_IFDIR|0700, st_nlink=2, st_uid=0, st_gid=0,
st_size=4096, st_atime=2008/04/20-19:06:07,
st_mtime=2008/04/19-16:03:13, st_ctime=2008/04/19-16:03:13}) = 0
7246 getuid32() = 0
7246 exit_group(0) = ?

David W. Hodgins

unread,
Apr 20, 2008, 5:11:03 PM4/20/08
to
On Sun, 20 Apr 2008 16:41:26 -0400, Carlton <USE...@adent.demon.co.uk> wrote:

> Here are the last 20 lines of each of the 3 files.

> 7246 readlink("/root/.kde/tmp-localhost", "/root/tmp/kde-root", 4096) = 18

> 7246 exit_group(0) = ?

All three worked. It does make it clear that you are trying to start kde
while running as root. Do the directories /var/tmp/kdecache-root and /root/tmp/
exist?

Have you tried starting kde as a regular user?

Also, delete the file and symlink starting with ~/.DCOPserver and the
files ~/.ICEauthority, ~/.Xauthority, as well as any files starting
with ~/.xauth, to ensure a change in the hostname, isn't causing the
problem.

Carlton

unread,
Apr 20, 2008, 5:20:21 PM4/20/08
to
Jim Beard wrote:
> Carlton wrote:
>> [claire@localhost ~]$ df -h
>> Filesystem Size Used Avail Use% Mounted on
>> /dev/hdb2 20G 17G 1.8G 91% /home
>> /dev/hdb6 25G 23G 88M 100% /mnt/hdb6
>> /dev/hdd8 39G 37G 627M 99% /mnt/Backup
>> /dev/hdd1 79G 72G 6.4G 92% /mnt/wincopy
>>
>> there are no system files on /mnt/hdb6
>>
>> I think all is well with these directories now.
>>
>> At least I have 1 user working
>> Anyone any ideas?
>
> df seems to think there is something filling hdb6. hdd8
> likewise could be a problem, 627M notwithstanding. hdb2
> and hdd1 with 91 and 92 percent respectively should work,
> but that might depend on what is being put in tmp storage.
>
> Cheers!
>
> jim b.
Jim,
I have had a bit of a clearout, the revise out put from df is;
[root@localhost /]# df -h

Filesystem Size Used Avail Use% Mounted on
/dev/hda5 8.9G 3.9G 4.6G 46% /
/dev/hdb2 20G 15G 4.6G 76% /home

/dev/hdb3 30G 9.0G 20G 32% /mnt/hdb3
/dev/hdb5 20G 8.9G 9.5G 49% /mnt/hdb5
/dev/hdb6 25G 19G 4.5G 81% /mnt/hdb6

/dev/hdd5 20G 16G 3.1G 84% /mnt/M2008/home
/dev/hdd6 20G 13G 7.3G 63% /mnt/hdd6-music
/dev/hdd7 29G 14G 14G 51% /mnt/M2008/root
/dev/hdd8 39G 37G 627M 99% /mnt/Backup
/dev/hdd1 79G 72G 6.4G 92% /mnt/wincopy
Note: system partitions are
/dev/hda5 - /
/dev/hdb2 - /home
/dev/hdb5 - /var and some other stuff
None of the partitions holding any system data are close to being full,
so I don't see that the problem can be a full filesystem.
Carlton.

Carlton

unread,
Apr 20, 2008, 5:40:01 PM4/20/08
to
David W. Hodgins wrote:
> On Sun, 20 Apr 2008 16:41:26 -0400, Carlton <USE...@adent.demon.co.uk> wrote:
>
>> Here are the last 20 lines of each of the 3 files.
>> 7246 readlink("/root/.kde/tmp-localhost", "/root/tmp/kde-root", 4096) = 18
>> 7246 exit_group(0) = ?
>
> All three worked. It does make it clear that you are trying to start kde
> while running as root. Do the directories /var/tmp/kdecache-root and /root/tmp/
> exist?
Both of these directories exist. I was not attempting to start kde as
root, but I did run the strace command from a root shell.

>
> Have you tried starting kde as a regular user?
I get the lnusertmp error whilst trying to login to kde

>
> Also, delete the file and symlink starting with ~/.DCOPserver and the
> files ~/.ICEauthority, ~/.Xauthority, as well as any files starting
> with ~/.xauth, to ensure a change in the hostname, isn't causing the
> problem.
>
I removed the files ~/.ICEauthority, ~/.Xauthority from the user with
the problem, but I still get the lnusertemp error message when logging
into kde.
I also created a new user,
copied my home directory (which does work with kde)
changed ownership of all the files to the new user.
Which should have created a clone of my login.
This new user could also not start kde, nor can a new user created from
mcc. I'm getting very confused.
Carlton

Jim Beard

unread,
Apr 20, 2008, 11:19:41 PM4/20/08
to
Carlton wrote:
> As to the location of /var, that was moved to hdb5
> The fstab entry is
>
> grep hdb5 /etc/fstab
> /dev/hdb5 /mnt/hdb5 ext3 relatime 1 2

If hdb5 is mounted on /mnt/hdb5, where precisely and
how is /var located? Try cd /var and run df -k . there.
Then cd /var/tmp and repeat.

Provide a copy of fstab, and maybe mtab too. Do an
ls -l /
and provide that. If you have locate installed, run
locate tmp
and take a look at what tmp directories exist, where.
You might then cd to each of them, and run df -k .
from within the tmp directory, just to see if maybe
the thing is actually on a partition that is in fact
full.

You keep saying it is not a full partition, and you may
be right, but until I see details that tell me where
things are and confirmation that there is no tmp
directory on a full partition, I must asssume that it
is a possiblity, and perhaps the most probable.

Carlton

unread,
Apr 21, 2008, 2:02:27 AM4/21/08
to
Jim Beard wrote:
> Carlton wrote:
>> As to the location of /var, that was moved to hdb5
>> The fstab entry is
>>
>> grep hdb5 /etc/fstab
>> /dev/hdb5 /mnt/hdb5 ext3 relatime 1 2
>
> If hdb5 is mounted on /mnt/hdb5, where precisely and
> how is /var located? Try cd /var and run df -k . there.
> Then cd /var/tmp and repeat.
>
[root@localhost /]# ls -al
total 128
drwxr-xr-x 21 root root 4096 2008-04-21 06:36 ./
drwxr-xr-x 21 root root 4096 2008-04-21 06:36 ../
-rw-r--r-- 1 root root 0 2008-04-21 06:36 .autofsck
drwxr-xr-x 2 root root 4096 2008-04-18 00:33 bin/
drwxr-xr-x 3 root root 4096 2008-04-21 06:36 boot/
-rw-r--r-- 1 root root 11575 2008-04-20 19:07 debugcache.txt
-rw-r--r-- 1 root root 11576 2008-04-20 19:09 debugsocket.txt
-rw-r--r-- 1 root root 11559 2008-04-20 19:09 debugtmp.txt
drwxr-xr-x 19 root root 15180 2008-04-21 06:37 dev/
drwxr-xr-x 93 root root 12288 2008-04-21 06:36 etc/
drwxr-xr-x 7 root root 4096 2008-04-17 23:08 home/
drwxr-xr-x 2 root root 4096 2008-03-18 07:25 initrd/
drwx------ 3 root root 4096 2008-03-17 23:11 .kde/
drwxr-xr-x 13 root root 4096 2008-04-21 06:36 lib/
drwx------ 2 root root 16384 2008-03-17 21:53 lost+found/
drwxr-xr-x 9 root root 4096 2008-04-20 19:34 media/
drwxr-xr-x 15 root root 4096 2008-03-20 23:14 mnt/
drwxr-xr-x 4 root root 4096 2008-03-17 23:53 opt/
dr-xr-xr-x 110 root root 0 2008-04-21 06:35 proc/
drwx------ 13 root root 4096 2008-04-21 06:50 root/
drwxr-xr-x 2 root root 4096 2008-03-25 22:48 sbin/
drwxr-xr-x 11 root root 0 2008-04-21 06:35 sys/
drwxrwxrwt 9 root root 4096 2008-04-21 06:37 tmp/
drwxr-xr-x 13 root root 4096 2008-03-20 18:59 usr/
lrwxrwxrwx 1 root root 21 2008-04-16 00:03 var ->
/mnt/hdb5/M2008.0-var/
drwxr-xr-x 2 root root 4096 2008-04-15 23:32 varOLD/ (empty directory)

[root@localhost var]# cd /var
[root@localhost var]# df -k


Filesystem 1K-blocks Used Available Use% Mounted on

/dev/hda5 9292992 4056440 4764484 46% /
/dev/hdb2 20641788 15508544 4084604 80% /home


/dev/hdb3 30961696 9377892 20011044 32% /mnt/hdb3

/dev/hdb5 20200708 9237204 9937356 49% /mnt/hdb5
/dev/hdb6 25197220 19549000 4624240 81% /mnt/hdb6


/dev/hdd5 20271580 16014848 3226968 84% /mnt/M2008/home
/dev/hdd6 20464800 12826752 7638048 63% /mnt/hdd6-music
/dev/hdd7 30241928 14475224 14230492 51% /mnt/M2008/root
/dev/hdd8 40701388 37992104 641724 99% /mnt/Backup
/dev/hdd1 82172464 75481792 6690672 92% /mnt/wincopy

[root@localhost var]# cd /var/tmp
[root@localhost tmp]# df -k


Filesystem 1K-blocks Used Available Use% Mounted on

/dev/hda5 9292992 4056440 4764484 46% /
/dev/hdb2 20641788 15510408 4082740 80% /home


/dev/hdb3 30961696 9377892 20011044 32% /mnt/hdb3

/dev/hdb5 20200708 9237204 9937356 49% /mnt/hdb5
/dev/hdb6 25197220 19549000 4624240 81% /mnt/hdb6


/dev/hdd5 20271580 16014848 3226968 84% /mnt/M2008/home
/dev/hdd6 20464800 12826752 7638048 63% /mnt/hdd6-music
/dev/hdd7 30241928 14475224 14230492 51% /mnt/M2008/root
/dev/hdd8 40701388 37992104 641724 99% /mnt/Backup
/dev/hdd1 82172464 75481792 6690672 92% /mnt/wincopy

> Provide a copy of fstab, and maybe mtab too. Do an


> ls -l /
> and provide that. If you have locate installed, run
> locate tmp
> and take a look at what tmp directories exist, where.
> You might then cd to each of them, and run df -k .
> from within the tmp directory, just to see if maybe
> the thing is actually on a partition that is in fact
> full.

[root@localhost tmp]# cat /etc/fstab
#
# fstab file for the temporary system whilst awaiting the new
motherboard fro AriesTheRam
#
### /dev/hda - 10Gb main boot disk, contains the M2008.0 root file
system and the swap partition
/dev/hda5 / ext3 relatime 1 1
#
### /dev/hdb 140Gb disk with 1st 20Gb scrap. should only contain /home
#
/dev/hdb2 /home ext3 relatime 1 2
/dev/cdrom2 /media/cdrom2 auto
umask=0022,users,iocharset=utf8,noauto,ro,exec 0 0
/dev/fd0 /media/floppy auto
umask=0022,users,iocharset=utf8,noauto,exec,flush 0 0
### /dev/hdb3 old M2006 partitions taken from the failed 13Gb disk
before it was scrapped.
/dev/hdb3 /mnt/hdb3 ext3 relatime 1 2
## /dev/hdb5 - not currently used


/dev/hdb5 /mnt/hdb5 ext3 relatime 1 2

### /dev/hdb6 copy uf Windows XP Documnts and settings for Carlton &
Claire + /Windows directory
/dev/hdb6 /mnt/hdb6 ext3 relatime 1 2
#
# /dev/hdd 200Gb drive
#
### /dev/hdd5 is the home directory for the original M2008.0 AriesTheRam
installation.
## set to read only to preserve integrity
/dev/hdd5 /mnt/M2008/home ext2 sync,ro,relatime 1 2
### /dev/hdd6 (VFAT32) MP3 collection and the Win_Fdrive
/dev/hdd6 /mnt/hdd6-music vfat
umask=0000,users,iocharset=utf8,auto,rw,exec 0 0
### /dev/hdd7 is root directory for original M2008.0 installation on
AriesTheRam
## set to read only to preserve integrity
/dev/hdd7 /mnt/M2008/root ext2 sync,ro,relatime 1 2
### /dev/hdd8, M208.0 backup partition
/dev/hdd8 /mnt/Backup ext2 sync,relatime 1 2
### /dev/hdd1 VFAT copy of most of the Windows drive (AriesTheRam /dev/hda)
/dev/hdd1 /mnt/wincopy vfat
umask=0000,users,iocharset=utf8,sync,auto,rw,exec 0 0
none /proc proc defaults 0 0
/dev/hda1 swap swap defaults 0 0
[root@localhost tmp]#
[root@localhost tmp]#
[root@localhost tmp]#
[root@localhost tmp]# cat /etc/mtab
/dev/hda5 / ext3 rw,relatime 0 0
none /proc proc rw 0 0
/dev/hdb2 /home ext3 rw,relatime 0 0
/dev/hdb3 /mnt/hdb3 ext3 rw,relatime 0 0
/dev/hdb5 /mnt/hdb5 ext3 rw,relatime 0 0
/dev/hdb6 /mnt/hdb6 ext3 rw,relatime 0 0
/dev/hdd5 /mnt/M2008/home ext2 ro,sync,relatime 0 0
/dev/hdd6 /mnt/hdd6-music vfat
rw,nosuid,nodev,users,umask=0000,iocharset=utf8 0 0
/dev/hdd7 /mnt/M2008/root ext2 ro,sync,relatime 0 0
/dev/hdd8 /mnt/Backup ext2 rw,sync,relatime 0 0
/dev/hdd1 /mnt/wincopy vfat
rw,nosuid,nodev,sync,users,umask=0000,iocharset=utf8 0 0
none /proc/sys/fs/binfmt_misc binfmt_misc rw 0 0
[root@localhost tmp]#


>
> You keep saying it is not a full partition, and you may
> be right, but until I see details that tell me where
> things are and confirmation that there is no tmp
> directory on a full partition, I must asssume that it
> is a possiblity, and perhaps the most probable.
>
> Cheers!
>
> jim b.
>

I no longer have any full partitions, but I still have the lnusertemp error.
Also, it effects all userers except 1. I have checked the user groups,
all users appear only in the same 2 groups. a group caled users, and a
group the same as the login name.
Carlton.

David W. Hodgins

unread,
Apr 21, 2008, 11:29:59 AM4/21/08
to
On Sun, 20 Apr 2008 17:40:01 -0400, Carlton <USE...@adent.demon.co.uk> wrote:

> I removed the files ~/.ICEauthority, ~/.Xauthority from the user with
> the problem, but I still get the lnusertemp error message when logging
> into kde.

Did you remove the ~/DCOPserver... file and symlink?

Please run the strace of lnusertemp from one of the userid's with the
problem, and post the last 20 lines of the output.

Bit Twister

unread,
Apr 21, 2008, 12:58:28 PM4/21/08
to
On Wed, 16 Apr 2008 21:37:41 +0100, Carlton wrote:
>
> I had to move the /var directory from the root partition to another, as
> the system was over 95% full on a 9.5Gb partition.
> Since moving the /var directory to another partition and replacing it
> with a symbolic link the problem occurred.
> Would the move have broken some symbolic links?

Might depend on how you "moved" /var/


From what I have seen from your posts to date, at least one user works and
others are broke.

I would suggest using "find" to find the working user in /var
and check the other user's perms in the same area.

As for your settings in /var, here is a snippet from mine
obtained with
# ls -al /var/* > /tmp/aa
# ls -al /var/*/* >> /tmp/aa

I will have packages installed which you do not and vice versa.

I would first search this for "->" and verify your links match.
Then go back and check UID GID then perms

Perms UID GID
| | |
| | |
v v v

lrwxrwxrwx 1 root root 10 2008-04-10 05:54 /var/mail -> spool/mail

/var/cache:
total 48
drwxr-xr-x 12 root root 4096 2008-04-10 06:02 .
drwxr-xr-x 19 root root 4096 2008-04-10 07:50 ..
drwxrwxr-x 2 root sys 4096 2008-04-10 12:15 cups
drwxr-xr-x 3 root root 4096 2008-04-10 05:57 dirmngr
drwxr-xr-x 2 root root 4096 2008-04-10 08:05 fontconfig
drwxr-xr-x 2 root root 4096 2008-03-13 05:07 gstreamer-0.10
drwxr-x--- 2 haldaemon haldaemon 4096 2008-04-10 06:26 hald
drwx------ 3 apache root 4096 2008-04-10 06:12 httpd
drwxr-xr-x 2 root root 4096 2008-04-17 19:54 ldconfig
drwxr-xr-x 17 root root 4096 2008-04-10 09:36 man
drwxr-xr-x 4 root root 4096 2008-04-14 13:59 samba
drwxr-xr-x 5 root root 4096 2008-04-16 12:39 urpmi

/var/db:
total 8
drwxr-xr-x 2 root root 4096 2008-03-19 08:21 .
drwxr-xr-x 19 root root 4096 2008-04-10 07:50 ..

/var/empty:
total 8
drwxr-xr-x 2 root root 4096 2008-03-27 13:15 .
drwxr-xr-x 19 root root 4096 2008-04-10 07:50 ..

/var/ftp:
total 12
drwxr-xr-x 3 root root 4096 2008-04-10 06:16 .
drwxr-xr-x 19 root root 4096 2008-04-10 07:50 ..
drwxr-xr-x 2 root root 4096 2008-04-10 06:16 pub

/var/games:
total 12
drwxr-xr-x 3 root root 4096 2008-04-10 07:50 .
drwxr-xr-x 19 root root 4096 2008-04-10 07:50 ..
drwxr-xr-x 3 root root 4096 2008-04-10 07:50 rocksndiamonds

/var/lib:
total 160
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 .
drwxr-xr-x 19 root root 4096 2008-04-10 07:50 ..
drwx------ 2 root root 4096 2008-04-17 16:38 aide
lrwxrwxrwx 1 root root 16 2008-04-10 05:54 alternatives -> rpm/alternatives
drwxr-xr-x 2 root root 4096 2008-04-10 06:26 dbus
drwxr-xr-x 2 root root 4096 2008-04-10 06:12 dhcp
drwxr-xr-x 3 root root 4096 2008-04-10 05:57 dirmngr
drwxr-xr-x 3 root root 4096 2008-04-10 19:10 dkms
drwxr-xr-x 3 root root 4096 2008-04-10 19:21 dkms-binary
drwxr-xr-x 5 root root 4096 2008-04-10 07:56 games
drwxrwx--T 2 gdm gdm 4096 2008-03-11 07:54 gdm
drwxr-xr-x 3 root root 4096 2008-04-10 06:03 gnome
drwxr-xr-x 2 htdig htdig 4096 2008-03-25 12:39 htdig
drwxr-xr-x 3 root root 4096 2008-02-20 16:21 imap
drwxr-xr-x 3 root root 4096 2008-04-10 05:56 lock
-rw-r--r-- 1 root root 1493 2008-04-21 04:25 logrotate.status
drwxr-xr-x 3 root root 4096 2008-04-02 11:26 mandriva
drwxr-xr-x 3 root root 4096 2008-04-10 06:18 menu
drwxr-xr-x 2 root root 4096 2008-04-17 19:54 misc
drwxr-x--- 2 root slocate 4096 2008-04-21 04:26 mlocate
drwxr-xr-x 2 root root 4096 2008-04-10 06:41 msec
drwx--x--x 5 mysql mysql 4096 2008-04-10 06:06 mysql
drwx--x--x 2 mysql mysql 4096 2008-04-01 13:38 mysql-cluster
drwxr-xr-x 5 root root 4096 2008-04-10 07:24 named
drwxr-xr-x 6 root root 4096 2008-04-18 16:34 nfs
drwxr-xr-x 2 ntp ntp 4096 2008-04-21 11:34 ntp
drwx-wx-wt 2 apache apache 4096 2008-04-01 08:37 php
drwxrwx--- 2 polkituser polkituser 4096 2008-04-15 16:28 PolicyKit
drwxrwxr-x 2 polkituser polkituser 4096 2008-04-15 16:28 PolicyKit-public
drwx------ 2 postfix root 4096 2008-03-26 06:55 postfix
-rw------- 1 root root 512 2008-04-18 16:33 random-seed
drwxr-xr-x 2 root root 4096 2008-03-09 14:33 rarian
drwxr-xr-x 3 rpm rpm 4096 2008-04-19 11:59 rpm
drwxr-xr-x 6 root root 4096 2008-04-10 06:16 samba
drwxr-xr-x 2 root root 4096 2008-04-18 16:34 shorewall
drwxr-xr-x 2 root root 4096 2008-02-06 12:25 spamassassin
drwxr-xr-x 4 root root 4096 2008-04-10 05:54 stateless
drwxrwxrwt 2 root root 4096 2008-04-10 06:10 texmf
drwxr-xr-x 2 root root 4096 2008-04-17 19:54 urpmi
drwxr-xr-x 2 root root 4096 2008-04-10 13:05 xkb
drwxr-xr-x 2 root games 4096 2008-04-10 08:12 xlogical

/var/local:
total 8
drwxr-xr-x 2 root root 4096 2008-03-19 08:21 .
drwxr-xr-x 19 root root 4096 2008-04-10 07:50 ..

/var/lock:
total 16
drwxrwxr-x 4 root uucp 4096 2008-04-21 04:25 .
drwxr-xr-x 19 root root 4096 2008-04-10 07:50 ..
drwxr-xr-x 2 root root 4096 2008-04-14 14:49 dmraid
drwxr-xr-x 2 root root 4096 2008-04-18 16:34 subsys

/var/log:
total 2028
drwxr-xr-x 17 root root 4096 2008-04-21 04:36 .
drwxr-xr-x 19 root root 4096 2008-04-10 07:50 ..
-rw-r----- 1 root root 38115 2008-04-21 11:33 auth.log
-rw-r----- 1 root root 18991 2008-04-20 04:26 auth.log.1.gz
-rw-r----- 1 root root 10558 2008-04-13 04:26 auth.log.2.gz
-rw-r----- 1 root root 0 2008-04-20 04:26 boot.log
-rw-r----- 1 root root 146 2008-04-20 04:26 boot.log.1.gz
-rw-r----- 1 root root 171 2008-04-13 04:26 boot.log.2.gz
-rw-r----- 1 root root 768 2008-04-10 19:19 btmp
-rw-r----- 1 root root 4303 2008-04-18 16:34 coherence
drwxr-xr-x 2 root root 4096 2008-04-10 05:54 ConsoleKit
drwxr-xr-x 2 root root 4096 2008-04-20 04:26 cron
drwxr-xr-x 2 root sys 4096 2008-04-14 18:15 cups
drwxr-xr-x 2 root root 4096 2008-04-20 04:26 daemons
-rw-r----- 1 root root 19229 2008-04-18 16:33 dmesg
-rw-r----- 1 root root 19569 2008-04-18 16:32 dmesg.old
-rw-r----- 1 root root 0 2008-04-10 05:54 drakxtools.log
-rw------- 1 root root 1056 2008-04-21 08:44 explanations
-rw------- 1 root root 6073 2008-04-20 04:26 explanations.1.gz
-rw------- 1 root root 6274 2008-04-13 04:26 explanations.2.gz
-rw-r----- 1 root root 12024 2008-04-10 07:24 faillog
drwxr-xr-x 2 root root 4096 2008-03-11 07:54 gdm
drwxr-xr-x 2 root root 4096 2008-03-07 12:22 httpd
drwxr-xr-x 2 root root 4096 2008-04-20 04:26 kernel
-rw-r----- 1 root root 438292 2008-04-18 16:34 lastlog
drwxr-xr-x 2 root root 4096 2008-04-20 04:26 mail
-rw-r--r-- 1 root root 91350 2008-04-21 11:43 messages
-rw-r----- 1 root root 97611 2008-04-20 04:26 messages.1.gz
-rw-r----- 1 root root 112842 2008-04-13 04:26 messages.2.gz
drwxr-xr-x 2 mysql mysql 4096 2008-04-01 13:38 mysqld
-rw-r----- 1 root root 0 2008-04-10 06:06 pm-suspend.log
drwx------ 2 root root 4096 2008-04-11 11:45 ppp
-rw-r----- 1 root root 4664 2008-04-18 16:34 prcsys.log
drwx------ 2 daemon daemon 4096 2008-04-10 09:15 privoxy
drwxr-xr-x 2 root root 4096 2008-02-16 16:36 proftpd
-rw-r----- 1 root root 81864 2008-04-21 04:36 rpmpkgs
-rw-r----- 1 root root 17377 2008-04-20 04:26 rpmpkgs.1.gz
-rw-r----- 1 root root 17373 2008-04-13 04:26 rpmpkgs.2.gz
drwxr-xr-x 3 root root 4096 2008-04-20 04:26 samba
drwxr-xr-x 2 root root 4096 2008-04-21 04:35 security
-rw-r----- 1 root root 383174 2008-04-21 04:36 security.log
-rw------- 1 root root 82362 2008-04-21 11:33 sudo.log
-rw-r----- 1 root root 174249 2008-04-21 11:43 syslog
-rw-r----- 1 root root 169183 2008-04-20 04:26 syslog.1.gz
-rw-r----- 1 root root 146840 2008-04-13 04:26 syslog.2.gz
-rw-r----- 1 root root 0 2008-04-10 05:54 tallylog
-rw-r----- 1 root root 40548 2008-04-21 11:43 user.log
-rw-r----- 1 root root 41299 2008-04-20 04:26 user.log.1.gz
-rw-r----- 1 root root 35052 2008-04-13 04:26 user.log.2.gz
drwxr-xr-x 2 root root 4096 2008-04-10 06:17 webmin
-rw-r----- 1 root root 115968 2008-04-18 16:34 wtmp
-rw-rw-r-- 1 root bittwister 53287 2008-04-18 16:34 Xorg.0.log
-rw-r----- 1 root root 53545 2008-04-18 16:31 Xorg.0.log.old

/var/nis:
total 8
drwxr-xr-x 2 root root 4096 2008-03-19 08:21 .
drwxr-xr-x 19 root root 4096 2008-04-10 07:50 ..

/var/opt:
total 8
drwxr-xr-x 2 root root 4096 2008-03-19 08:21 .
drwxr-xr-x 19 root root 4096 2008-04-10 07:50 ..

/var/preserve:
total 8
drwxr-xr-x 2 root root 4096 2008-03-19 08:21 .
drwxr-xr-x 19 root root 4096 2008-04-10 07:50 ..

/var/run:
total 140
drwxr-xr-x 18 root root 4096 2008-04-21 11:01 .
drwxr-xr-x 19 root root 4096 2008-04-10 07:50 ..
srw-rw-rw- 1 root root 0 2008-04-18 16:33 acpid.socket
-rw-r--r-- 1 root root 0 2008-04-18 16:33 alsactl
-rw-r--r-- 1 root root 5 2008-04-18 16:33 atd.pid
drwxr-xr-x 2 root root 4096 2008-04-18 16:34 console
drwxr-x--- 2 root root 4096 2008-04-18 16:34 ConsoleKit
-rw-r--r-- 1 root root 5 2008-04-18 16:33 console-kit-daemon.pid
-rw-r--r-- 1 root root 5 2008-04-18 16:33 crond.pid
drwxr-xr-x 3 root sys 4096 2008-04-18 08:34 cups
drwxr-xr-x 2 root root 4096 2008-04-18 16:33 dbus
drwxr-xr-x 2 root root 4096 2008-02-21 11:58 dirmngr
drwxr-x--- 2 haldaemon haldaemon 4096 2008-04-18 16:34 hald
-rw-r--r-- 1 root root 5 2008-04-18 16:33 haldaemon.pid
drwxr-xr-x 2 root root 4096 2008-02-13 10:49 hplip
-rw-r--r-- 1 root root 5 2008-04-18 16:33 ifplugd.eth1.pid
-rw------- 1 root root 5 2008-04-18 16:33 klogd.pid
-rw-r--r-- 1 root root 5 2008-04-18 16:33 messagebus.pid
drwxr-xr-x 2 mysql mysql 4096 2008-04-01 13:38 mysqld
drwxrwxr-x 2 root root 4096 2008-04-04 11:21 netreport
-rw-r--r-- 1 root root 4 2008-04-18 16:34 ntpd.pid
drwxrwx--- 2 polkituser polkituser 4096 2008-04-15 16:28 PolicyKit
-rw------- 1 root root 419 2008-04-18 16:34 portmap_mapping
drwxr-xr-x 2 root root 4096 2008-04-17 22:02 ppp
-rw-r--r-- 1 root root 5 2008-04-18 16:33 privoxy.pid
drwxr-xr-x 2 root root 4096 2008-02-16 16:36 proftpd
drwxr-xr-x 3 root root 4096 2008-04-18 18:51 resolvconf
-rw-r--r-- 1 rpcuser rpcuser 5 2008-04-18 16:33 rpc.statd.pid
-rw-r--r-- 1 root root 11 2008-04-18 16:33 runlevel.dir
drwxr-xr-x 2 root root 4096 2008-03-23 09:27 samba
-rw------- 1 root root 5 2008-04-18 16:33 sm-notify.pid
-rw-r--r-- 1 root root 5 2008-04-18 16:34 sshd.pid
drwx------ 4 root root 4096 2008-04-10 19:04 sudo
-rw------- 1 root root 5 2008-04-18 16:33 syslogd.pid
-rw-rw-r-- 1 root utmp 3840 2008-04-18 16:34 utmp
drwx------ 2 root bin 4096 2008-04-17 22:02 webmin
-rw-r--r-- 1 root root 5 2008-04-18 16:33 xinetd.pid

/var/spool:
total 44
drwxr-xr-x 11 root root 4096 2008-04-10 06:16 .
drwxr-xr-x 19 root root 4096 2008-04-10 07:50 ..
drwx------ 3 daemon daemon 4096 2008-04-21 11:27 at
drwx------ 2 root root 4096 2008-04-10 06:41 cron
drwx--x--- 3 root sys 4096 2008-04-14 18:38 cups
drwxr-xr-x 2 root daemon 4096 2008-03-19 08:21 lpd
drwxrwsr-x 2 root mail 4096 2008-04-21 11:00 mail
drwxr-xr-x 21 root root 4096 2008-04-10 07:07 postfix
drwxr-xr-x 2 root root 4096 2008-04-01 15:25 repackage
drwxrwxrwt 2 root root 4096 2008-03-23 09:27 samba
drwxrwxrwx 2 root root 4096 2008-02-06 12:25 spamassassin

/var/tmp:
total 8
drwxrwxrwt 2 root root 4096 2008-04-21 11:33 .
drwxr-xr-x 19 root root 4096 2008-04-10 07:50 ..

/var/www:
total 28
drwxr-xr-x 7 apache apache 4096 2008-04-10 05:59 .
drwxr-xr-x 19 root root 4096 2008-04-10 07:50 ..
drwxr-xr-x 2 root root 4096 2008-04-10 05:59 cgi-bin
drwxr-xr-x 3 root root 4096 2008-04-10 05:59 error
drwxr-xr-x 3 root root 4096 2008-04-10 05:59 html
drwxr-xr-x 3 root root 4096 2008-04-10 05:59 icons
drwxr-xr-x 2 root root 4096 2008-04-10 06:11 perl

/var/yp:
total 8
drwxr-xr-x 2 root root 4096 2008-03-19 08:21 .
drwxr-xr-x 19 root root 4096 2008-04-10 07:50 ..
lrwxrwxrwx 1 root root 16 2008-04-10 05:54 /var/lib/alternatives -> rpm/alternatives
-rw-r--r-- 1 root root 1493 2008-04-21 04:25 /var/lib/logrotate.status
-rw------- 1 root root 512 2008-04-18 16:33 /var/lib/random-seed
-rw-r----- 1 root root 38115 2008-04-21 11:33 /var/log/auth.log
-rw-r----- 1 root root 18991 2008-04-20 04:26 /var/log/auth.log.1.gz
-rw-r----- 1 root root 10558 2008-04-13 04:26 /var/log/auth.log.2.gz
-rw-r----- 1 root root 0 2008-04-20 04:26 /var/log/boot.log
-rw-r----- 1 root root 146 2008-04-20 04:26 /var/log/boot.log.1.gz
-rw-r----- 1 root root 171 2008-04-13 04:26 /var/log/boot.log.2.gz
-rw-r----- 1 root root 768 2008-04-10 19:19 /var/log/btmp
-rw-r----- 1 root root 4303 2008-04-18 16:34 /var/log/coherence
-rw-r----- 1 root root 19229 2008-04-18 16:33 /var/log/dmesg
-rw-r----- 1 root root 19569 2008-04-18 16:32 /var/log/dmesg.old
-rw-r----- 1 root root 0 2008-04-10 05:54 /var/log/drakxtools.log
-rw------- 1 root root 1056 2008-04-21 08:44 /var/log/explanations
-rw------- 1 root root 6073 2008-04-20 04:26 /var/log/explanations.1.gz
-rw------- 1 root root 6274 2008-04-13 04:26 /var/log/explanations.2.gz
-rw-r----- 1 root root 12024 2008-04-10 07:24 /var/log/faillog
-rw-r----- 1 root root 438292 2008-04-18 16:34 /var/log/lastlog
-rw-r--r-- 1 root root 91350 2008-04-21 11:43 /var/log/messages
-rw-r----- 1 root root 97611 2008-04-20 04:26 /var/log/messages.1.gz
-rw-r----- 1 root root 112842 2008-04-13 04:26 /var/log/messages.2.gz
-rw-r----- 1 root root 0 2008-04-10 06:06 /var/log/pm-suspend.log
-rw-r----- 1 root root 4664 2008-04-18 16:34 /var/log/prcsys.log
-rw-r----- 1 root root 81864 2008-04-21 04:36 /var/log/rpmpkgs
-rw-r----- 1 root root 17377 2008-04-20 04:26 /var/log/rpmpkgs.1.gz
-rw-r----- 1 root root 17373 2008-04-13 04:26 /var/log/rpmpkgs.2.gz
-rw-r----- 1 root root 383174 2008-04-21 04:36 /var/log/security.log
-rw------- 1 root root 82362 2008-04-21 11:33 /var/log/sudo.log
-rw-r----- 1 root root 174249 2008-04-21 11:43 /var/log/syslog
-rw-r----- 1 root root 169183 2008-04-20 04:26 /var/log/syslog.1.gz
-rw-r----- 1 root root 146840 2008-04-13 04:26 /var/log/syslog.2.gz
-rw-r----- 1 root root 0 2008-04-10 05:54 /var/log/tallylog
-rw-r----- 1 root root 40548 2008-04-21 11:43 /var/log/user.log
-rw-r----- 1 root root 41299 2008-04-20 04:26 /var/log/user.log.1.gz
-rw-r----- 1 root root 35052 2008-04-13 04:26 /var/log/user.log.2.gz
-rw-r----- 1 root root 115968 2008-04-18 16:34 /var/log/wtmp
-rw-rw-r-- 1 root bittwister 53287 2008-04-18 16:34 /var/log/Xorg.0.log
-rw-r----- 1 root root 53545 2008-04-18 16:31 /var/log/Xorg.0.log.old
-rw------- 1 bittwister mail 44432 2008-04-21 11:00 /var/mail/bittwister
srw-rw-rw- 1 root root 0 2008-04-18 16:33 /var/run/acpid.socket
-rw-r--r-- 1 root root 0 2008-04-18 16:33 /var/run/alsactl
-rw-r--r-- 1 root root 5 2008-04-18 16:33 /var/run/atd.pid
-rw-r--r-- 1 root root 5 2008-04-18 16:33 /var/run/console-kit-daemon.pid
-rw-r--r-- 1 root root 5 2008-04-18 16:33 /var/run/crond.pid
-rw-r--r-- 1 root root 5 2008-04-18 16:33 /var/run/haldaemon.pid
-rw-r--r-- 1 root root 5 2008-04-18 16:33 /var/run/ifplugd.eth1.pid
-rw------- 1 root root 5 2008-04-18 16:33 /var/run/klogd.pid
-rw-r--r-- 1 root root 5 2008-04-18 16:33 /var/run/messagebus.pid
-rw-r--r-- 1 root root 4 2008-04-18 16:34 /var/run/ntpd.pid
-rw------- 1 root root 419 2008-04-18 16:34 /var/run/portmap_mapping
-rw-r--r-- 1 root root 5 2008-04-18 16:33 /var/run/privoxy.pid
-rw-r--r-- 1 rpcuser rpcuser 5 2008-04-18 16:33 /var/run/rpc.statd.pid
-rw-r--r-- 1 root root 11 2008-04-18 16:33 /var/run/runlevel.dir
-rw------- 1 root root 5 2008-04-18 16:33 /var/run/sm-notify.pid
-rw-r--r-- 1 root root 5 2008-04-18 16:34 /var/run/sshd.pid
-rw------- 1 root root 5 2008-04-18 16:33 /var/run/syslogd.pid
-rw-rw-r-- 1 root utmp 3840 2008-04-18 16:34 /var/run/utmp
-rw-r--r-- 1 root root 5 2008-04-18 16:33 /var/run/xinetd.pid

/var/cache/cups:
total 3208
drwxrwxr-x 2 root sys 4096 2008-04-10 12:15 .
drwxr-xr-x 12 root root 4096 2008-04-10 06:02 ..
-rw-r----- 1 root sys 912 2008-04-18 08:34 job.cache
-rw------- 1 lp sys 3261316 2008-04-14 18:18 ppds.dat
-rw-r----- 1 root sys 75 2008-04-18 08:34 remote.cache

/var/cache/dirmngr:
total 12
drwxr-xr-x 3 root root 4096 2008-04-10 05:57 .
drwxr-xr-x 12 root root 4096 2008-04-10 06:02 ..
drwxr-xr-x 2 root root 4096 2008-02-21 11:58 crls.d

/var/cache/fontconfig:
total 744
drwxr-xr-x 2 root root 4096 2008-04-10 08:05 .
drwxr-xr-x 12 root root 4096 2008-04-10 06:02 ..
-rw-r--r-- 1 root root 160 2008-04-10 05:55 0251a5afa6ac727a1e32b7d4d4aa7cf0-x86.cache-2
-rw-r--r-- 1 root root 266088 2008-04-10 08:05 17090aa38d5c6f09fb8c5c354938f1d7-x86.cache-2
-rw-r--r-- 1 root root 23112 2008-04-10 05:54 20b58f14c9b581391d79ea335a81488a-x86.cache-2
-rw-r--r-- 1 root root 80 2008-04-10 05:58 2d31a572ce6667f6a0da9c8dc611898b-x86.cache-2
-rw-r--r-- 1 root root 72 2008-04-10 05:58 30786aca7a961ef9f9799e540455831d-x86.cache-2
-rw-r--r-- 1 root root 376 2008-04-10 05:58 3830d5c3ddfd5cd38a049b759396e72e-x86.cache-2
-rw-r--r-- 1 root root 80 2008-04-10 05:58 4485de6ed9ec0554abd21efd5416b572-x86.cache-2
-rw-r--r-- 1 root root 5664 2008-04-10 05:56 54c1e18aebbedcfe0b7e9af239200de0-x86.cache-2
-rw-r--r-- 1 root root 10040 2008-04-10 05:56 5d999c1bbe32f61af008974facb58b71-x86.cache-2
-rw-r--r-- 1 root root 24704 2008-04-10 05:58 79aeb4e90a401e55ec91db207072ba77-x86.cache-2
-rw-r--r-- 1 root root 5120 2008-04-10 05:55 87f5e051180a7a75f16eb6fe7dbd3749-x86.cache-2
-rw-r--r-- 1 root root 64176 2008-04-10 08:05 8d4af663993b81a124ee82e610bb31f9-x86.cache-2
-rw-r--r-- 1 root root 22872 2008-04-10 05:54 b79f3aaa7d385a141ab53ec885cc22a8-x86.cache-2
-rw-r--r-- 1 root root 18272 2008-04-10 08:05 d62e99ef547d1d24cdb1bd22ec1a2976-x86.cache-2
-rw-r--r-- 1 root root 238464 2008-04-10 06:05 df311e82a1a24c41a75c2c930223552e-x86.cache-2
-rw-r--r-- 1 root root 72 2008-04-10 05:58 f349e9996a5320f6dd491cedd2b1f964-x86.cache-2
-rw-r--r-- 1 root root 9664 2008-04-10 08:05 f6b893a7224233d96cb72fd88691c0b4-x86.cache-2
-rw-r--r-- 1 root root 1456 2008-04-10 06:05 ff240f9f322423952afb0acdf5235e2a-x86.cache-2

/var/cache/gstreamer-0.10:
total 8
drwxr-xr-x 2 root root 4096 2008-03-13 05:07 .
drwxr-xr-x 12 root root 4096 2008-04-10 06:02 ..

/var/cache/hald:
total 744
drwxr-x--- 2 haldaemon haldaemon 4096 2008-04-10 06:26 .
drwxr-xr-x 12 root root 4096 2008-04-10 06:02 ..
-rw-r--r-- 1 root root 748856 2008-04-10 06:26 fdi-cache

/var/cache/httpd:
total 12
drwx------ 3 apache root 4096 2008-04-10 06:12 .
drwxr-xr-x 12 root root 4096 2008-04-10 06:02 ..
drwx------ 2 apache root 4096 2008-04-10 06:12 mod_ssl

/var/cache/ldconfig:
total 96
drwxr-xr-x 2 root root 4096 2008-04-17 19:54 .
drwxr-xr-x 12 root root 4096 2008-04-10 06:02 ..
-rw------- 1 root root 85195 2008-04-17 19:54 aux-cache

/var/cache/man:
total 1868
drwxr-xr-x 17 root root 4096 2008-04-10 09:36 .
drwxr-xr-x 12 root root 4096 2008-04-10 06:02 ..
drwxrwxr-x 2 root man 4096 2008-01-15 12:54 cat1
drwxrwxr-x 2 root man 4096 2008-01-15 12:54 cat2
drwxrwxr-x 2 root man 4096 2008-01-15 12:54 cat3
drwxrwxr-x 2 root man 4096 2008-01-15 12:54 cat4
drwxrwxr-x 2 root man 4096 2008-01-15 12:54 cat5
drwxrwxr-x 2 root man 4096 2008-01-15 12:54 cat6
drwxrwxr-x 2 root man 4096 2008-01-15 12:54 cat7
drwxrwxr-x 2 root man 4096 2008-01-15 12:54 cat8
drwxrwxr-x 2 root man 4096 2008-01-15 12:54 cat9
drwxrwxr-x 2 root man 4096 2008-01-15 12:54 catn
drwxr-xr-x 2 root root 4096 2008-04-10 09:36 de
drwxr-xr-x 2 root root 4096 2008-04-10 09:36 en
drwxr-xr-x 2 root root 4096 2008-04-10 09:36 fr
drwxrwxr-x 12 root man 4096 2008-04-10 05:57 local
-rw-r--r-- 1 root man 1835192 2008-04-21 04:25 whatis
drwxrwxr-x 12 root man 4096 2008-04-10 05:57 X11R6

/var/cache/samba:
total 200
drwxr-xr-x 4 root root 4096 2008-04-14 13:59 .
drwxr-xr-x 12 root root 4096 2008-04-10 06:02 ..
-rw------- 1 root root 4096 2008-04-15 12:43 account_policy.tdb
-rw-r--r-- 1 root root 40200 2008-04-14 13:12 brlock.tdb
-rw-r--r-- 1 root root 152 2008-04-14 13:38 browse.dat
-rw-r--r-- 1 root root 12288 2008-04-15 05:51 connections.tdb
-rw-r--r-- 1 root root 4096 2008-04-18 18:19 gencache.tdb
-rw------- 1 root root 8192 2008-04-14 13:10 group_mapping.tdb
-rw-r--r-- 1 root root 45056 2008-04-14 18:57 locking.tdb
-rw------- 1 root root 4096 2008-04-14 13:18 messages.tdb
-rw-r--r-- 1 root root 4096 2008-04-14 18:58 notify.tdb
-rw------- 1 root root 4096 2008-04-14 13:12 ntdrivers.tdb
-rw------- 1 root root 696 2008-04-14 13:12 ntforms.tdb
-rw------- 1 root root 8192 2008-04-14 13:18 ntprinters.tdb
drwxr-xr-x 2 root root 4096 2008-04-14 13:12 perfmon
drwxr-xr-x 2 root root 4096 2008-04-14 13:12 printing
-rw------- 1 root root 16384 2008-04-14 13:12 registry.tdb
-rw-r--r-- 1 root root 20480 2008-04-14 18:58 sessionid.tdb
-rw------- 1 root root 4096 2008-04-14 13:17 share_info.tdb
-rw-r--r-- 1 root root 4096 2008-04-14 13:23 unexpected.tdb

/var/cache/urpmi:
total 152
drwxr-xr-x 5 root root 4096 2008-04-16 12:39 .
drwxr-xr-x 12 root root 4096 2008-04-10 06:02 ..
drwxr-xr-x 2 root root 4096 2008-04-03 08:38 headers
-rw-r--r-- 1 root root 127376 2008-04-16 12:39 mirrors.cache
drwxr-xr-x 2 root root 4096 2008-04-19 11:59 partial
drwxr-xr-x 2 root root 4096 2008-04-19 11:59 rpms

/var/ftp/pub:
total 12
drwxr-xr-x 2 root root 4096 2008-04-10 06:16 .
drwxr-xr-x 3 root root 4096 2008-04-10 06:16 ..
-rw-r--r-- 1 root root 166 2008-02-16 16:37 welcome.msg

/var/games/rocksndiamonds:
total 12
drwxr-xr-x 3 root root 4096 2008-04-10 07:50 .
drwxr-xr-x 3 root root 4096 2008-04-10 07:50 ..
drwxr-xr-x 2 root root 4096 2007-11-12 16:29 scores

/var/lib/aide:
total 35172
drwx------ 2 root root 4096 2008-04-17 16:38 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
-rw------- 1 root root 35964287 2008-04-17 16:38 aide.db

/var/lib/dbus:
total 12
drwxr-xr-x 2 root root 4096 2008-04-10 06:26 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
-rw-r--r-- 1 root root 33 2008-04-10 06:26 machine-id

/var/lib/dhcp:
total 8
drwxr-xr-x 2 root root 4096 2008-04-10 06:12 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
-rw-r--r-- 1 root root 0 2008-04-10 06:12 dhclient.leases

/var/lib/dirmngr:
total 12
drwxr-xr-x 3 root root 4096 2008-04-10 05:57 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
drwxr-xr-x 2 root root 4096 2008-02-21 11:58 extra-certs

/var/lib/dkms:
total 16
drwxr-xr-x 3 root root 4096 2008-04-10 19:10 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
-rw-r--r-- 1 root root 6 2007-05-16 23:02 dkms_dbversion
drwxr-xr-x 3 root root 4096 2008-04-10 19:10 fglrx

/var/lib/dkms-binary:
total 12
drwxr-xr-x 3 root root 4096 2008-04-10 19:21 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
drwxr-xr-x 3 root root 4096 2008-04-10 19:21 fglrx

/var/lib/games:
total 376
drwxr-xr-x 5 root root 4096 2008-04-10 07:56 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
-rw-rw-r-- 1 root games 80 2008-01-29 21:00 alienpool.scores
drwxr-xr-x 2 root root 4096 2008-04-10 06:04 emacs
-rw-rw-r-- 1 games games 26 2008-04-10 06:09 glines.Custom.scores
-rw-rw-r-- 1 games games 26 2008-04-10 06:09 glines.Large.scores
<snip>
-rw-rw-r-- 1 games games 26 2008-04-10 06:09 gtali.Colors.scores
-rw-rw-r-- 1 games games 26 2008-04-10 06:09 gtali.Regular.scores
-rw-rw-r-- 1 root games 229 2008-01-12 19:46 lbreakout2.hscr
-rw-rw-r-- 1 root games 280 2007-12-18 10:29 Maelstrom-Scores
-rw-rw-r-- 1 games games 26 2008-04-10 06:09 mahjongg.tictactoe.scores
-rw-rw-r-- 1 games games 26 2008-04-10 06:09 mahjongg.ziggurat.scores
drwxr-xr-x 4 root root 4096 2008-04-10 07:49 pinball
-rw-rw-r-- 1 root games 0 2008-04-10 07:50 powermanga.hi
-rw-rw-r-- 1 root games 0 2008-04-10 07:50 powermanga.hi-easy
-rw-rw-r-- 1 root games 0 2008-04-10 07:50 powermanga.hi-hard
-rw-rw-r-- 1 games games 26 2008-04-10 06:09 same-gnome.Large.scores
-rw-rw-r-- 1 games games 26 2008-04-10 06:09 same-gnome.Medium.scores
-rw-rw-r-- 1 games games 26 2008-04-10 06:09 same-gnome.Small.scores
drwxrwxr-x 2 root games 4096 2008-02-18 17:55 skobo
-rw-rw-r-- 1 root games 0 2008-04-10 07:56 toppler.hsc

/var/lib/gdm:
total 8
drwxrwx--T 2 gdm gdm 4096 2008-03-11 07:54 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..

/var/lib/gnome:
total 12
drwxr-xr-x 3 root root 4096 2008-04-10 06:03 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
drwxr-xr-x 2 root root 4096 2008-04-17 22:02 desktop

/var/lib/htdig:
total 8
drwxr-xr-x 2 htdig htdig 4096 2008-03-25 12:39 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..

/var/lib/imap:
total 12
drwxr-xr-x 3 root root 4096 2008-02-20 16:21 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
drwxr-xr-x 2 root root 4096 2008-04-10 07:23 ssl

/var/lib/lock:
total 12
drwxr-xr-x 3 root root 4096 2008-04-10 05:56 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
drwxrwxrwt 2 root root 4096 2008-02-19 05:49 sane

/var/lib/mandriva:
total 12
drwxr-xr-x 3 root root 4096 2008-04-02 11:26 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
drwxr-xr-x 4 root root 4096 2008-04-10 05:55 kde-profiles

/var/lib/menu:
total 12
drwxr-xr-x 3 root root 4096 2008-04-10 06:18 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
-rw-r--r-- 1 root root 0 2008-04-11 11:45 .menu-updates.stamp
drwxr-xr-x 2 root root 4096 2008-04-11 11:45 .xdg_menu_cache

/var/lib/misc:
total 8
drwxr-xr-x 2 root root 4096 2008-04-17 19:54 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
-rwxrwxr-x 1 root polkituser 0 2008-04-15 16:28 PolicyKit.reload

/var/lib/mlocate:
total 7224
drwxr-x--- 2 root slocate 4096 2008-04-21 04:26 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
-rw-r----- 1 root slocate 7374366 2008-04-21 04:26 mlocate.db

/var/lib/msec:
total 16
drwxr-xr-x 2 root root 4096 2008-04-10 06:41 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
-rw-r--r-- 1 root root 295 2008-04-10 06:18 security.conf
-rw-r--r-- 1 root root 295 2008-04-10 06:41 security.conf_orig

/var/lib/mysql:
total 20
drwx--x--x 5 mysql mysql 4096 2008-04-10 06:06 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
drwx--x--x 2 mysql mysql 4096 2008-04-01 13:38 mysql
drwx--x--x 2 mysql mysql 4096 2008-04-01 13:38 test
drwx--x--x 2 mysql mysql 4096 2008-04-01 13:38 .tmp

/var/lib/mysql-cluster:
total 8
drwx--x--x 2 mysql mysql 4096 2008-04-01 13:38 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..

/var/lib/named:
total 20
drwxr-xr-x 5 root root 4096 2008-04-10 07:24 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
drwxr-xr-x 2 root root 4096 2008-04-10 07:25 dev
drwxr-xr-x 2 root root 4096 2008-04-18 16:34 etc
drwxr-xr-x 6 root root 4096 2008-04-10 07:24 var

/var/lib/nfs:
total 24
drwxr-xr-x 6 root root 4096 2008-04-18 16:34 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
-rw-r--r-- 1 root root 0 2008-04-10 06:15 etab
-rw-r--r-- 1 root root 0 2008-04-10 06:15 rmtab
drwxr-xr-x 7 root root 0 2008-04-18 16:34 rpc_pipefs
drwx------ 2 rpcuser rpcuser 4096 2008-01-15 11:19 sm
drwx------ 2 rpcuser rpcuser 4096 2008-01-15 11:19 statd
-rw-r--r-- 1 root root 4 2008-04-18 16:33 state
drwxr-xr-x 2 root root 4096 2008-01-15 11:19 v4recovery
-rw-r--r-- 1 root root 0 2008-04-10 06:15 xtab

/var/lib/ntp:
total 12
drwxr-xr-x 2 ntp ntp 4096 2008-04-21 11:34 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
-rw-r--r-- 1 ntp ntp 8 2008-04-21 11:34 drift

/var/lib/php:
total 8
drwx-wx-wt 2 apache apache 4096 2008-04-01 08:37 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..

/var/lib/PolicyKit:
total 12
drwxrwx--- 2 polkituser polkituser 4096 2008-04-15 16:28 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
-r--rw-r-- 1 root polkituser 250 2008-04-10 05:54 user-haldaemon.auths

/var/lib/PolicyKit-public:
total 8
drwxrwxr-x 2 polkituser polkituser 4096 2008-04-15 16:28 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..

/var/lib/postfix:
total 8
drwx------ 2 postfix root 4096 2008-03-26 06:55 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..

/var/lib/rarian:
total 8
drwxr-xr-x 2 root root 4096 2008-03-09 14:33 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..

/var/lib/rpm:
total 88808
drwxr-xr-x 3 rpm rpm 4096 2008-04-19 11:59 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
drwxr-xr-x 2 root root 4096 2008-04-19 12:15 alternatives
-rw-r--r-- 1 root root 10985472 2008-04-19 12:15 Basenames
-rw-r--r-- 1 root root 24576 2008-04-16 12:38 Conflictname
-rw-r--r-- 1 root root 0 2008-04-19 11:59 __db.000
-rw-r--r-- 1 root root 16384 2008-04-21 04:36 __db.001
-rw-r--r-- 1 root root 663552 2008-04-21 04:36 __db.002
-rw-r--r-- 1 root root 3334144 2008-04-19 12:15 Dirnames
-rw-r--r-- 1 root root 20602880 2008-04-19 12:15 Filemd5s
-rw-r--r-- 1 root root 36864 2008-04-19 12:15 Group
-rw-r--r-- 1 root root 40960 2008-04-19 12:15 Installtid
-rw-r--r-- 1 root root 90112 2008-04-19 12:15 Name
-rw-r--r-- 1 rpm rpm 60289024 2008-04-19 12:15 Packages
-rw-r--r-- 1 root root 659456 2008-04-19 12:15 Providename
-rw-r--r-- 1 root root 217088 2008-04-19 12:15 Provideversion
-rw-r--r-- 1 root root 12288 2008-04-10 19:05 Pubkeys
-rw-r--r-- 1 root root 921600 2008-04-19 12:15 Requirename
-rw-r--r-- 1 root root 438272 2008-04-19 12:15 Requireversion
-rw-r--r-- 1 root root 0 2008-04-19 11:59 .RPMLOCK
-rw-r--r-- 1 root root 163840 2008-04-19 12:15 Sha1header
-rw-r--r-- 1 root root 147456 2008-04-19 12:15 Sigmd5
-rw-r--r-- 1 root root 12288 2008-04-10 12:14 Triggername

/var/lib/samba:
total 24
drwxr-xr-x 6 root root 4096 2008-04-10 06:16 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
drwxr-xr-x 3 root root 4096 2008-04-10 06:02 codepages
drwxrwxr-x 2 root adm 4096 2008-03-23 09:27 netlogon
drwxr-xr-x 7 root root 4096 2008-04-10 06:16 printers
drwxr-xr-x 2 root root 4096 2008-03-23 09:27 profiles

/var/lib/shorewall:
total 180
drwxr-xr-x 2 root root 4096 2008-04-18 16:34 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
-rw-r--r-- 1 root root 0 2008-04-18 16:34 chains
-rw-r--r-- 1 root root 4530 2008-04-18 16:34 .iptables-restore-input
-rw-r--r-- 1 root root 3563 2008-04-18 16:34 .modules
-rw-r--r-- 1 root root 134 2008-04-18 16:34 .modulesdir
-rw-r--r-- 1 root root 0 2008-04-18 16:34 nat
-rw-r--r-- 1 root root 0 2008-04-18 16:34 proxyarp
-rwx------ 1 root root 45875 2008-04-14 14:51 .restart
-rw-r--r-- 1 root root 29 2008-04-18 16:34 restarted
-rwx------ 1 root root 45875 2008-04-18 16:34 .restore
-rw-r--r-- 1 root root 0 2008-04-10 06:06 restore-base
-rw-r--r-- 1 root root 0 2008-04-10 06:06 restore-tail
-rwx------ 1 root root 45875 2008-04-18 16:34 .start
-rw-r--r-- 1 root root 39 2008-04-18 16:34 state
-rw-r--r-- 1 root root 51 2008-04-18 16:34 zones

/var/lib/spamassassin:
total 8
drwxr-xr-x 2 root root 4096 2008-02-06 12:25 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..

/var/lib/stateless:
total 16
drwxr-xr-x 4 root root 4096 2008-04-10 05:54 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
drwxr-xr-x 2 root root 4096 2008-04-04 11:21 state
drwxr-xr-x 2 root root 4096 2008-04-04 11:21 writable

/var/lib/texmf:
total 12
drwxrwxrwt 2 root root 4096 2008-04-10 06:10 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
-rw-r--r-- 1 root root 80 2008-04-10 06:10 ls-R

/var/lib/urpmi:
total 26576
drwxr-xr-x 2 root root 4096 2008-04-17 19:54 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
-rw-r--r-- 1 root root 10197 2008-04-10 06:18 compssUsers.flat
-rw-r--r-- 1 root root 4946 2008-04-17 19:53 descriptions.Main\ Updates
-rw-r--r-- 1 root root 2584303 2008-04-10 05:33 hdlist.Mandriva\ Linux\ -\ 2008.1\ (Free)\ -\ Installer\ (contrib).cz
-rw-r--r-- 1 root root 21693358 2008-04-10 05:33 hdlist.Mandriva\ Linux\ -\ 2008.1\ (Free)\ -\ Installer.cz
-rw-r--r-- 1 root root 8911 2008-04-10 19:09 info.Non-free.xml.lzma
-rw-r--r-- 1 root root 0 2008-04-19 12:15 .LOCK
-rw-r--r-- 1 root root 0 2008-04-10 06:18 MD5SUM
-rw-r--r-- 1 root root 248 2008-04-10 19:04 MD5SUM.Contrib
-rw-r--r-- 1 root root 248 2008-04-17 19:53 MD5SUM.Contrib\ Updates
-rw-r--r-- 1 root root 248 2008-04-10 19:04 MD5SUM.Main
-rw-r--r-- 1 root root 98 2008-04-17 19:53 MD5SUM.Main\ Updates
-rw-r--r-- 1 root root 248 2008-04-10 19:04 MD5SUM.Non-free
-rw-r--r-- 1 root root 248 2008-04-17 19:53 MD5SUM.Non-free\ Updates
-rw-r--r-- 1 root root 248 2008-04-17 19:54 MD5SUM.PLF\ Free
-rw-r--r-- 1 root root 248 2008-04-17 19:54 MD5SUM.PLF\ Non-free
-rw-r--r-- 1 root root 162034 2008-04-10 19:08 names.Contrib
-rw-r--r-- 1 root root 1137 2008-04-17 19:54 names.Contrib\ Updates
-rw-r--r-- 1 root root 97400 2008-04-10 19:08 names.Main
-rw-r--r-- 1 root root 251 2008-04-17 19:54 names.Main\ Updates
-rw-r--r-- 1 root root 47312 2008-04-10 06:18 names.Mandriva\ Linux\ -\ 2008.1\ (Free)\ -\ Installer
-rw-r--r-- 1 root root 12268 2008-04-10 06:18 names.Mandriva\ Linux\ -\ 2008.1\ (Free)\ -\ Installer\ (contrib)
-rw-r--r-- 1 root root 7306 2008-04-10 19:08 names.Non-free
-rw-r--r-- 1 root root 11 2008-04-17 19:54 names.Non-free\ Updates
-rw-r--r-- 1 root root 5427 2008-04-17 19:54 names.PLF\ Free
-rw-r--r-- 1 root root 1451 2008-04-17 19:54 names.PLF\ Non-free
-rw-r--r-- 1 root root 1259740 2008-04-10 19:04 synthesis.hdlist.Contrib.cz
-rw-r--r-- 1 root root 8427 2008-04-17 19:53 synthesis.hdlist.Contrib\ Updates.cz
-rw-r--r-- 1 root root 652572 2008-04-10 19:04 synthesis.hdlist.Main.cz
-rw-r--r-- 1 root root 2489 2008-04-17 19:53 synthesis.hdlist.Main\ Updates.cz
-rw-r--r-- 1 root root 55004 2008-04-10 05:33 synthesis.hdlist.Mandriva\ Linux\ -\ 2008.1\ (Free)\ -\ Installer\ (contrib).cz
-rw-r--r-- 1 root root 379678 2008-04-10 05:33 synthesis.hdlist.Mandriva\ Linux\ -\ 2008.1\ (Free)\ -\ Installer.cz
-rw-r--r-- 1 root root 12749 2008-04-10 19:04 synthesis.hdlist.Non-free.cz
-rw-r--r-- 1 root root 191 2008-04-17 19:53 synthesis.hdlist.Non-free\ Updates.cz
-rw-r--r-- 1 root root 43026 2008-04-17 19:54 synthesis.hdlist.PLF\ Free.cz
-rw-r--r-- 1 root root 8073 2008-04-17 19:54 synthesis.hdlist.PLF\ Non-free.cz

/var/lib/xkb:
total 8
drwxr-xr-x 2 root root 4096 2008-04-10 13:05 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..

/var/lib/xlogical:
total 12
drwxr-xr-x 2 root games 4096 2008-04-10 08:12 .
drwxr-xr-x 38 root root 4096 2008-04-10 08:12 ..
-rw-rw---- 1 root games 111 2008-01-02 15:42 xlogical.scores

/var/lock/dmraid:
total 8
drwxr-xr-x 2 root root 4096 2008-04-14 14:49 .
drwxrwxr-x 4 root uucp 4096 2008-04-21 04:25 ..

/var/lock/subsys:
total 8
drwxr-xr-x 2 root root 4096 2008-04-18 16:34 .
drwxrwxr-x 4 root uucp 4096 2008-04-21 04:25 ..
-rw-r--r-- 1 root root 0 2008-04-18 16:33 acpid
-rw-r--r-- 1 root root 0 2008-04-18 16:33 alsa
-rw-r--r-- 1 root root 0 2008-04-18 16:33 atd
-rw-r--r-- 1 root root 0 2008-04-18 16:34 coherence
-rw-r--r-- 1 root root 0 2008-04-18 16:33 crond
-rw-r--r-- 1 root root 0 2008-04-18 16:34 haldaemon
-rw-r--r-- 1 root root 0 2008-04-18 16:33 harddrake
-rw-r--r-- 1 root root 0 2008-04-18 16:34 keytable
-rw-r--r-- 1 root root 0 2008-04-18 16:33 kheader
-rw-r--r-- 1 root root 0 2008-04-18 16:34 local
-rw-r--r-- 1 root root 0 2008-04-18 16:33 messagebus
-rw-r--r-- 1 root root 0 2008-04-18 16:34 named
-rw-r--r-- 1 root root 0 2008-04-18 16:34 netfs
-rw-r--r-- 1 root root 0 2008-04-18 16:33 network
-rw-r--r-- 1 root root 0 2008-04-18 16:34 nfs-common
-rw-r--r-- 1 root root 0 2008-04-18 16:34 nfs-server
-rw-r--r-- 1 root root 0 2008-04-18 16:34 ntpd
-rw-r--r-- 1 root root 0 2008-04-18 16:33 numlock
-rw-r--r-- 1 root root 0 2008-04-18 16:33 portmap
-rw-r--r-- 1 root root 0 2008-04-18 16:34 postfix
-rw-r--r-- 1 root root 0 2008-04-18 16:33 privoxy
-rw-r--r-- 1 root root 0 2008-04-18 16:33 resolvconf
-rw-r--r-- 1 root root 0 2008-04-18 16:34 shorewall
-rw-r--r-- 1 root root 0 2008-04-18 16:33 smartd
-rw-r--r-- 1 root root 0 2008-04-18 16:33 sound
-rw-r--r-- 1 root root 0 2008-04-18 16:34 sshd
-rw------- 1 root root 0 2008-04-18 16:33 syslog
-rw-r--r-- 1 root root 0 2008-04-18 16:33 ucarp
-rw-r--r-- 1 root root 0 2008-04-18 16:33 xinetd

/var/log/ConsoleKit:
total 32
drwxr-xr-x 2 root root 4096 2008-04-10 05:54 .
drwxr-xr-x 17 root root 4096 2008-04-21 04:36 ..
-rw-r----- 1 root root 21443 2008-04-18 16:34 history

/var/log/cron:
total 52
drwxr-xr-x 2 root root 4096 2008-04-20 04:26 .
drwxr-xr-x 17 root root 4096 2008-04-21 04:36 ..
-rw-r----- 1 root root 0 2008-04-20 04:26 errors.log
-rw-r----- 1 root root 20 2008-04-20 04:26 errors.log.1.gz
-rw-r----- 1 root root 20 2008-04-13 04:26 errors.log.2.gz
-rw-r----- 1 root root 14116 2008-04-21 11:25 info.log
-rw-r----- 1 root root 5237 2008-04-20 04:26 info.log.1.gz
-rw-r----- 1 root root 2608 2008-04-13 04:26 info.log.2.gz
-rw-r----- 1 root root 0 2008-04-20 04:26 warnings.log
-rw-r----- 1 root root 20 2008-04-20 04:26 warnings.log.1.gz
-rw-r----- 1 root root 20 2008-04-13 04:26 warnings.log.2.gz

/var/log/cups:
total 244
drwxr-xr-x 2 root sys 4096 2008-04-14 18:15 .
drwxr-xr-x 17 root root 4096 2008-04-21 04:36 ..
-rw-r----- 1 root sys 202444 2008-04-14 18:57 access_log
-rw-r----- 1 root sys 25400 2008-04-18 08:34 error_log
-rw-r----- 1 root sys 609 2008-04-14 18:37 page_log

/var/log/daemons:
total 56
drwxr-xr-x 2 root root 4096 2008-04-20 04:26 .
drwxr-xr-x 17 root root 4096 2008-04-21 04:36 ..
-rw-r----- 1 root root 0 2008-04-20 04:26 errors.log
-rw-r----- 1 root root 501 2008-04-20 04:26 errors.log.1.gz
-rw-r----- 1 root root 470 2008-04-13 04:26 errors.log.2.gz
-rw-r----- 1 root root 13424 2008-04-21 11:33 info.log
-rw-r----- 1 root root 7138 2008-04-20 04:26 info.log.1.gz
-rw-r----- 1 root root 6734 2008-04-13 04:26 info.log.2.gz
-rw-r----- 1 root root 0 2008-04-20 04:26 warnings.log
-rw-r----- 1 root root 82 2008-04-20 04:26 warnings.log.1.gz
-rw-r----- 1 root root 92 2008-04-13 04:26 warnings.log.2.gz

/var/log/gdm:
total 8
drwxr-xr-x 2 root root 4096 2008-03-11 07:54 .
drwxr-xr-x 17 root root 4096 2008-04-21 04:36 ..

/var/log/httpd:
total 8
drwxr-xr-x 2 root root 4096 2008-03-07 12:22 .
drwxr-xr-x 17 root root 4096 2008-04-21 04:36 ..

/var/log/kernel:
total 60
drwxr-xr-x 2 root root 4096 2008-04-20 04:26 .
drwxr-xr-x 17 root root 4096 2008-04-21 04:36 ..
-rw-r----- 1 root root 0 2008-04-20 04:26 errors.log
-rw-r----- 1 root root 442 2008-04-20 04:26 errors.log.1.gz
-rw-r----- 1 root root 326 2008-04-13 04:26 errors.log.2.gz
-rw-r----- 1 root root 3625 2008-04-21 11:04 info.log
-rw-r----- 1 root root 10667 2008-04-20 04:26 info.log.1.gz
-rw-r----- 1 root root 16077 2008-04-13 04:26 info.log.2.gz
-rw-r----- 1 root root 0 2008-04-20 04:26 warnings.log
-rw-r----- 1 root root 3429 2008-04-20 04:26 warnings.log.1.gz
-rw-r----- 1 root root 5272 2008-04-13 04:26 warnings.log.2.gz

/var/log/mail:
total 220
drwxr-xr-x 2 root root 4096 2008-04-20 04:26 .
drwxr-xr-x 17 root root 4096 2008-04-21 04:36 ..
-rw-r----- 1 root root 0 2008-04-20 04:26 errors.log
-rw-r----- 1 root root 20 2008-04-20 04:26 errors.log.1.gz
-rw-r----- 1 root root 20 2008-04-13 04:26 errors.log.2.gz
-rw-r----- 1 root root 95667 2008-04-21 11:00 info.log
-rw-r----- 1 root root 63585 2008-04-20 04:26 info.log.1.gz
-rw-r----- 1 root root 26291 2008-04-13 04:26 info.log.2.gz
-rw-r----- 1 root root 0 2008-04-20 04:26 warnings.log
-rw-r----- 1 root root 20 2008-04-20 04:26 warnings.log.1.gz
-rw-r----- 1 root root 20 2008-04-13 04:26 warnings.log.2.gz

/var/log/mysqld:
total 8
drwxr-xr-x 2 mysql mysql 4096 2008-04-01 13:38 .
drwxr-xr-x 17 root root 4096 2008-04-21 04:36 ..

/var/log/ppp:
total 8
drwx------ 2 root root 4096 2008-04-11 11:45 .
drwxr-xr-x 17 root root 4096 2008-04-21 04:36 ..
-rw-r----- 1 root root 0 2008-04-04 12:03 connect-errors

/var/log/privoxy:
total 8
drwx------ 2 daemon daemon 4096 2008-04-10 09:15 .
drwxr-xr-x 17 root root 4096 2008-04-21 04:36 ..
-rw-r----- 1 daemon daemon 0 2008-04-10 09:15 logfile

/var/log/proftpd:
total 8
drwxr-xr-x 2 root root 4096 2008-02-16 16:36 .
drwxr-xr-x 17 root root 4096 2008-04-21 04:36 ..

/var/log/samba:
total 32
drwxr-xr-x 3 root root 4096 2008-04-20 04:26 .
drwxr-xr-x 17 root root 4096 2008-04-21 04:36 ..
-rw-r----- 1 root root 0 2008-04-20 04:26 192.168.1.131.log
-rw-r----- 1 root root 189 2008-04-20 04:26 192.168.1.131.log.1.gz
-rw-r----- 1 root root 0 2008-04-14 13:58 192.168.1.200.log
-rw-r----- 1 root root 0 2008-04-14 13:17 192.168.1.2.log
drwx------ 4 root root 4096 2008-04-14 13:12 cores
-rw-r----- 1 root root 434 2008-04-15 05:51 log.nmbd
-rw-r----- 1 root root 138 2008-04-14 13:12 log.smbd
-rw-r----- 1 root root 0 2008-04-20 04:26 pmx.log
-rw-r----- 1 root root 289 2008-04-20 04:26 pmx.log.1.gz
-rw-r----- 1 root root 0 2008-04-14 13:12 smbd.log
-rw-r----- 1 root root 0 2008-04-20 04:26 smbmount.log
-rw-r----- 1 root root 135 2008-04-20 04:26 smbmount.log.1.gz
-rw-r----- 1 root root 0 2008-04-14 13:17 wb1.log
-rw-r----- 1 root root 0 2008-04-14 14:08 wm81.log

/var/log/security:
total 272
drwxr-xr-x 2 root root 4096 2008-04-21 04:35 .
drwxr-xr-x 17 root root 4096 2008-04-21 04:36 ..
-rw-r----- 1 root root 5452 2008-04-21 04:35 open_port.diff
-rw-r----- 1 root root 4947 2008-04-21 04:26 open_port.today
-rw-r----- 1 root root 4947 2008-04-20 04:27 open_port.yesterday
-rw-r----- 1 root root 0 2008-04-21 04:35 rpm-qa.diff
-rw-r----- 1 root root 85438 2008-04-21 04:28 rpm-qa.today
-rw-r----- 1 root root 85438 2008-04-20 04:28 rpm-qa.yesterday
-rw-r----- 1 root root 0 2008-04-21 04:35 rpm-va-config.diff
-rw-r----- 1 root root 1241 2008-04-21 04:35 rpm-va-config.today
-rw-r----- 1 root root 1241 2008-04-20 04:36 rpm-va-config.yesterday
-rw-r----- 1 root root 0 2008-04-21 04:35 rpm-va.diff
-rw-r----- 1 root root 2078 2008-04-21 04:35 rpm-va.today
-rw-r----- 1 root root 2078 2008-04-20 04:36 rpm-va.yesterday
-rw-r----- 1 root root 0 2008-04-21 04:35 sgid.diff
-rw-r----- 1 root root 873 2008-04-21 04:28 sgid.today
-rw-r----- 1 root root 873 2008-04-20 04:28 sgid.yesterday
-rw-r----- 1 root root 0 2008-04-21 04:35 suid_md5.diff
-rw-r----- 1 root root 2340 2008-04-21 04:28 suid_md5.today
-rw-r----- 1 root root 2340 2008-04-20 04:28 suid_md5.yesterday
-rw-r----- 1 root root 0 2008-04-21 04:35 suid_root.diff
-rw-r----- 1 root root 810 2008-04-21 04:28 suid_root.today
-rw-r----- 1 root root 810 2008-04-20 04:28 suid_root.yesterday
-rw-r----- 1 root root 204 2008-04-21 04:28 unowned_group.today
-rw-r----- 1 root root 204 2008-04-20 04:28 unowned_group.yesterday
-rw-r----- 1 root root 204 2008-04-21 04:28 unowned_user.today
-rw-r----- 1 root root 204 2008-04-20 04:28 unowned_user.yesterday
-rw-r----- 1 root root 0 2008-04-21 04:35 writable.diff
-rw-r----- 1 root root 317 2008-04-21 04:28 writable.today
-rw-r----- 1 root root 317 2008-04-20 04:28 writable.yesterday

/var/log/webmin:
total 16
drwxr-xr-x 2 root root 4096 2008-04-10 06:17 .
drwxr-xr-x 17 root root 4096 2008-04-21 04:36 ..
-rw-r----- 1 root root 2141 2008-04-10 06:17 webmin_install.log
-rw-r----- 1 root root 306 2008-04-10 06:17 webmin_install.log.err

/var/run/console:
total 16
drwxr-xr-x 2 root root 4096 2008-04-18 16:34 .
drwxr-xr-x 18 root root 4096 2008-04-21 11:01 ..
-rw------- 1 root root 1 2008-04-18 16:34 bittwister
-rw------- 1 root root 10 2008-04-18 16:34 console.lock

/var/run/ConsoleKit:
total 12
drwxr-x--- 2 root root 4096 2008-04-18 16:34 .
drwxr-xr-x 18 root root 4096 2008-04-21 11:01 ..
-rw------- 1 root root 1187 2008-04-18 16:34 database

/var/run/cups:
total 12
drwxr-xr-x 3 root sys 4096 2008-04-18 08:34 .
drwxr-xr-x 18 root root 4096 2008-04-21 11:01 ..
dr-x--x--x 2 lp lpadmin 4096 2008-04-18 08:34 certs

/var/run/dbus:
total 8
drwxr-xr-x 2 root root 4096 2008-04-18 16:33 .
drwxr-xr-x 18 root root 4096 2008-04-21 11:01 ..
srwxrwxrwx 1 root root 0 2008-04-18 16:33 system_bus_socket

/var/run/dirmngr:
total 8
drwxr-xr-x 2 root root 4096 2008-02-21 11:58 .
drwxr-xr-x 18 root root 4096 2008-04-21 11:01 ..

/var/run/hald:
total 12
drwxr-x--- 2 haldaemon haldaemon 4096 2008-04-18 16:34 .
drwxr-xr-x 18 root root 4096 2008-04-21 11:01 ..
-rw-r--r-- 1 root root 1075 2008-04-18 16:34 acl-list

/var/run/hplip:
total 8
drwxr-xr-x 2 root root 4096 2008-02-13 10:49 .
drwxr-xr-x 18 root root 4096 2008-04-21 11:01 ..

/var/run/mysqld:
total 8
drwxr-xr-x 2 mysql mysql 4096 2008-04-01 13:38 .
drwxr-xr-x 18 root root 4096 2008-04-21 11:01 ..

/var/run/netreport:
total 8
drwxrwxr-x 2 root root 4096 2008-04-04 11:21 .
drwxr-xr-x 18 root root 4096 2008-04-21 11:01 ..

/var/run/PolicyKit:
total 8
drwxrwx--- 2 polkituser polkituser 4096 2008-04-15 16:28 .
drwxr-xr-x 18 root root 4096 2008-04-21 11:01 ..

/var/run/ppp:
total 8
drwxr-xr-x 2 root root 4096 2008-04-17 22:02 .
drwxr-xr-x 18 root root 4096 2008-04-21 11:01 ..

/var/run/proftpd:
total 8
drwxr-xr-x 2 root root 4096 2008-02-16 16:36 .
drwxr-xr-x 18 root root 4096 2008-04-21 11:01 ..

/var/run/resolvconf:
total 12
drwxr-xr-x 3 root root 4096 2008-04-18 18:51 .
drwxr-xr-x 18 root root 4096 2008-04-21 11:01 ..
-rw-r--r-- 1 root root 0 2008-04-18 16:33 enable-updates
drwxr-xr-x 2 root root 4096 2008-04-18 18:51 interface
lrwxrwxrwx 1 root root 24 2008-04-10 05:54 resolv.conf -> ../../../etc/resolv.conf

/var/run/samba:
total 8
drwxr-xr-x 2 root root 4096 2008-03-23 09:27 .
drwxr-xr-x 18 root root 4096 2008-04-21 11:01 ..

/var/run/sudo:
total 20
drwx------ 4 root root 4096 2008-04-10 19:04 .
drwxr-xr-x 18 root root 4096 2008-04-21 11:01 ..
drwx------ 2 root root 4096 2008-04-10 19:15 browser
drwx------ 2 root root 4096 2008-04-10 09:57 junk_no_spam
-rw------- 1 root root 64 2008-04-10 09:21 _pam_timestamp_key

/var/run/webmin:
total 8
drwx------ 2 root bin 4096 2008-04-17 22:02 .
drwxr-xr-x 18 root root 4096 2008-04-21 11:01 ..

/var/spool/at:
total 16
drwx------ 3 daemon daemon 4096 2008-04-21 11:27 .
drwxr-xr-x 11 root root 4096 2008-04-10 06:16 ..
-rw------- 1 daemon daemon 6 2008-04-21 11:00 .SEQ
drwx------ 2 daemon daemon 4096 2008-04-21 11:27 spool

/var/spool/cron:
total 28
drwx------ 2 root root 4096 2008-04-10 06:41 .
drwxr-xr-x 11 root root 4096 2008-04-10 06:16 ..
-rw------- 1 bittwister bittwister 1184 2008-04-10 06:41 bittwister

/var/spool/cups:
total 48
drwx--x--- 3 root sys 4096 2008-04-14 18:38 .
drwxr-xr-x 11 root root 4096 2008-04-10 06:16 ..
-rw------- 1 root sys 768 2008-04-14 18:17 c00001
-rw------- 1 root sys 755 2008-04-14 18:21 c00002
-rw------- 1 root sys 768 2008-04-14 18:26 c00003
-rw------- 1 root sys 720 2008-04-14 18:28 c00004
-rw------- 1 root sys 768 2008-04-14 18:31 c00005
-rw------- 1 root sys 768 2008-04-14 18:35 c00006
-rw------- 1 root sys 769 2008-04-14 18:36 c00007
-rw------- 1 root sys 769 2008-04-14 18:37 c00008
-rw------- 1 root sys 769 2008-04-14 18:38 c00009
drwxrwx--T 2 root sys 4096 2008-04-14 18:37 tmp

/var/spool/lpd:
total 8
drwxr-xr-x 2 root daemon 4096 2008-03-19 08:21 .
drwxr-xr-x 11 root root 4096 2008-04-10 06:16 ..

/var/spool/mail:
total 120
drwxrwsr-x 2 root mail 4096 2008-04-21 11:00 .
drwxr-xr-x 11 root root 4096 2008-04-10 06:16 ..
-rw------- 1 bittwister mail 44432 2008-04-21 11:00 bittwister
-rw-rw---- 1 normal mail 0 2008-04-10 06:34 normal

/var/spool/postfix:
total 84
drwxr-xr-x 21 root root 4096 2008-04-10 07:07 .
drwxr-xr-x 11 root root 4096 2008-04-10 06:16 ..
drwx------ 2 postfix root 4096 2008-04-21 11:00 active
drwx------ 2 postfix root 4096 2008-03-26 06:55 bounce
drwx------ 2 postfix root 4096 2008-03-26 06:55 corrupt
drwx------ 4 postfix root 4096 2008-04-17 04:02 defer
drwx------ 4 postfix root 4096 2008-04-17 04:02 deferred
drwxr-xr-x 2 root root 4096 2008-04-18 16:33 dev
drwxr-xr-x 2 root root 4096 2008-04-10 07:07 etc
drwxr-xr-x 2 root root 4096 2008-03-26 06:55 extern
drwx------ 2 postfix root 4096 2008-03-26 06:55 flush
drwx------ 2 postfix root 4096 2008-03-26 06:55 hold
drwx------ 2 postfix root 4096 2008-04-21 11:00 incoming
drwxr-xr-x 2 root root 4096 2008-04-10 07:07 lib
drwx-wx--- 2 postfix postdrop 4096 2008-04-21 11:00 maildrop
drwxr-xr-x 2 root root 4096 2008-04-17 04:02 pid
drwx------ 2 postfix root 4096 2008-04-18 16:34 private
drwx--x--- 2 postfix postdrop 4096 2008-04-18 16:34 public
drwx------ 2 postfix root 4096 2008-04-10 06:41 saved
drwx------ 2 postfix root 4096 2008-03-26 06:55 trace
drwxr-xr-x 3 root root 4096 2008-04-10 07:07 var

/var/spool/repackage:
total 8
drwxr-xr-x 2 root root 4096 2008-04-01 15:25 .
drwxr-xr-x 11 root root 4096 2008-04-10 06:16 ..

/var/spool/samba:
total 8
drwxrwxrwt 2 root root 4096 2008-03-23 09:27 .
drwxr-xr-x 11 root root 4096 2008-04-10 06:16 ..

/var/spool/spamassassin:
total 8
drwxrwxrwx 2 root root 4096 2008-02-06 12:25 .
drwxr-xr-x 11 root root 4096 2008-04-10 06:16 ..

/var/www/cgi-bin:
total 12
drwxr-xr-x 2 root root 4096 2008-04-10 05:59 .
drwxr-xr-x 7 apache apache 4096 2008-04-10 05:59 ..
-rwxr-xr-x 1 root root 1075 2008-03-07 12:22 test.cgi

/var/www/error:
total 200
drwxr-xr-x 3 root root 4096 2008-04-10 05:59 .
drwxr-xr-x 7 apache apache 4096 2008-04-10 05:59 ..
-rw-r--r-- 1 root root 4256 2008-03-07 05:08 contact.html.var
-rw-r--r-- 1 root root 9112 2008-03-07 05:08 HTTP_BAD_GATEWAY.html.var
-rw-r--r-- 1 root root 6634 2008-03-07 05:08 HTTP_BAD_REQUEST.html.var
-rw-r--r-- 1 root root 11194 2008-03-07 05:08 HTTP_FORBIDDEN.html.var
-rw-r--r-- 1 root root 12701 2008-03-07 05:08 HTTP_GONE.html.var
-rw-r--r-- 1 root root 12847 2008-03-07 05:08 HTTP_INTERNAL_SERVER_ERROR.html.var
-rw-r--r-- 1 root root 7541 2008-03-07 05:08 HTTP_LENGTH_REQUIRED.html.var
-rw-r--r-- 1 root root 6774 2008-03-07 05:08 HTTP_METHOD_NOT_ALLOWED.html.var
-rw-r--r-- 1 root root 13256 2008-03-07 05:08 HTTP_NOT_FOUND.html.var
-rw-r--r-- 1 root root 6337 2008-03-07 05:08 HTTP_NOT_IMPLEMENTED.html.var
-rw-r--r-- 1 root root 6566 2008-03-07 05:08 HTTP_PRECONDITION_FAILED.html.var
-rw-r--r-- 1 root root 7803 2008-03-07 05:08 HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
-rw-r--r-- 1 root root 7099 2008-03-07 05:08 HTTP_REQUEST_TIME_OUT.html.var
-rw-r--r-- 1 root root 7111 2008-03-07 05:08 HTTP_REQUEST_URI_TOO_LARGE.html.var
-rw-r--r-- 1 root root 7822 2008-03-07 05:08 HTTP_SERVICE_UNAVAILABLE.html.var
-rw-r--r-- 1 root root 13036 2008-03-07 05:08 HTTP_UNAUTHORIZED.html.var
-rw-r--r-- 1 root root 6353 2008-03-07 05:08 HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
-rw-r--r-- 1 root root 7010 2008-03-07 05:08 HTTP_VARIANT_ALSO_VARIES.html.var
drwxr-xr-x 2 root root 4096 2008-04-10 05:59 include
-rw-r--r-- 1 root root 1979 2008-03-07 05:08 README

/var/www/html:
total 24
drwxr-xr-x 3 root root 4096 2008-04-10 05:59 .
drwxr-xr-x 7 apache apache 4096 2008-04-10 05:59 ..
drwxr-xr-x 2 root root 4096 2008-04-10 07:28 addon-modules
-rw-r--r-- 1 root root 3638 2008-03-07 12:22 favicon.ico
-rw-r--r-- 1 root root 215 2008-03-07 12:22 index.html
-rw-r--r-- 1 root root 665 2008-03-07 12:22 robots.txt

/var/www/icons:
total 764
drwxr-xr-x 3 root root 4096 2008-04-10 05:59 .
drwxr-xr-x 7 apache apache 4096 2008-04-10 05:59 ..
-rw-r--r-- 1 root root 3505 2008-03-07 12:22 advx.png
-rw-r--r-- 1 root root 246 2008-03-07 05:08 a.gif
<snip>
-rw-r--r-- 1 root root 228 2008-03-07 05:08 world1.gif
-rw-r--r-- 1 root root 267 2002-08-31 12:18 world1.png
-rw-r--r-- 1 root root 261 2008-03-07 05:08 world2.gif
-rw-r--r-- 1 root root 297 2002-08-31 12:16 world2.png

/var/www/perl:
total 16
drwxr-xr-x 2 root root 4096 2008-04-10 06:11 .
drwxr-xr-x 7 apache apache 4096 2008-04-10 05:59 ..
-rwxr-xr-x 1 root root 1052 2008-03-07 12:33 apache-mod_perl-testscript.pl
-rwxr-xr-x 1 root root 1075 2008-03-07 12:22 test.pl

Jim Beard

unread,
Apr 21, 2008, 10:30:02 PM4/21/08
to

Normally, /tmp would be a symbolic link to /var/tmp, but it is
not. What partition is it on? It should be ok, but best to check.

> drwxr-xr-x 13 root root 4096 2008-03-20 18:59 usr/
> lrwxrwxrwx 1 root root 21 2008-04-16 00:03 var ->
> /mnt/hdb5/M2008.0-var/
> drwxr-xr-x 2 root root 4096 2008-04-15 23:32 varOLD/ (empty directory)
>
> [root@localhost var]# cd /var
> [root@localhost var]# df -k

Make that df -k . with a space and a period following the -k.
I'm looking for the free space in the partion /var is on.

> [root@localhost var]# cd /var/tmp
> [root@localhost tmp]# df -k

Again, df -k . with a space and a period following the -k.

>
>> Provide a copy of fstab, and maybe mtab too. Do an
>> ls -l /
>> and provide that. If you have locate installed, run
>> locate tmp
>> and take a look at what tmp directories exist, where.
>> You might then cd to each of them, and run df -k .
>> from within the tmp directory, just to see if maybe
>> the thing is actually on a partition that is in fact
>> full.
> [root@localhost tmp]# cat /etc/fstab
> #
> # fstab file for the temporary system whilst awaiting the new
> motherboard fro AriesTheRam
> #
> ### /dev/hda - 10Gb main boot disk, contains the M2008.0 root file
> system and the swap partition
> /dev/hda5 / ext3 relatime 1 1

The hda5 above is not a swap partition. It has an ext3 filesystem on
it, and swap has its own filesystem, called "swap". What is it?


> #
> ### /dev/hdb 140Gb disk with 1st 20Gb scrap. should only contain /home
> #
> /dev/hdb2 /home ext3 relatime 1 2
> /dev/cdrom2 /media/cdrom2 auto
> umask=0022,users,iocharset=utf8,noauto,ro,exec 0 0
> /dev/fd0 /media/floppy auto
> umask=0022,users,iocharset=utf8,noauto,exec,flush 0 0
> ### /dev/hdb3 old M2006 partitions taken from the failed 13Gb disk
> before it was scrapped.
> /dev/hdb3 /mnt/hdb3 ext3 relatime 1 2

The above hdb3 is one partition, not multiple old "partitions."

> ## /dev/hdb5 - not currently used
> /dev/hdb5 /mnt/hdb5 ext3 relatime 1 2

The above hdb5 is 49 percent full of something.

> ### /dev/hdb6 copy uf Windows XP Documnts and settings for Carlton &
> Claire + /Windows directory
> /dev/hdb6 /mnt/hdb6 ext3 relatime 1 2

This hdb6 has a linux ext3 filesystem, which seems odd for XP
documents, windows directory, etc, at at 99 percent full it
does raise questions about what it actually is.


> #
> # /dev/hdd 200Gb drive
> #
> ### /dev/hdd5 is the home directory for the original M2008.0 AriesTheRam
> installation.
> ## set to read only to preserve integrity
> /dev/hdd5 /mnt/M2008/home ext2 sync,ro,relatime 1 2

If something is trying to write to an original 2008.0 tmp directory
in home and the partition were read only, that might generate the
error you are seeing.

> ### /dev/hdd6 (VFAT32) MP3 collection and the Win_Fdrive
> /dev/hdd6 /mnt/hdd6-music vfat
> umask=0000,users,iocharset=utf8,auto,rw,exec 0 0
> ### /dev/hdd7 is root directory for original M2008.0 installation on
> AriesTheRam
> ## set to read only to preserve integrity
> /dev/hdd7 /mnt/M2008/root ext2 sync,ro,relatime 1 2

This an even better candidate for something trying to write
to a tmp directory (on the root fs) of 2008.0, and again read
only would certainly result in an error message.

Well, there appear to be some problems, some things are not
what you described them as, and the read-only partitions would
generate the same type of error messages as a full partition
would. But I remain uncertain if these are a result of messed
up links/mount points or if your problem is elsewhere, as you
think.

I do believe I would go into mcc, to local disks, to manage
disk partitions, toggle to expert mode, and do a careful
inventory of what you have where in terms of partitions. Look for
duplicate links/mount points/names, the swap partition (wherever it
may be), and particular attention to any partitions that are read
only and might be the target for an attempt to write to a tmp or
root directory.

Carlton

unread,
Apr 22, 2008, 6:04:20 PM4/22/08
to
Jim Beard wrote:
>
> Make that df -k . with a space and a period following the -k.
> I'm looking for the free space in the partion /var is on.
>
>> [root@localhost var]# cd /var/tmp
>> [root@localhost tmp]# df -k
>
> Again, df -k . with a space and a period following the -k.
>
[carlton@localhost var]$ pwd
/var
[carlton@localhost var]$ df -k .

Filesystem 1K-blocks Used Available Use% Mounted on
/dev/hdb5 20200708 9237668 9936892 49% /mnt/hdb5

>>
>>> Provide a copy of fstab, and maybe mtab too. Do an
>>> ls -l /
[Carlton@localhost var]$ cat /etc/fstab

#
# fstab file for the temporary system whilst awaiting the new
motherboard fro AriesTheRam
#
### /dev/hda - 10Gb main boot disk, contains the M2008.0 root file
system and the swap partition
/dev/hda5 / ext3 relatime 1 1
#
### /dev/hdb 140Gb disk with 1st 20Gb scrap. should only contain /home
#
/dev/hdb2 /home ext3 relatime 1 2
/dev/cdrom2 /media/cdrom2 auto
umask=0022,users,iocharset=utf8,noauto,ro,exec 0 0
/dev/fd0 /media/floppy auto
umask=0022,users,iocharset=utf8,noauto,exec,flush 0 0
### /dev/hdb3 old M2006 partitions taken from the failed 13Gb disk
before it was scrapped.
/dev/hdb3 /mnt/hdb3 ext3 relatime 1 2
## /dev/hdb5 - not currently used
/dev/hdb5 /mnt/hdb5 ext3 relatime 1 2
### /dev/hdb6 copy uf Windows XP Documents and settings for Carlton &
Claire + /Windows directory
/dev/hdb6 /mnt/hdb6 ext3 relatime 1 2
#
# /dev/hdd 200Gb drive
#
### /dev/hdd5 is the home directory for the original M2008.0 AriesTheRam
installation.
## set to read only to preserve integrity
/dev/hdd5 /mnt/M2008/home ext2 sync,ro,relatime 1 2
### /dev/hdd6 (VFAT32) MP3 collection and the Win_Fdrive
/dev/hdd6 /mnt/hdd6-music vfat
umask=0000,users,iocharset=utf8,auto,rw,exec 0 0
### /dev/hdd7 is root directory for original M2008.0 installation on
AriesTheRam
## set to read only to preserve integrity
/dev/hdd7 /mnt/M2008/root ext2 sync,ro,relatime 1 2
### /dev/hdd8, M208.0 backup partition
/dev/hdd8 /mnt/Backup ext2 sync,relatime 1 2
### /dev/hdd1 VFAT copy of most of the Windows drive (AriesTheRam /dev/hda)
/dev/hdd1 /mnt/wincopy vfat
umask=0000,users,iocharset=utf8,sync,auto,rw,exec 0 0
none /proc proc defaults 0 0
/dev/hda1 swap swap defaults 0 0


[carlton@localhost var]$ cat /etc/mtab


/dev/hda5 / ext3 rw,relatime 0 0
none /proc proc rw 0 0
/dev/hdb2 /home ext3 rw,relatime 0 0
/dev/hdb3 /mnt/hdb3 ext3 rw,relatime 0 0
/dev/hdb5 /mnt/hdb5 ext3 rw,relatime 0 0
/dev/hdb6 /mnt/hdb6 ext3 rw,relatime 0 0
/dev/hdd5 /mnt/M2008/home ext2 ro,sync,relatime 0 0
/dev/hdd6 /mnt/hdd6-music vfat
rw,nosuid,nodev,users,umask=0000,iocharset=utf8 0 0
/dev/hdd7 /mnt/M2008/root ext2 ro,sync,relatime 0 0
/dev/hdd8 /mnt/Backup ext2 rw,sync,relatime 0 0
/dev/hdd1 /mnt/wincopy vfat
rw,nosuid,nodev,sync,users,umask=0000,iocharset=utf8 0 0
none /proc/sys/fs/binfmt_misc binfmt_misc rw 0 0


[carlton@localhost var]$ ls -l /
total 116


drwxr-xr-x 2 root root 4096 2008-04-18 00:33 bin/

drwxr-xr-x 3 root root 4096 2008-04-22 19:29 boot/


-rw-r--r-- 1 root root 11575 2008-04-20 19:07 debugcache.txt
-rw-r--r-- 1 root root 11576 2008-04-20 19:09 debugsocket.txt
-rw-r--r-- 1 root root 11559 2008-04-20 19:09 debugtmp.txt

drwxr-xr-x 19 root root 15180 2008-04-22 19:31 dev/
drwxr-xr-x 93 root root 12288 2008-04-22 19:29 etc/


drwxr-xr-x 7 root root 4096 2008-04-17 23:08 home/
drwxr-xr-x 2 root root 4096 2008-03-18 07:25 initrd/

drwxr-xr-x 13 root root 4096 2008-04-22 19:29 lib/


drwx------ 2 root root 16384 2008-03-17 21:53 lost+found/
drwxr-xr-x 9 root root 4096 2008-04-20 19:34 media/
drwxr-xr-x 15 root root 4096 2008-03-20 23:14 mnt/
drwxr-xr-x 4 root root 4096 2008-03-17 23:53 opt/

dr-xr-xr-x 114 root root 0 2008-04-22 19:28 proc/
drwx------ 13 root root 4096 2008-04-22 21:39 root/


drwxr-xr-x 2 root root 4096 2008-03-25 22:48 sbin/

drwxr-xr-x 11 root root 0 2008-04-22 19:28 sys/
drwxrwxrwt 9 root root 4096 2008-04-22 19:30 tmp/


drwxr-xr-x 13 root root 4096 2008-03-20 18:59 usr/
lrwxrwxrwx 1 root root 21 2008-04-16 00:03 var ->
/mnt/hdb5/M2008.0-var/
drwxr-xr-x 2 root root 4096 2008-04-15 23:32 varOLD/

>>> and provide that. If you have locate installed, run


>>> locate tmp
>>> and take a look at what tmp directories exist, where.
>>> You might then cd to each of them, and run df -k .
>>> from within the tmp directory, just to see if maybe
>>> the thing is actually on a partition that is in fact
>>> full.

[root@localhost ~]# df -k `locate tmp|grep "\/tmp$"`|sort -u
df: `/home/carlton/wincopy/Documents': No such file or directory
df: `and': No such file or directory
df: `Settings/Carlton/Adent': No such file or directory
df: `Engineering/djgpp/tmp': No such file or directory
df: `/home/carlton/wincopy/Documents': No such file or directory
df: `and': No such file or directory
df: `Settings/Carlton/Application': No such file or directory
df: `Data/Sun/Java/Deployment/cache/tmp': No such file or directory
df: `/home/carlton/wincopy/Documents': No such file or directory
df: `and': No such file or directory
df: `Settings/Carlton/Application': No such file or directory
df: `Data/Sun/Java/Deployment/cache/javapi/v1.0/tmp': No such file or
directory
/dev/hda5 9292992 4056492 4764432 46% /
/dev/hdb2 20641788 16581684 3011464 85% /home
/dev/hdb5 20200708 9234312 9940248 49% /mnt/hdb5


>> [root@localhost tmp]# cat /etc/fstab
>> #
>> # fstab file for the temporary system whilst awaiting the new
>> motherboard fro AriesTheRam
>> #
>> ### /dev/hda - 10Gb main boot disk, contains the M2008.0 root file
>> system and the swap partition
>> /dev/hda5 / ext3 relatime 1 1
>
> The hda5 above is not a swap partition. It has an ext3 filesystem on
> it, and swap has its own filesystem, called "swap". What is it?

The root filesystem is on partition hda5, the swap partition is on
partition hda1

>> #
>> ### /dev/hdb 140Gb disk with 1st 20Gb scrap. should only contain /home
>> #
>> /dev/hdb2 /home ext3 relatime 1 2
>> /dev/cdrom2 /media/cdrom2 auto
>> umask=0022,users,iocharset=utf8,noauto,ro,exec 0 0
>> /dev/fd0 /media/floppy auto
>> umask=0022,users,iocharset=utf8,noauto,exec,flush 0 0
>> ### /dev/hdb3 old M2006 partitions taken from the failed 13Gb disk
>> before it was scrapped.
>> /dev/hdb3 /mnt/hdb3 ext3 relatime 1 2
>
> The above hdb3 is one partition, not multiple old "partitions."

The note about the old partitions is to remind me of the contents, there
is a directory for each partition of a previous M2006 installation I was
intending to revive.

>
>> ## /dev/hdb5 - not currently used
>> /dev/hdb5 /mnt/hdb5 ext3 relatime 1 2
>
> The above hdb5 is 49 percent full of something.

hdb5 now contains /var, it was moved here as the partition was empty.

>
>> ### /dev/hdb6 copy uf Windows XP Documnts and settings for Carlton &
>> Claire + /Windows directory
>> /dev/hdb6 /mnt/hdb6 ext3 relatime 1 2
>
> This hdb6 has a linux ext3 filesystem, which seems odd for XP documents,
> windows directory, etc, at at 99 percent full it
> does raise questions about what it actually is.

hdb6 is a copy of the windows system (not an active XP installation)
copied on to a ext3 filesystem, since Linux can't write to the NTFS
partition.

>> #
>> # /dev/hdd 200Gb drive
>> #
>> ### /dev/hdd5 is the home directory for the original M2008.0
>> AriesTheRam installation.
>> ## set to read only to preserve integrity
>> /dev/hdd5 /mnt/M2008/home ext2 sync,ro,relatime 1 2
>
> If something is trying to write to an original 2008.0 tmp directory
> in home and the partition were read only, that might generate the error
> you are seeing.

Nothing is attempting to write to any of the original 2008.0

Due to a motherboard failure on another PC, the old installation is only
stored here temporarily. The current installation was a fresh install
from the 2008.0 DVD

>> ### /dev/hdd6 (VFAT32) MP3 collection and the Win_Fdrive
>> /dev/hdd6 /mnt/hdd6-music vfat
>> umask=0000,users,iocharset=utf8,auto,rw,exec 0 0
>> ### /dev/hdd7 is root directory for original M2008.0 installation on
>> AriesTheRam
>> ## set to read only to preserve integrity
>> /dev/hdd7 /mnt/M2008/root ext2 sync,ro,relatime 1 2

As above, this is just to preserve the old installation until the
motherboard is replaced.

>>>
>>> You keep saying it is not a full partition, and you may
>>> be right, but until I see details that tell me where
>>> things are and confirmation that there is no tmp
>>> directory on a full partition, I must asssume that it
>>> is a possiblity, and perhaps the most probable.
>>>
>>> Cheers!
>>>
>>> jim b.
>>>
>

> I do believe I would go into mcc, to local disks, to manage
> disk partitions, toggle to expert mode, and do a careful
> inventory of what you have where in terms of partitions. Look for
> duplicate links/mount points/names, the swap partition (wherever it
> may be), and particular attention to any partitions that are read only
> and might be the target for an attempt to write to a tmp or
> root directory.

I had look at the partition mount points in mcc and found no duplicate
mount points. The only read only partitions were set to read only to
preserve the integrity of the data from accidental damage, and are not
part of the current installation.

Thanks for your help, it is much appreciated, and I have learnt a lot,
even if I haven't solved my problem, which is frustrating.

regards,
Carlton.

Jim Beard

unread,
Apr 22, 2008, 10:16:02 PM4/22/08
to
Carlton wrote:
> [carlton@localhost var]$ pwd
> /var
> [carlton@localhost var]$ df -k .
> Filesystem 1K-blocks Used Available Use% Mounted on
> /dev/hdb5 20200708 9237668 9936892 49% /mnt/hdb5

Ok. We know exactly where /var is located, and its space used.

> [root@localhost ~]# df -k `locate tmp|grep "\/tmp$"`|sort -u

Will not do the job, as your output below shows. You need to cd
into the directory and run df -k . with the dot (meaning "this
partition).

> df: `/home/carlton/wincopy/Documents': No such file or directory
> df: `and': No such file or directory
> df: `Settings/Carlton/Adent': No such file or directory
> df: `Engineering/djgpp/tmp': No such file or directory
> df: `/home/carlton/wincopy/Documents': No such file or directory
> df: `and': No such file or directory
> df: `Settings/Carlton/Application': No such file or directory
> df: `Data/Sun/Java/Deployment/cache/tmp': No such file or directory
> df: `/home/carlton/wincopy/Documents': No such file or directory
> df: `and': No such file or directory
> df: `Settings/Carlton/Application': No such file or directory
> df: `Data/Sun/Java/Deployment/cache/javapi/v1.0/tmp': No such file or
> directory

You might try something like
for i in `locate tmp|grep tmp$`
do
cd $i ; df -k .
done
Note the . after the -k there. More than one tmp dir on a partition
will yield more than one of the same data, but it should get them
all so you can look for anything with 95% or more....

> Thanks for your help, it is much appreciated, and I have learnt a lot,
> even if I haven't solved my problem, which is frustrating.

Sorry 'bout the frustration. I am out of ideas. Good luck.

David W. Hodgins

unread,
Apr 24, 2008, 2:32:16 AM4/24/08
to
On Tue, 22 Apr 2008 18:04:20 -0400, Carlton <USE...@adent.demon.co.uk> wrote:

Please provide the strace output of running the three vserions of lnusertemp
from one of the accounts where it is failing. That way the exact cause of the
problem can be determined, instead of people guessing, as to the cause.

Again, did you try deleteing he .DCOP* files?

Carlton

unread,
Apr 24, 2008, 5:19:01 PM4/24/08
to
Carlton wrote:
> I have the same problem, but it only effects one of the 2 users on the
> system. (Mandriva 2008.0 Free).
> I had to move the /var directory from the root partition to another, as
> the system was over 95% full on a 9.5Gb partition.
> Since moving the /var directory to another partition and replacing it
> with a symbolic link the problem occurred.
Thanks to the help of all who contributed, the problem has now been
solved, and I've learned a lot from the process.

The error was incorrect permissions on /tmp, resulting in an apparent
disc full error message.
I changed the /tmp to a link to /var/tmp, and changed the permissions on
/var/tmp using
chmod 777 /var/tmp
chmod +t /var/tmp

I still have boot messages saying atd and haldaemon failed to start, but
at least my wife can use it again. I shall attempt to solve these
problems in due course.

best regards,
Carlton.

David W. Hodgins

unread,
Apr 24, 2008, 8:06:41 PM4/24/08
to
On Thu, 24 Apr 2008 17:19:01 -0400, Carlton <USE...@adent.demon.co.uk> wrote:

> The error was incorrect permissions on /tmp, resulting in an apparent

Just curious, did you find that out from strace?
Thanks for updating the thread.

Moe Trin

unread,
Apr 25, 2008, 4:03:11 PM4/25/08
to
On Thu, 24 Apr 2008, in the Usenet newsgroup alt.os.linux.mandriva, in article
<fuqtg5$gcf$1$830f...@news.demon.co.uk>, Carlton wrote:

>The error was incorrect permissions on /tmp, resulting in an apparent
>disc full error message.

One wonders how permissions on /tmp got changed.

>I changed the /tmp to a link to /var/tmp,

If you have a 'clear the tmp directories' program running (often as a
cron job), this is not a good idea. The rational for /tmp and /var/tmp
are different. Quoting from the FHS (http://www.pathname.com/fhs/),
the short description says:

/tmp : Temporary files
/var/tmp : Temporary files preserved between system reboots

while the more complete explanation says:

The /tmp directory must be made available for programs that require
temporary files.

Programs must not assume that any files or directories in /tmp are
preserved between invocations of the program.

Rationale: IEEE standard P1003.2 (POSIX, part 2) makes requirements
that are similar to the above section.

Although data stored in /tmp may be deleted in a site-specific manner,
it is recommended that files and directories located in /tmp be
deleted whenever the system is booted.

FHS added this recommendation on the basis of historical precedent
and common practice, but did not make it a requirement because
system administration is not within the scope of this standard.

compared to

/var/tmp : Temporary files preserved between system reboots

The /var/tmp directory is made available for programs that require
temporary files or directories that are preserved between system
reboots. Therefore, data stored in /var/tmp is more persistent than
data in /tmp.

Files and directories located in /var/tmp must not be deleted when
the system is booted. Although data stored in /var/tmp is typically
deleted in a site-specific manner, it is recommended that deletions
occur at a less frequent interval than /tmp.

Most distributions set up a cron job that cleans out files in /tmp and
/var/tmp in a timely manner, but uses different rules of how old the
candidate files must be before deletion. Also, some distributions
may 'rm -rf /tmp/*' on boot, which would also (in this case) get the
files in /var/tmp. However, the FHS clearly states this is a local
issue, so you can do as you wish.

>and changed the permissions on /var/tmp using
>chmod 777 /var/tmp
>chmod +t /var/tmp

/bin/chmod 1777 /var/tmp

does it in one, but that _should_ be the default permissions of both
/tmp and /var/tmp (with ownership root:root)

[compton ~]$ ls -ld /tmp /var/tmp
drwxrwxrwt 3 root root 16384 Apr 25 06:19 /tmp
drwxrwxrwt 2 root root 1024 Apr 21 04:24 /var/tmp
[compton ~]$

>I still have boot messages saying atd and haldaemon failed to start,
>but at least my wife can use it again. I shall attempt to solve these
>problems in due course.

Can't say for 'haldaemon' (I don't have it installed), but here, the
only thing atd is looking for when started (/etc/rc.d/init.d/atd) is
the presence of a lockfile in /var/lock/subsys/, and the daemon may be
looking in /var/spool/cron to see if their are any jobs.. Have you got
another permission problem? You could use the package manager to check
this (as root, "rpm -Va | grep '[MU]'" would check for permission and/or
user changes globally - may take a few minutes to run). Note that the
package manager only checks files/directories it installed, and ignores
some files like /etc/passwd that are obviously going to change from the
package manager's defaults.

Old guy

Carlton

unread,
Apr 26, 2008, 11:18:30 AM4/26/08
to
David W. Hodgins wrote:
> On Thu, 24 Apr 2008 17:19:01 -0400, Carlton <USE...@adent.demon.co.uk> wrote:
>
>> The error was incorrect permissions on /tmp, resulting in an apparent
>
> Just curious, did you find that out from strace?
> Thanks for updating the thread.
>
> Regards, Dave Hodgins
>
Not strace, I'm sorry to say, I was thinking about the problem at work,
and realised, that when I moved /var (as root) I would have changed the
permissions.
Thanks anyway, I have filed the strace tip away for use in any future
diagnostics.
Carlton.
0 new messages