• The forum software that supports hummy.tv has been upgraded to XenForo 2.3!

    Please bear with us as we continue to tweak things, and feel free to post any questions, issues or suggestions in the upgrade thread.

FTP/telnet find command

Border

Member
I dont know much about linux commands so excuse me if this seems a stupid question.
I logged on via telnet and was searching with find. I tried
Code:
find / -mmin -1

This created a list of 202 pages with 62 lines per page.

Does this mean that these 12000 files (approx) were changed in the previous minute?

Is that a lot of activity or just the standard background activity? Thanks.
 
-1 is right for things modified within the last minute. I get 10823 entries but they're mostly not real files just entries in the /proc and /sys virtual filesystems. Exclude those and you get a much more reasonable list.

Code:
humax# find / -mmin -1 | egrep -v '^/(sys|proc|dev)/'
/mnt/hd1/dvbepg
/mnt/hd1/dvbepg/epg.dat
/mnt/hd2/mod/var/opkg/tmp
/mnt/hd2/mod/etc
/mnt/hd2/mod/etc/rsck.db
/mnt/hd2/mod/etc/secrets.tdb
/mnt/hd2/mod/monitor
/mnt/hd2/mod/monitor/monitor.db
/tmp
/tmp/share_info.tdb
/tmp/ntforms.tdb
/tmp/ntprinters.tdb
/tmp/ntdrivers.tdb
/tmp/printing.tdb
/tmp/locking.tdb
/tmp/brlock.tdb
/tmp/unexpected.tdb
/tmp/connections.tdb
 
Back
Top