An odd question: What's the most efficient way to hunt for a folder
that appears to have gone AWOL? I was using Thunar to drag the folder
to another one (both in my user directory). The folder vanished from
its old home, but failed to appear in the new one. I've looked in
several folders one by one, and can't find it. But there's gotta be a
better way to do that...Unfortunately, the missing folder carries the
name "local" so when I run the "locate" command, you can imagine how
many of those show up in my terminal!
With best regards,
Pete
--
Peter N. Spotts | Science reporter
The Christian Science Monitor
210 Massachusetts Ave., Boston, MA 02115 USA
Office: 617-450-2449 | Office-in-home: 508-520-3139
Email: pspotts@alum.mit.edu | Amateur-radio call: KC1JB
www.csmonitor.com | www.kc1jb.net
"The knack of flying is to throw yourself at the ground and miss."
-- Douglas Adams, "A Hitchhiker's Guide to the Galaxy"
--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
12-19-2008, 05:05 PM
Rashkae
Hunting for an AWOL folder
Peter N. Spotts wrote:
> Hi Folks,
>
> An odd question: What's the most efficient way to hunt for a folder
> that appears to have gone AWOL? I was using Thunar to drag the folder
> to another one (both in my user directory). The folder vanished from
> its old home, but failed to appear in the new one. I've looked in
> several folders one by one, and can't find it. But there's gotta be a
> better way to do that...Unfortunately, the missing folder carries the
> name "local" so when I run the "locate" command, you can imagine how
> many of those show up in my terminal!
>
> With best regards,
>
> Pete
>
cd /
sudo find -name local -type d
Using sudo just in case the folder got stuck somewhere you don't have
read permission. this is very unlikely however, since you were able to
move it there in the first place (and must therefore have write
permission). If you aren't sure about the capitalization of local, use
-iname instead of name for a case insensitive search.
--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
12-19-2008, 05:26 PM
Derek Broughton
Hunting for an AWOL folder
Peter N. Spotts wrote:
> Hi Folks,
>
> An odd question: What's the most efficient way to hunt for a folder
> that appears to have gone AWOL? I was using Thunar to drag the folder
> to another one (both in my user directory). The folder vanished from
> its old home, but failed to appear in the new one. I've looked in
> several folders one by one, and can't find it. But there's gotta be a
> better way to do that...Unfortunately, the missing folder carries the
> name "local" so when I run the "locate" command, you can imagine how
> many of those show up in my terminal!
# locate local | grep -v /usr/local
--
derek
--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
12-19-2008, 10:27 PM
Hunting for an AWOL folder
sudo updatedb
locate [name of missing folder]
Quoting "Peter N. Spotts" <pspotts@alum.mit.edu>:
> Hi Folks,
>
> An odd question: What's the most efficient way to hunt for a folder
> that appears to have gone AWOL? I was using Thunar to drag the folder
> to another one (both in my user directory). The folder vanished from
> its old home, but failed to appear in the new one. I've looked in
> several folders one by one, and can't find it. But there's gotta be a
> better way to do that...Unfortunately, the missing folder carries the
> name "local" so when I run the "locate" command, you can imagine how
> many of those show up in my terminal!
>
> With best regards,
>
> Pete
>
> --
> Peter N. Spotts | Science reporter
> The Christian Science Monitor
> 210 Massachusetts Ave., Boston, MA 02115 USA
> Office: 617-450-2449 | Office-in-home: 508-520-3139
> Email: pspotts@alum.mit.edu | Amateur-radio call: KC1JB
> www.csmonitor.com | www.kc1jb.net
>
> "The knack of flying is to throw yourself at the ground and miss."
> -- Douglas Adams, "A Hitchhiker's Guide to the Galaxy"
>
> --
> ubuntu-users mailing list
> ubuntu-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
>
>
----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.
--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users