Results 1 to 3 of 3

Thread: Sbf_Flash

  1. #1
    Join Date
    Sep 2009
    Beans
    137

    Sbf_Flash

    Ok, so I've been trying to install sbf_flash to root my droid into Ubuntu and so far no luck. I've downloaded the application from

    http://blog.opticaldelusion.org/2010...ures.html#more

    then created a new directory and put the file in that. The problem is, I have to idea how to install and run the program. I know this is a novice problem, but I've always installed things through terminal promts, never this way.
    It is a truth, universally acknowledged, that a man in possession of windows/mac/unix, shall find himself in want of Linux

  2. #2
    Join Date
    Nov 2006
    Beans
    20

    Lightbulb Re: Sbf_Flash

    Hmm, the question is somewhat outdated, but for future reference:

    you make the file executable with:
    Code:
    $ chmod o+x ./sbf_flash
    (./ thereby referencing to the current directory/folder)

    then you run it by calling it directly:

    Code:
    $ sudo ./sbf_flash
    all this happens in a terminal (as indicated by the "$")

    why the "./" ? Because calling a program without a path to it will need that program to be in a directory that's listed in an environment variable called $PATH. Unlike in DOS, the current directory is normally not part of $PATH in Linux.

  3. #3
    Join Date
    Dec 2008
    Beans
    13

    Re: Sbf_Flash

    Quote Originally Posted by kybKenny View Post
    Hmm, the question is somewhat outdated, but for future reference:

    you make the file executable with:
    Code:
    $ chmod o+x ./sbf_flash
    (./ thereby referencing to the current directory/folder)

    then you run it by calling it directly:

    Code:
    $ sudo ./sbf_flash
    all this happens in a terminal (as indicated by the "$")

    why the "./" ? Because calling a program without a path to it will need that program to be in a directory that's listed in an environment variable called $PATH. Unlike in DOS, the current directory is normally not part of $PATH in Linux.
    Thanks for this!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •