I downloaded a .bin file, ran it, it unpacked a few folders, and several files. There was a "Read Me" file with instructions on how to install it. First you copy/move one file to the /opt folder, then you open a terminal and type in "source SetUpEnv.sh". Of course Kubuntu does not use "source" command. Now I have been trying to install using
1. ./
2. sudo ./
3. sudo source ./
4. dpkg
5. apt-file search SetUpEnv.sh
6. Sudo #!/bin/sh/ SetUpEnv.sh
7.bash -x ./ SetUpEnv.sh
8. ./N750-GPL-1.00.42.bin (original downloaded folder)
9. chmod +x
10.chmod a+x
11 chmod 700
12 chmod 777
Here is the output when I run the command:
robby@robby-Aspire-5734Z:~/Downloads$ ./SetUpEnv.sh
robby@robby-Aspire-5734Z:~/Downloads$
Here is the contents of SetUoEnv.sh when opened with Kate
#!/bin/bash
#
# this script use to setting the Beechnut's project build environment
#
TOOLCHAINDIR=/opt/mipsel-linux-uclibc
BEECHNUT_CODEDIR=`pwd`
PRJ=project
TOP_PROJECT=$BEECHNUT_CODEDIR/$PRJ
VENDORNAME=belkin
export BEECHNUT_CODEDIR TOOLCHAINDIR TOP_PROJECT
#
# put TOOLCHAINDIR into PATH
#
if ! echo ${PATH} | /bin/grep -q ${TOOLCHAINDIR}/bin ; then
PATH=${TOOLCHAINDIR}/bin:${PATH}
fi
export LANG=en_US.UTF-8
PROJECT_PATH=$BEECHNUT_CODEDIR/project/belkin/WG9117A23-AK/F9K1103v1_DB-N750
export PROJ_INCLUDE=$PROJECT_PATH
OUTPATH="$BEECHNUT_CODEDIR/Build/belkin/WG9117A23-AK/F9K1103v1_DB-N750"
export PROJ_OUTPUT=$OUTPATH
export PROJ_HW_REV=N750_V1_VB
alias brh='cd $PROJECT_PATH'
alias out='cd $OUTPATH'
alias src='cd $BEECHNUT_CODEDIR/src/router'
alias kernel='cd $BEECHNUT_CODEDIR/src/linux'
alias uboot='cd $BEECHNUT_CODEDIR/Uboot'
That's just what I've done today, I've been working on this for over a week, and just don't remember everything I've tried. This is a driver for my wireless router that I really need. The file is from Belkin and downloaded from Softpedia. So I feel I can trust it, I very rarely download anything, unless it's an emergency.
So can someone tell me something that might help?
1. ./
2. sudo ./
3. sudo source ./
4. dpkg
5. apt-file search SetUpEnv.sh
6. Sudo #!/bin/sh/ SetUpEnv.sh
7.bash -x ./ SetUpEnv.sh
8. ./N750-GPL-1.00.42.bin (original downloaded folder)
9. chmod +x
10.chmod a+x
11 chmod 700
12 chmod 777
Here is the output when I run the command:
robby@robby-Aspire-5734Z:~/Downloads$ ./SetUpEnv.sh
robby@robby-Aspire-5734Z:~/Downloads$
Here is the contents of SetUoEnv.sh when opened with Kate
#!/bin/bash
#
# this script use to setting the Beechnut's project build environment
#
TOOLCHAINDIR=/opt/mipsel-linux-uclibc
BEECHNUT_CODEDIR=`pwd`
PRJ=project
TOP_PROJECT=$BEECHNUT_CODEDIR/$PRJ
VENDORNAME=belkin
export BEECHNUT_CODEDIR TOOLCHAINDIR TOP_PROJECT
#
# put TOOLCHAINDIR into PATH
#
if ! echo ${PATH} | /bin/grep -q ${TOOLCHAINDIR}/bin ; then
PATH=${TOOLCHAINDIR}/bin:${PATH}
fi
export LANG=en_US.UTF-8
PROJECT_PATH=$BEECHNUT_CODEDIR/project/belkin/WG9117A23-AK/F9K1103v1_DB-N750
export PROJ_INCLUDE=$PROJECT_PATH
OUTPATH="$BEECHNUT_CODEDIR/Build/belkin/WG9117A23-AK/F9K1103v1_DB-N750"
export PROJ_OUTPUT=$OUTPATH
export PROJ_HW_REV=N750_V1_VB
alias brh='cd $PROJECT_PATH'
alias out='cd $OUTPATH'
alias src='cd $BEECHNUT_CODEDIR/src/router'
alias kernel='cd $BEECHNUT_CODEDIR/src/linux'
alias uboot='cd $BEECHNUT_CODEDIR/Uboot'
That's just what I've done today, I've been working on this for over a week, and just don't remember everything I've tried. This is a driver for my wireless router that I really need. The file is from Belkin and downloaded from Softpedia. So I feel I can trust it, I very rarely download anything, unless it's an emergency.
So can someone tell me something that might help?
Comment