maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Applications (https://talk.maemo.org/forumdisplay.php?f=41)
-   -   File Manager (https://talk.maemo.org/showthread.php?t=13177)

rone 2007-12-26 11:05

Re: File Manager
 
If you go to http://www.gronmayer.com/it/index.php and add Maemo Bora you should then be able to do an "apt-get install libdbus-1-2" in a terminal window

Olof 2007-12-26 22:27

Re: File Manager
 
Thanks alot, ill try it in a few days when i get hold of my N800 again :).

bexley 2007-12-29 01:42

Re: File Manager
 
This script seems to take care of the dependencies for bora:

http://austinche.name/maemo/compat-os2007.sh

More info:
http://www.gossamer-threads.com/lists/maemo/users/31212

(Has this script been discussed in this forum?)

kurupted 2008-01-04 01:21

Re: File Manager
 
i am using emelfm2. it seems good so that i dont have to use xterm to copy files etc. but all i can do is really browse with it. wtf is up with permissions when i want to copy a file it says "cannot create file /usr/blah/blah/blah.file - permission denied" or when i want to delete somthing it says "cannot delete /usr/wmafsa/wa.s - Permission denied"

i have installed become root and i was able to copy my file through xterm but i want to use emelfm2.

i am using an n810 ,os2008

cakey 2008-01-04 01:44

Re: File Manager
 
You need to be logged in as root to edit/create files in any directory other than /home/user. Try lauching emelfm from the terminal as root.

pipeline 2008-01-04 01:46

Re: File Manager
 
Ahh yes ditto cakey

You can do that with emelfm2 but you have to do the same thing....
open xterm
sudo gainroot
emelfm2

launching emelfm2 that way will run it with full root permissions, so use carefully.

munky261 2008-01-04 01:54

Re: File Manager
 
i second Queen on emelFM2 , works perfectly

kurupted 2008-01-04 22:05

Re: File Manager
 
how can i make it so i can start up emelfm2 in root with out having to type it in xterm everytime.

ArgentSilver 2008-01-05 02:22

Re: File Manager
 
Quote:

Originally Posted by kurupted (Post 121025)
how can i make it so i can start up emelfm2 in root with out having to type it in xterm everytime.

On a Linux PC you would do it with 'Setuid' on the executable, but I don't know if that works on the tablet.

recyclebin 2008-01-05 04:59

Re: File Manager
 
Quote:

Originally Posted by kurupted (Post 121025)
how can i make it so i can start up emelfm2 in root with out having to type it in xterm everytime.

I set up emelfm2 to run as root using these steps:
  1. Add the following line to "/etc/sudoers" (need to be root to edit it):
    Code:

    user ALL = NOPASSWD: /usr/local/lib/emelfm2/emelfm2
  2. Change the "/usr/bin/emelfm2" wrapper script file to "sudo" the actual emelfm2 executable (if not being run by root):
    Code:

    #!/bin/sh
    cd /usr/local/lib/emelfm2

    # Don't use 'sudo' if already root...
    UID=`id -ur 2> /dev/null`
    if [ $UID -eq 0 ]; then
      ./emelfm2 &
    else
      sudo ./emelfm2 &
    fi

    (this also puts emelfm2 into the background automatically so you'll get your shell prompt back)


All times are GMT. The time now is 09:05.

vBulletin® Version 3.8.8