You are not logged in.
Pages: 1
Hi, Is there a fast way to find all files not owned by a package?
My solution takes ages:
find / -mount -type f -exec pacman -Qo {} ; 2> /home/police/tmp/flist > /dev/null
Offline
Something like the following should be slightly faster:
cd /tmp
pacman -Ql | sed -e 'sx.* xx' | sort > /tmp/pac-list
find / | sort > find-list
diff -U 1 find-list pac-list
Offline
Pages: 1