Search:

Type: Posts; User: orpheus07; Keyword(s):

Search: Search took 0.26 seconds.

  1. Replies
    20
    Views
    1,163

    [ubuntu] Re: Finding and Deleting Files!

    it could be one of the files have a quote, you can try this:


    find /Groups/* -type f -print0 | grep -v "\." | xargs rm
  2. Thread: Mounting

    by orpheus07
    Replies
    5
    Views
    583

    [ubuntu] Re: Mounting

    try doing this:


    dmesg | tail

    to find out what the log says...
  3. Replies
    11
    Views
    22,997

    [ubuntu] Re: Apache + PHP write permissions

    www-data is right. it's apache in red-hat based distros.

    can you post the output of this:


    groups teknophil
  4. Replies
    2
    Views
    351

    [ubuntu] Re: Map windows drives

    after installing samba, install the nautilus-share extension.


    sudo apt-get install nautilus-share

    then you can share your files by just a right click->"Sharing Options" in your Ubuntu box.
    ...
  5. Replies
    51
    Views
    3,802

    Poll: Re: Ubuntu VS. Mac OS X

    i agree with almost everyone here :) Mac OS is just too expensive for my taste...
  6. [xubuntu] Re: Complete greenhorn, doesn't know how to install programs

    Is this a fresh installation?
  7. Replies
    20
    Views
    1,163

    [ubuntu] Re: Finding and Deleting Files!

    tsoul, can you post the exact commands that you used, and the exact error also.
  8. Replies
    20
    Views
    1,163

    [ubuntu] Re: Finding and Deleting Files!

    you can use xargs, followed by rm.


    find your/path/ -type f | grep -v "\." | xargs rm

    note that this will delete the files and there's no way to recover it. maybe you can move it to a...
  9. Replies
    20
    Views
    1,163

    [ubuntu] Re: Finding and Deleting Files!

    hmmmm.... you can try this:

    find your/path/ -type f | grep -v "\."
  10. Replies
    20
    Views
    1,163

    [ubuntu] Re: Finding and Deleting Files!

    tsoul, if you know the user name, you can use find's -user option
  11. Replies
    20
    Views
    1,163

    [ubuntu] Re: Finding and Deleting Files!

    you can try using find.

    find / -name 0E059100
  12. Replies
    11
    Views
    22,997

    [ubuntu] Re: Apache + PHP write permissions

    You can add apache to the user's list of groups, then set their home directories to "group writable", e.g 775

    You can check a user's groups by running the groups command.

    host:~/ groups...
  13. Replies
    6
    Views
    1,743

    [ubuntu] Re: clean up disk space

    If I'm low on disk space, I use Disk Usage Analyzer to figure out what's eating it and where the files are located. It's bundled with Ubuntu.

    You can find it under Applications->Accessories->Disk...
Results 1 to 13 of 13