I am unable to install the finger package in Ubuntu .Below is the output on my terminal when I tried running the command
`sudo apt-get install finger`
ritesh@ubuntu:~$ sudo apt-get install finger
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
finger
0 upgraded, 1 newly installed, 0 to remove and 444 not upgraded.
E: Could not get lock /var/cache/apt/archives/lock - open (11: Resource
temporarily unavailable)
E: Unable to lock directory /var/cache/apt/archives/
I also see a lock file in location /var/cache/apt/archives with following permissions
-rw-r----- 1 root root 0 2012-03-29 04:53 lock
fuser -vik /var/cache/apt/archives/lockto identify and possibly kill it. – Alan Curry Aug 12 '12 at 8:01ritesh@ubuntu:/var/cache/apt/archives$ ps -eaf | grep sudo root 3333 1 0 13:02 ? 00:00:00 sudo apt-get install mailutilsThis is what i see probably held by installation of mailutils by root user but I am unable to kill it as I dont know default root password in ubuntu – Ritesh Aug 12 '12 at 8:10pstree -ap 3333to find out what other processes are involved. – Alan Curry Aug 12 '12 at 8:16