[Çözüldü] tar.gz halindeki jet internet programı kurulumu

Başlatan Kaleihan, 02 Kasım 2015 - 22:11:56

« önceki - sonraki »

0 Üyeler ve 1 Ziyaretçi konuyu incelemekte.

Kaleihan

İnternet için jet kullanıyorum. Jetin internetini kullanabiliyorum ama programını kurup interneti öyle kullanmak bana daha mantıklı göründü. Kurulum dosyasının yanında nasıl kurulacağına dair bilgi veren bir belge var. Şöyle:
#! /bin/bash

FILE_NAME=Avea_Jet_Mobil_Modem
EXE_FILE=Avea_Jet_Mobil_Modem
DISPLAY_NAME="Avea Jet Mobil Modem"
SYS_PATH=/opt
INSTALL_PATH=$SYS_PATH/$FILE_NAME
LANGUAGE=English
QM_NAME=ondatim_lan.qm
HELP=help
RUN_EVINCE=$SYS_PATH/$FILE_NAME/Data/launchFirefox.sh
UPDATE_FILE=update

#Define variable-two-phrase-production---begin---------
TWO_ON=true   # true or false
PATH_NAME=`dirname $0`
TMP_DIR_NAME=/tmp
TWO_FRASE_TEMP_DIR=$TMP_DIR_NAME/two_phase_temp
TWO_FRASE_CONFIG_FILE_MODEM=/PCCFG/Description.xml
DES_DIR=$INSTALL_PATH
ZIP_FILE_NAME=$TWO_FRASE_TEMP_DIR/lu.zip
TEMP_DIR=$TWO_FRASE_TEMP_DIR/temp
LAST_RUN=$INSTALL_PATH/last_run.sh
CHOOSE_LANGUAGE_RUN=$TEMP_DIR/choose_language.sh
#Define variable-two-phrase-production---end------------

# function defination begin

function get_distro_name {
    ISSUE_NAME="/etc/issue"
    DIS_NAME="other"
    if [ -e $ISSUE_NAME -a -f $ISSUE_NAME ]; then
        if [ "$(grep "Ubuntu" $ISSUE_NAME)" ]; then
            DIS_NAME="Ubuntu"
        elif [ "$(grep 'SUSE' $ISSUE_NAME)" ]; then
            DIS_NAME="OpenSUSE"
        elif [ "$(grep "Fedora" $ISSUE_NAME)" ]; then
            DIS_NAME="Fedora"
        elif [ "$(grep "Mandriva" $ISSUE_NAME)" ]; then
            DIS_NAME="Mandriva"
        fi
    fi
    echo $DIS_NAME
}


function assert_software_installed
{
    if [ -f $INSTALL_PATH/$FILE_NAME ]; then
        echo "****** Fail to install !!! "
        echo the "$FILE_NAME" has been installed.
        read -p "press any key to exit.... " -n 1
        exit -1
    fi
}

function assert_root_privilege
{
    echo -n "*** Check for root..."
    if [ $EUID -ne 0 ]; then
        echo -e "\b\b\b - failed"
        echo "*** Please retry as root user."
        read -p "press any key to exit.... " -n 1
        exit -1
    fi
}

function mymessagebox
{
    MSG_CMD_GNOME="/usr/bin/zenity"
    MSG_CMD_KDE="kdialog"
    if [  -e $MSG_CMD_GNOME -a -f $MSG_CMD_GNOME ];then
        $MSG_CMD_GNOME --error --title="$1" --text="$2" 2>/dev/null
    else
        $MSG_CMD_KDE --error "$2" 2>/dev/null
    fi
    echo -e "\n$2\n"
    read temp
}

function check_wvdial
{
    WVDIAL="/usr/bin/wvdial"
    if [ -e $WVDIAL -a -f $WVDIAL ];then
        echo "check wvdial successfully."
    else
        mymessagebox "Sorry" "This software depends on \"wvdial\" to establish internet connection. You should install \"wvdial\" first.You can refer to Operating System installation CD or Homepage to find the \"wvdial\" installation package. This installation process will not continue until you install \"wvdial\"."
exit -1
    fi
}

function check_qt3
{
    QT3LIB=$(find /usr/lib -name "libqt-mt.so*")
    echo $QT3LIB
    if [ "$QT3LIB" ];then
        echo "check QT3 Runtime Library successfully."
    else
mymessagebox "Sorry" "This software will not run until you install \"QT3 Runtime Library\". You can refer to Operaing System installation CD or Homepage to find out the QT3 Runtime Library installation package. This installation process will not continue until you install QT3 Runtime Library first."
        exit -1
    fi
}

function select_language
{
    echo "Select the language for the installation form the choices below.
(1)Turkish
(2)English"
    echo "Please input number (1 or 2):"
    read S_NUMBER
   
    if [ $S_NUMBER == "1" ];then
       LANGUAGE=Turkish
    elif [ $S_NUMBER == "2" ];then
       LANGUAGE=English
    else
       LANGUAGE=Turkish
    fi
}

function two_phrase_production_state1
{
    rettfp=3
    if [ $TWO_ON == 'true' ];then
        if [ -d $TWO_FRASE_TEMP_DIR ]; then
                rm -rf $TWO_FRASE_TEMP_DIR
        fi
        mkdir -p $TWO_FRASE_TEMP_DIR
           
            if [ -f $PATH_NAME/zr ];then
            chmod +x $PATH_NAME/zr
                $PATH_NAME/zr $TWO_FRASE_CONFIG_FILE_MODEM $TWO_FRASE_TEMP_DIR
                rettfp=$?
            fi

        if [ $rettfp == '5' -o $rettfp == '6' -o $rettfp == '7' ];then
                echo -e "Stage 5"
            #   echo -e "Can not complete the installation. Installation will abort."
            #   echo -e "Please try to install again."
            #       read temp_1
            #   exit -1
        elif [  $rettfp == '3'  -o  $rettfp == '4'  ];then
                echo -e "Stage 3"
        else
                echo -e "Get resouse file successfully."
        fi

    fi
}

function delete_previous_file
{
    #delete first
    if [ -f $INSTALL_PATH/$FILE_NAME ];then
        rm -rf $INSTALL_PATH
            rm -f /bin/$FILE_NAME
    fi

    if [ -f $INSTALL_PATH/$EXE_FILE ];then
        rm -rf $INSTALL_PATH
            rm -f /bin/$EXE_FILE
    fi

    TMP_FILE=/etc/defaultwvdial.conf
    if [ -f $TMP_FILE ];then
        rm -f $TMP_FILE
          echo ..........delete $TMP_FILE ok...........
    fi

    TMP_FILE=/etc/ppp/defaultoptions
    if [ -f $TMP_FILE ];then
        rm -f $TMP_FILE
          echo ..........delete $TMP_FILE ok...........
    fi

    TMP_FILE=/etc/ppp/defaultresolv.conf
    if [ -f $TMP_FILE ];then
        rm -f $TMP_FILE
          echo ..........delete $TMP_FILE ok...........
    fi

    TMP_FILE=/etc/defaultresolv.conf
    if [ -f $TMP_FILE ];then
        rm -f $TMP_FILE
          echo ..........delete $TMP_FILE ok...........
    fi

    TMP_FILE=/usr/share/applications/$FILE_NAME*.desktop
    if [ -f $TMP_FILE ];then
        rm -f $TMP_FILE
          echo ..........delete $TMP_FILE ok...........
    fi

    TMP_FILE=/usr/share/pixmaps/$FILE_NAME*.png
    if [ -f $TMP_FILE ];then
        rm -f $TMP_FILE
          echo ..........delete $TMP_FILE ok...........
    fi

    #delete autorun files
    TMP_FILE=/sbin/join-air-launch.sh
    if [ -f $TMP_FILE ];then
        rm -f $TMP_FILE
          echo ..........delete $TMP_FILE ok...........
    fi

    TMP_FILE=/etc/udev/rules.d/998-join-air.rules
    if [ -f $TMP_FILE ];then
        rm -f $TMP_FILE
          echo ..........delete $TMP_FILE ok...........
    fi

    TMP_FILE=/etc/udev/rules.d/9-cdrom.rules
    if [ -f $TMP_FILE ];then
        rm -f $TMP_FILE
          echo ..........delete $TMP_FILE ok...........
    fi
}

function extract_installation_package
{
    cp -f $FILE_NAME.tar.gz $SYS_PATH/$FILE_NAME.tar.gz
    cd $SYS_PATH
    tar -zxvf $FILE_NAME.tar.gz
}

function two_phrase_production_state2
{
    if [ $TWO_ON == 'true' -a $rettfp == '0' ];then
        # unzip files
        unzip > /dev/null
        ret=$?
        if [ $ret != '0' ]; then
            echo -e "Can not find unzip."
            echo -e "Installation will abort."
            exit -1
        fi

        unzip -o $ZIP_FILE_NAME -d $TEMP_DIR
        retunz=$?
        if [ $retunz != '0' ]; then
            echo -e "unzip $ZIP_FILE_NAME failed."
            echo -e "Installation will abort."
            exit -1
        else
            echo -e "unzip $ZIP_FILE_NAME successfully."
        fi


        RETURN_CHOOSE_LANG=1
        if [ $rettfp == '0' -a -f $CHOOSE_LANGUAGE_RUN ];then
            chmod +x $CHOOSE_LANGUAGE_RUN
            $CHOOSE_LANGUAGE_RUN
            RETURN_CHOOSE_LANG=$?
        fi

        #change permission
        #chmod 0755 -R $TEMP_DIR
        #chmod u+s  -R $TEMP_DIR

        # backup destination directory
        BACKUP_DES_DIR=$TWO_FRASE_TEMP_DIR/backup_for_desDir
        if [ -d $BACKUP_DES_DIR ];then
            rm -rf $BACKUP_DES_DIR
        fi
        mkdir -p $BACKUP_DES_DIR
        cp -rf $DES_DIR/* $BACKUP_DES_DIR/

        #start to replace
        cp -rf $TEMP_DIR/* $DES_DIR/
        retplace=$?
        if [ $retplace != '0' ];then
            cp -rf $BACKUP_DES_DIR/* $DES_DIR/
            echo -e "Replacing file failed."
            echo -e "Installation will abort."
            exit -1;
        else
            echo -e "Repalcing file successfully."
            rm -rf $BACKUP_DES_DIR
        fi

    fi
}

function setup_menu
{
    chmod 0755 $INSTALL_PATH/usr/share/applications/$EXE_FILE.desktop
    cp -f $INSTALL_PATH/usr/share/applications/$EXE_FILE.desktop /usr/share/applications/$EXE_FILE.desktop

    chmod 0755 $INSTALL_PATH/usr/share/pixmaps/$EXE_FILE.png
    cp -f $INSTALL_PATH/usr/share/pixmaps/$EXE_FILE.png /usr/share/pixmaps/$EXE_FILE.png

    update_applications_menu
}

function setup_online_update
{
    chmod 0755 $SYS_PATH/$FILE_NAME/$UPDATE_FILE
    cd $SYS_PATH/$FILE_NAME/usr/lib
    cp * /usr/lib

    if [ "$(cat /etc/lsb-release | grep Ubuntu)" != "" ];then
        ln -sf /usr/lib/libcurl-gnutls.so.4 /usr/lib/libcurl.so.4
    elif [ "$(cat /etc/debian_version)"=="4.0" ];then
        ln -sf /usr/lib/libcurl.so.4.2.0 /usr/lib/libcurl.so.4
    fi
}

function copy_connection_files
{
    SYS_PPP_DIR="/etc/ppp"
    if [ -e $SYS_PPP_DIR -a -d $SYS_PPP_DIR ];then
        chmod a+x $SYS_PPP_DIR
    fi

    PEERS_DIR="/etc/ppp/peers"
    if [ -e $PEERS_DIR -a -d $PEERS_DIR ];then
        chmod a+x $PEERS_DIR
    fi

    chmod 0755 $INSTALL_PATH/pppd/ip-up.local
    cp -f  $INSTALL_PATH/pppd/ip-up.local /etc/ppp/ip-up.local

    chmod 0755 $INSTALL_PATH/pppd/ip-down.local
    cp -f $INSTALL_PATH/pppd/ip-down.local /etc/ppp/ip-down.local

    chmod 0755 $INSTALL_PATH/pppd/get_route_info
    cp -f $INSTALL_PATH/pppd/get_route_info /etc/ppp/get_route_info

    TMP_FILE=/etc/wvdial.conf
    if [ -f $TMP_FILE ];then
        chmod 0755 $TMP_FILE
    else
        cp -f $INSTALL_PATH/Data$TMP_FILE  $TMP_FILE
        chmod 0755 $TMP_FILE   
    fi

    TMP_FILE=/etc/ppp/options
    if [ -f $TMP_FILE ];then
        chmod 0755 $TMP_FILE
    else
        cp -f $INSTALL_PATH/Data$TMP_FILE  $TMP_FILE
        chmod 0755 $TMP_FILE 
    fi


    TMP_FILE=/etc/ppp/resolv.conf
    if [ -f $TMP_FILE ];then
        chmod 0755 $TMP_FILE
    else
        cp -f $INSTALL_PATH/Data$TMP_FILE  $TMP_FILE
        chmod 0755 $TMP_FILE 
    fi

    TMP_FILE=/etc/resolv.conf
    if [ -f $TMP_FILE ];then
        chmod 0755 $TMP_FILE
    else
        cp -f $INSTALL_PATH/Data$TMP_FILE  $TMP_FILE
        chmod 0755 $TMP_FILE
    fi

    #add by ChenYing 2009-3-5
    TMP_FILE=/etc/resolv.conf.bak
    if [ -f $TMP_FILE ];then
        chmod 0755 $TMP_FILE
    fi

    TMP_FILE=/etc/resolv.conf.prev
    if [ -f $TMP_FILE ];then
        chmod 0755 $TMP_FILE
    fi

    TMP_FILE=/etc/ppp/peers/wvdial
    if [ -f $TMP_FILE ];then
        chmod 0755 $TMP_FILE
    else
        cp -f $INSTALL_PATH/Data$TMP_FILE  $TMP_FILE
        chmod 0755 $TMP_FILE
    fi
}

function copy_language_and_help_file
{
    #Language Select and help file
    TMP_FILE=$INSTALL_PATH/bin/$LANGUAGE/$QM_NAME
    if [ -f $TMP_FILE ];then
        chmod 0755 $TMP_FILE
        cp -f $TMP_FILE  $INSTALL_PATH/Data/$QM_NAME
    fi
    TMP_FILE=$INSTALL_PATH/bin/$LANGUAGE/$HELP
    cp -r $TMP_FILE $INSTALL_PATH/Data
}

function chmod_files
{
    chmod 0755 $INSTALL_PATH/bin/$EXE_FILE
    cp -f $INSTALL_PATH/bin/$EXE_FILE /bin/$EXE_FILE

    chmod 0755 /usr/bin/wvdial
    chmod 0755 /usr/sbin/pppd
    chmod 0755 $RUN_EVINCE

    chmod a+x $INSTALL_PATH/Data/run_evince.sh
    chmod a+x $INSTALL_PATH/Data/aplay.sh
    chmod a+x $INSTALL_PATH/Data/autostart.sh
    chmod a+x $INSTALL_PATH/Data/gedit.sh
    chmod a+x $INSTALL_PATH/Data/get_system_info.sh

    chmod 0777 $SYS_PATH
    chmod 0777 $INSTALL_PATH
    chown root.root $INSTALL_PATH/$EXE_FILE
    chmod 0755 $INSTALL_PATH/$EXE_FILE
    chmod u+s $INSTALL_PATH/$EXE_FILE
    chmod 0755 $INSTALL_PATH/uninstall.sh
}

function install_aplay
{
   APLAYBIN=$INSTALL_PATH/bin/aplay
   APLAY_TARGET="/usr/bin/aplay"
   if [ ! -e $APLAY_TARGET ];then
        cp $APLAYBIN $APLAY_TARGET
        chmod 755 $APLAY_TARGET
   fi
}

function setup_udev_rules
{
    TMP_FILE=$INSTALL_PATH/bin/9-cdrom.rules
    cp -f $TMP_FILE  /etc/udev/rules.d/9-cdrom.rules
    #if locate udevadm >/dev/null 2>&1
    if [ -f /sbin/udevadm ]
    then
        /sbin/udevadm control reload_rules >/dev/null 2>&1
        /sbin/udevadm control --reload-rules >/dev/null 2>&1
        /sbin/udevadm trigger --subsystem-match=block
        echo "udevadm is exist!"
    else
        /sbin/udevcontrol reload_rules
        /sbin/udevtrigger --subsystem-match=block
        echo "udevadm isn't exist!"
    fi
    rm -f  $INSTALL_PATH/bin/9-cdrom.rules
}

function remove_temp_file
{
    rm -f $SYS_PATH/$FILE_NAME.tar.gz
}

function install_driver
{
    echo ******Begin to $INSTALL_PATH/driver
    cd $INSTALL_PATH/driver
    chmod 0755 driver_install.run
    ./driver_install.run
    echo ****** End to $INSTALL_PATH/driver
}

function add_selinux_rules
{
    cd $INSTALL_PATH/driver
    chmod 0755 se
    if [ -n "`uname -r |grep fc`" ];then   
        ./se "/usr/sbin/semodule -i disselfirefox.pp"
        ./se "/usr/sbin/semodule -i nm.pp"
        echo "it's ok!"
    fi
}

function change_user_group
{
    while read LINE
    do
        USER2CH=${LINE%%:*}
        LINE=${LINE#*:}
        LINE=${LINE#*:}
        USER_ID=${LINE%%:*}
   
        if [ $USER_ID -ge 1000 ];then
            if [ $USER2CH != "nobody" ]; then
                #echo $USER2CH:$USER_ID
if [ "OpenSUSE" == $(get_distro_name) ] ;then
                    /usr/sbin/usermod -G dialout $USER2CH
        else
                    /usr/sbin/usermod -a -G  netdev,dialout,dip $USER2CH
        fi
            fi
        fi
    done < /etc/passwd
}

function setup_auto_start_script
{
    TMP_FILE=$INSTALL_PATH/launch-gui.sh
    if [ -f $TMP_FILE ];then
        chown root.root $TMP_FILE
        chmod 0755  $TMP_FILE
        chmod u+s  $TMP_FILE
        cp -f $TMP_FILE  /bin
    fi
}



function handleXWindowProbOnOpenSUSE114
{
    export DISPLAY=":0.0"
    XUSER=`who | grep tty7 | awk '{print $1}'`
    if [ "" == "$XUSER" ];then
        XUSER=`who |  grep --regexp=:0[\ ] | awk '{print $1}'`
            if [ "" == "$XUSER" ];then
                XUSER=`who |  grep --regexp=:0[\)] | awk '{print $1}'`
            fi
    fi
    echo $XUSER
    su $XUSER -c "xhost +"
}

function run_program
{
    if [ $TWO_ON == 'true' -a $rettfp == '0' -a -f $LAST_RUN ];then
        chmod +x $LAST_RUN
        $LAST_RUN $RETURN_CHOOSE_LANG
    else
        echo "install completed!!!"

        echo  "....After setup, you will find the $DISPLAY_NAME in \"Applications->Internet->$DISPLAY_NAME\". Click the $DISPLAY_NAME and the application will run"

        read -p "press any key to continue.... " -n 1
        $EXE_FILE
    fi
}

function update_applications_menu
{
    PARTIAL_NAME=$(locale | head -1)
    PARTIAL_NAME=${PARTIAL_NAME#*=}
    PARTIAL_NAME=${PARTIAL_NAME%.*}

    CACHE_NAME=`ls /usr/share/applications/desktop.*.cache | head -1`
    CACHE_NAME=${CACHE_NAME#*.}
    CACHE_NAME=${CACHE_NAME%.*}
    CACHE_NAME=${CACHE_NAME#*.}

    FILENAME=$PARTIAL_NAME.$CACHE_NAME
    if [ -f /usr/share/applications/desktop.$FILENAME.cache ]; then
        /usr/share/gnome-menus/update-gnome-menus-cache /usr/share/applications > /usr/share/applications/desktop.$FILENAME.cache
    fi
}

# function defination end


#main start

assert_software_installed

echo "..................start install................."

assert_root_privilege

if [ "OpenSUSE" == $(get_distro_name) ] ;then
    handleXWindowProbOnOpenSUSE114
fi

check_qt3

check_wvdial

echo "ok..."

select_language

two_phrase_production_state1

delete_previous_file

extract_installation_package

two_phrase_production_state2

setup_menu

setup_online_update

copy_connection_files

copy_language_and_help_file

chmod_files

install_aplay

setup_udev_rules

remove_temp_file

install_driver

add_selinux_rules

change_user_group

setup_auto_start_script

run_program

exit

Bu programı nasıl kurarım yardımcı arkadaşlar arıyorum :)


ata1


betseg

İndirilenler dizininde diye varsayıyorum.
cd İndirilenler
tar xf nebuprogramınadı.tar.gz
cd nebuprogramınadı
chmod +x nebubelgeninadı
sudo sh nebubelgeninadı

Bu adımlar büyük ihtimalle işe yarayacaktır.

Kaleihan

Alıntı yapılan: betseg - 02 Kasım 2015 - 23:07:41
İndirilenler dizininde diye varsayıyorum.
cd İndirilenler
tar xf nebuprogramınadı.tar.gz
cd nebuprogramınadı
chmod +x nebubelgeninadı
sudo sh nebubelgeninadı

Bu adımlar büyük ihtimalle işe yarayacaktır.
Malesef bu kodlar işe yaramadı. Lİnk veren diğer arkadaşlar o konuları okudum ama acemi olduğum için fazla uğraştıracak. Daha sonra öğrenirim bunları. :) Yukarıda verdiğim kurulum notlarından kurulum konusunda yardımcı olabilir misiniz. Teşekkürler.

betseg


Kaleihan

Geç olsun güç olmasın :)
Programı incelemek isterseniz kendi google drivemden indirme linki https://drive.google.com/file/d/0B88cWvHHp89haXdIa1VrUTBiX3c/view?usp=sharing .
Onun dışında verdiğiniz kodların çıktılarını vereyim. El ile arşivden çıkarım klasör şeklinde devam ettim fazla kodlardan kurtulmak için :)

osman@gokturk:~/Masaüstü$ cd Avea_Jet_Mobil_Modem
osman@gokturk:~/Masaüstü/Avea_Jet_Mobil_Modem$
osman@gokturk:~/Masaüstü/Avea_Jet_Mobil_Modem$ chmod +x Avea_Jet_Mobil_Modem
osman@gokturk:~/Masaüstü/Avea_Jet_Mobil_Modem$ sudo sh Avea_Jet_Mobil_MOdem
[sudo] password for osman:
sh: 0: Can't open Avea_Jet_Mobil_MOdem
osman@gokturk:~/Masaüstü/Avea_Jet_Mobil_Modem$

-DıLgEş-

Şimdi ben indirsem de inceleyemem tam olarak ne var bu dizinin içinde?


cd nerede/bu/kuruluacak program
ls -a
Aşkın; gözü kör, kulağı sağır, dili tutuk, aklı kıttır..! Hayır yani bu halde nasıl herkesi madara ediyor onu çözemedim..

Kaleihan

Program Avea Jetin programı. Programsızda kullanılıyor ama bi deneyeyim dedim.
Çıktılar:
osman@gokturk:~/Masaüstü$ cd Avea_Jet_Mobil_Modem
osman@gokturk:~/Masaüstü/Avea_Jet_Mobil_Modem$ ls -a
.                     bin     Language       pppd          update
..                    Data    launch-gui.sh  res           UpdateCfg.ini
Avea_Jet_Mobil_Modem  driver  log            uninstall.sh  usr
osman@gokturk:~/Masaüstü/Avea_Jet_Mobil_Modem$

betseg

Alıntı yapılan: Kaleihan
osman@gokturk:~/Masaüstü/Avea_Jet_Mobil_Modem$ sudo sh Avea_Jet_Mobil_MOdem
[sudo] password for osman:
sh: 0: Can't open Avea_Jet_Mobil_MOdem

O büyük harf olmuş :)

Kaleihan

Fazla dikkatsizim. Yeni çıktılar:

[codeosman@gokturk:~/Masaüstü/Avea_Jet_Mobil_Modem$ sudo sh Avea_Jet_Mobil_Modem
Avea_Jet_Mobil_Modem: 1: Avea_Jet_Mobil_Modem: Syntax error: word unexpected (expecting ")")
osman@gokturk:~/Masaüstü/Avea_Jet_Mobil_Modem$ ]

-DıLgEş-

Avea_Jet_Mobil_Modem Çift tıklama ile çalışmıyor o halde.. launch-gui.sh dosyasi nedir?
Aşkın; gözü kör, kulağı sağır, dili tutuk, aklı kıttır..! Hayır yani bu halde nasıl herkesi madara ediyor onu çözemedim..

Kaleihan

Hiçbir fikrim yok malesef. Bu işte acemiyim. İndirme linkini verdim. İnceleyebilirsiniz.

heartsmagic

İkinci paketi açmana gerek yok, "install.sh" dosyası yani betiği var orada.

sudo ./install.sh

Fakat eksik kütüphane hatası verecek sana:

Alıntı YapThis software will not run until you install "QT3 Runtime Library". You can refer to Operaing System installation CD or Homepage to find out the QT3 Runtime Library installation package. This installation process will not continue until you install QT3 Runtime Library first.

https://forum.ubuntu-tr.net/index.php?topic=40983.0
https://forum.ubuntu-tr.net/index.php?topic=34887.msg498604#msg498604

Eski kaynakları eklemeyi pek önermiyorum ama sorun çözüldü denmiş ikinci başlıkta gördüğün üzere. Eğer o kaynağı ekleyeceksen:

sudo -H gedit /etc/apt/source.list

ile dosyayı açıp en sona:

Alıntı Yapdeb http://cz.archive.ubuntu.com/ubuntu lucid main
ekleyebilirsin. Ardından:


sudo apt-get update
sudo apt-get install -s libqt3-mt


çıktısını buraya bir geç bakalım.
Hayattan çıkarı olmayanların, ölümden de çıkarı olmayacaktır.
Hayatlarıyla yanlış olanların ölümleriyle doğru olmalarına imkân var mıdır?


Böylece yalan, dünyanın düzenine dönüştürülüyor.

Kaleihan

Eksik kütüphane hatasının ne olduğunu bilmiyorum ben direk çıktıları vereyim.
ilk çıktı:
osman@gokturk:~/Masaüstü/Avea_Jet_Mobil_Modem$ sudo ./install.sh
[sudo] password for osman:
sudo: ./install.sh: komut bulunamadı
osman@gokturk:~/Masaüstü/Avea_Jet_Mobil_Modem$

Eski kaynaklarla ilgili linklerden 2. linkten uyguladığım kodlar;
osman@gokturk:~$ deb http://cz.archive.ubuntu.com/ubuntu lucid main
'deb' komutu bulunamadı, şunu mu demek istediniz:
'dab' paketinden 'bsdgames' komutu (universe)
'deb3' paketinden 'quilt' komutu (main)
'dex' paketinden 'dex' komutu (universe)
'debi' paketinden 'devscripts' komutu (main)
'debc' paketinden 'devscripts' komutu (main)
'dwb' paketinden 'dwb' komutu (universe)
'xdeb' paketinden 'xdeb' komutu (universe)
'derb' paketinden 'icu-devtools' komutu (main)
deb: komut bulunamadı
osman@gokturk:~$
osman@gokturk:~$ sudo aptitude update
[sudo] password for osman:
E: /var/lib/apt/lists/lock kilidi alınamadı - open (11: Özkaynak geçici olarak kullanılamaz durumda)
E: /var/lib/apt/lists/ dizini kilitlenemiyor
osman@gokturk:~$ sudo aptitude install libqt3-mt
libqt3-mt'in kullanılabilir bir sürümü bulunamadı
libqt3-mt'in kullanılabilir bir sürümü bulunamadı
Hiçbir paket kurulmayacak, yükseltilmeyecek ya da kaldırılmayacak.
0 paket yükseltildi, 0 yeni kuruldu, 0 kaldırıldı, 5 yükseltilmedi.
Arşivlerden 0 B veri alınacak. Paketler açıldıktan sonra 0 B yer kullanılacak.
                                     
osman@gokturk:~$

Neredeyse uyguladığım her kodda bi olumsuzluk oldu.Haliyle ilk 2 aşama olmayınca 3.yü de yapmayayım dedim. Şuan okulun internetinden yazıyorum. Oyüzden bazı şeyleri yükleyememiş olabilir mi?

speakerXXL

#15
Lucid deposundan yükleme yapamayabilirsiniz. Bu sebeple libqt3-mt paketini yüklemek için aktif eski LTS sürüm olan precise deposunu sisteme eklemeyi deneyiniz. Zaten çıktılara göre lucid deposunu ekleyemediğiniz için, aşağıdaki komutları sırasıyla uçbirimde çalıştırarak libqt3-mt paketini sıkıntısız kurarsınız.

echo "deb http://archive.ubuntu.com/ubuntu precise main" | sudo tee  /etc/apt/sources.list.d/precise-main.list
sudo apt-get update

Artık aşağıdaki komutla libqt3-mt paketini kurabilirsiniz.

sudo apt-get install libqt3-mt

Yukarıdaki kurulum komutu çalıştırmadan önce aşağıdaki komutun çıktısını paylaşırsanız, herhangi bir çakışma yaşanıp yaşanmayacağı ile ilgili değerlendirme yapılabilir.

sudo apt-get install libqt3-mt -s



-DıLgEş-

Alıntı yapılan: KaleihanEksik kütüphane hatasının ne olduğunu bilmiyorum ben direk çıktıları vereyim.
ilk çıktı:
Kod: [Seç]osman@gokturk:~/Masaüstü/Avea_Jet_Mobil_Modem$ sudo ./install.sh
[sudo] password for osman:
sudo: ./install.sh: komut bulunamadı
osman@gokturk:~/Masaüstü/Avea_Jet_Mobil_Modem$
Eski kaynaklarla ilgili linklerden 2. linkten uyguladığım kodlar;
Kod: [Seç]osman@gokturk:~$ deb http://cz.archive.ubuntu.com/ubuntu lucid main
'deb' komutu bulunamadı, şunu mu demek istediniz:
 'dab' paketinden 'bsdgames' komutu (universe)
 'deb3' paketinden 'quilt' komutu (main)
 'dex' paketinden 'dex' komutu (universe)
 'debi' paketinden 'devscripts' komutu (main)
 'debc' paketinden 'devscripts' komutu (main)
 'dwb' paketinden 'dwb' komutu (universe)
 'xdeb' paketinden 'xdeb' komutu (universe)
 'derb' paketinden 'icu-devtools' komutu (main)
deb: komut bulunamadı
osman@gokturk:~$
osman@gokturk:~$ sudo aptitude update
[sudo] password for osman:
E: /var/lib/apt/lists/lock kilidi alınamadı - open (11: Özkaynak geçici olarak kullanılamaz durumda)
E: /var/lib/apt/lists/ dizini kilitlenemiyor
osman@gokturk:~$ sudo aptitude install libqt3-mt
libqt3-mt'in kullanılabilir bir sürümü bulunamadı
libqt3-mt'in kullanılabilir bir sürümü bulunamadı
Hiçbir paket kurulmayacak, yükseltilmeyecek ya da kaldırılmayacak.
0 paket yükseltildi, 0 yeni kuruldu, 0 kaldırıldı, 5 yükseltilmedi.
Arşivlerden 0 B veri alınacak. Paketler açıldıktan sonra 0 B yer kullanılacak.
                                     
osman@gokturk:~$ Neredeyse uyguladığım her kodda bi olumsuzluk oldu.Haliyle ilk 2 aşama olmayınca 3.yü de yapmayayım dedim. Şuan okulun internetinden yazıyorum. Oyüzden bazı şeyleri yükleyememiş olabilir mi?
sudo su
./install.sh
Böyle çıktıları geçer misiniz?
Aşkın; gözü kör, kulağı sağır, dili tutuk, aklı kıttır..! Hayır yani bu halde nasıl herkesi madara ediyor onu çözemedim..

heartsmagic

@Kaleihan, tariflerimizi tam okumuyorsun. Doğrudan bir komut değil benim verdiğim, nereye nasıl ekleyeceğini de anlattım. Dikkatlice eklersen yaparsın. İstiyorsan @ speakerXXL'nin tarifi ile de yapabilirsin, o dosya açı kapatmadan nasıl yapılacağını tarif etmiş. Bu arada not düşeyim, o Lucid deposu hâla canlı :)

Ancak, bir şey daha söylemek istiyorum. İlk iletine tekrar bakınca Kali kullandığını yeni gördüm. AveaJET neden gerekli o dağıtıma? Günlük kullanım için uygun olmadığını defalarca söyledik forumda zaten. Kendisi Debian tabanlı ve biz sana burada Ubuntu depoları ekletmeye çalışıyoruz. O eski depoların yeni Ubuntu sürümlerinde bile ne yapacağı meçhulken bir de Debian tabanlı Kali ile neler olur bir şey söyleyemeyiz sana. Gereksiz uğraşlar bence bu türden meseleler Kali gibi dağıtımlar için. Neyse, dağıtımı kullanan sensin neticede.

Konutu Diğer Dağıtımlar bölümüne alalım.
Hayattan çıkarı olmayanların, ölümden de çıkarı olmayacaktır.
Hayatlarıyla yanlış olanların ölümleriyle doğru olmalarına imkân var mıdır?


Böylece yalan, dünyanın düzenine dönüştürülüyor.

Kaleihan

#18
Alıntı yapılan: heartsmagic - 24 Ocak 2016 - 00:46:18
@Kaleihan, tariflerimizi tam okumuyorsun. Doğrudan bir komut değil benim verdiğim, nereye nasıl ekleyeceğini de anlattım. Dikkatlice eklersen yaparsın. İstiyorsan @ speakerXXL'nin tarifi ile de yapabilirsin, o dosya açı kapatmadan nasıl yapılacağını tarif etmiş. Bu arada not düşeyim, o Lucid deposu hâla canlı :)

Ancak, bir şey daha söylemek istiyorum. İlk iletine tekrar bakınca Kali kullandığını yeni gördüm. AveaJET neden gerekli o dağıtıma? Günlük kullanım için uygun olmadığını defalarca söyledik forumda zaten. Kendisi Debian tabanlı ve biz sana burada Ubuntu depoları ekletmeye çalışıyoruz. O eski depoların yeni Ubuntu sürümlerinde bile ne yapacağı meçhulken bir de Debian tabanlı Kali ile neler olur bir şey söyleyemeyiz sana. Gereksiz uğraşlar bence bu türden meseleler Kali gibi dağıtımlar için. Neyse, dağıtımı kullanan sensin neticede.

Konutu Diğer Dağıtımlar bölümüne alalım.
Özürdilerim tarifleri elimden geldiğince doğru yapmaya çalışıyorum.
İletimi değiştirmişsiniz ama kullandığım dağıtım ismimin altında yazıyor. Ben Kali kullanmıyorum. İlk iletimde kali kurmaya çalışmamın nedeni bütün dağıtımları elimden geldiğince denemeye çalışmaktı. Ubuntu 14.10 kullanıyorum. Konuyu taşımışsınız normale çevirebilirmisiniz. Çözümleri en yakın zamanda denicem.


Mesaj tekrarı yüzünden mesajınız birleştirildi. Bu mesajın gönderim tarihi : 27 Ocak 2016 - 16:04:49

Alıntı yapılan: speakerXXL - 22 Ocak 2016 - 13:35:41
Lucid deposundan yükleme yapamayabilirsiniz. Bu sebeple libqt3-mt paketini yüklemek için aktif eski LTS sürüm olan precise deposunu sisteme eklemeyi deneyiniz. Zaten çıktılara göre lucid deposunu ekleyemediğiniz için, aşağıdaki komutları sırasıyla uçbirimde çalıştırarak libqt3-mt paketini sıkıntısız kurarsınız.

echo "deb http://archive.ubuntu.com/ubuntu precise main" | sudo tee  /etc/apt/sources.list.d/precise-main.list
sudo apt-get update

Artık aşağıdaki komutla libqt3-mt paketini kurabilirsiniz.

sudo apt-get install libqt3-mt

Yukarıdaki kurulum komutu çalıştırmadan önce aşağıdaki komutun çıktısını paylaşırsanız, herhangi bir çakışma yaşanıp yaşanmayacağı ile ilgili değerlendirme yapılabilir.

sudo apt-get install libqt3-mt -s
Yukarıdaki kurulum komutunu çalıştırmadan önce şu komutu çalıştırın çakışma varmı bakalım demişsiniz :) çıktılar şöyle:
osman@gokturk:~$ echo "deb http://archive.ubuntu.com/ubuntu precise main" | sudo tee  /etc/apt/sources.list.d/precise-main.list
[sudo] password for osman:
deb http://archive.ubuntu.com/ubuntu precise main
osman@gokturk:~$ sudo apt-get update
Bağlandı  http://ppa.launchpad.net wily InRelease                             
Bağlandı  http://tr.archive.ubuntu.com wily InRelease                         
Alınıyor: 1 http://deb.opera.com stable InRelease [2.590 B]                   
Alınıyor: 2 http://security.ubuntu.com wily-security InRelease [64,4 kB]       
Bağlandı  http://repository.spotify.com stable InRelease                       
Yoksay    http://archive.ubuntu.com precise InRelease                         
Yoksay    http://repo.vivaldi.com stable InRelease                             
Alınıyor: 3 http://tr.archive.ubuntu.com wily-updates InRelease [64,4 kB]     
Bağlandı  http://ppa.launchpad.net wily InRelease                             
Alınıyor: 4 http://deb.opera.com stable/non-free amd64 Packages [1.826 B]     
Bağlandı  http://repo.steampowered.com precise InRelease                       
Bağlandı  http://repository.spotify.com stable/non-free amd64 Packages         
Alınıyor: 5 http://archive.ubuntu.com precise Release.gpg [198 B]             
Alınıyor: 6 http://repo.vivaldi.com stable Release.gpg [819 B]                 
Alınıyor: 7 http://ppa.launchpad.net wily InRelease [15,4 kB]                 
Alınıyor: 8 http://deb.opera.com stable/non-free i386 Packages [1.654 B]       
Bağlandı  http://repository.spotify.com stable/non-free i386 Packages         
Alınıyor: 9 http://archive.ubuntu.com precise Release [49,6 kB]               
Alınıyor: 10 http://repo.vivaldi.com stable Release [4.121 B]                 
Bağlandı  http://repo.steampowered.com precise/steam Sources                   
Bağlandı  http://tr.archive.ubuntu.com wily-backports InRelease               
Bağlandı  http://repo.steampowered.com precise/steam amd64 Packages           
Alınıyor: 11 http://repo.vivaldi.com stable/main amd64 Packages [2.305 B]     
Alınıyor: 12 http://repo.vivaldi.com stable/main i386 Packages [2.318 B]       
Bağlandı  http://repo.steampowered.com precise/steam i386 Packages             
Alınıyor: 13 http://security.ubuntu.com wily-security/main Sources [27,7 kB]   
Alınıyor: 14 http://ppa.launchpad.net wily InRelease [15,5 kB]                 
Alınıyor: 15 http://archive.ubuntu.com precise/main amd64 Packages [1.273 kB] 
Alınıyor: 16 http://security.ubuntu.com wily-security/restricted Sources [2.854 B]
Alınıyor: 17 http://security.ubuntu.com wily-security/universe Sources [7.417 B]
Alınıyor: 18 http://security.ubuntu.com wily-security/multiverse Sources [1.913 B]
Alınıyor: 19 http://security.ubuntu.com wily-security/main amd64 Packages [87,1 kB]
Yoksay    http://deb.opera.com stable/non-free Translation-tr_TR               
Alınıyor: 20 http://ppa.launchpad.net wily/main amd64 Packages [14,0 kB]       
Yoksay    http://deb.opera.com stable/non-free Translation-tr                 
Yoksay    http://repository.spotify.com stable/non-free Translation-tr_TR     
Yoksay    http://deb.opera.com stable/non-free Translation-en                 
Yoksay    http://repository.spotify.com stable/non-free Translation-tr         
Yoksay    http://repo.vivaldi.com stable/main Translation-tr_TR               
Yoksay    http://repository.spotify.com stable/non-free Translation-en         
Yoksay    http://repo.vivaldi.com stable/main Translation-tr                   
Alınıyor: 21 http://ppa.launchpad.net wily/main i386 Packages [13,8 kB]       
Alınıyor: 22 http://security.ubuntu.com wily-security/restricted amd64 Packages [10,9 kB]
Alınıyor: 23 http://security.ubuntu.com wily-security/universe amd64 Packages [37,2 kB]
Yoksay    http://repo.vivaldi.com stable/main Translation-en                   
Yoksay    http://repo.steampowered.com precise/steam Translation-tr_TR         
Alınıyor: 24 http://ppa.launchpad.net wily/main Translation-en [12,2 kB]       
Yoksay    http://repo.steampowered.com precise/steam Translation-tr           
Yoksay    http://repo.steampowered.com precise/steam Translation-en           
Alınıyor: 25 http://security.ubuntu.com wily-security/main i386 Packages [84,9 kB]
Alınıyor: 26 http://archive.ubuntu.com precise/main i386 Packages [1.274 kB]   
Alınıyor: 27 http://ppa.launchpad.net wily/main amd64 Packages [413 B]         
Alınıyor: 28 http://tr.archive.ubuntu.com wily-updates/main Sources [43,4 kB] 
Alınıyor: 29 http://ppa.launchpad.net wily/main i386 Packages [416 B]         
Alınıyor: 30 http://ppa.launchpad.net wily/main Translation-en [457 B]         
Alınıyor: 31 http://tr.archive.ubuntu.com wily-updates/restricted Sources [3.741 B]
Alınıyor: 32 http://security.ubuntu.com wily-security/restricted i386 Packages [10,8 kB]
Bağlandı  http://ppa.launchpad.net wily/main amd64 Packages                   
Alınıyor: 33 http://tr.archive.ubuntu.com wily-updates/universe Sources [12,5 kB]
Bağlandı  http://ppa.launchpad.net wily/main i386 Packages                     
Alınıyor: 34 http://security.ubuntu.com wily-security/universe i386 Packages [37,1 kB]
Alınıyor: 35 http://tr.archive.ubuntu.com wily-updates/multiverse Sources [1.913 B]
Bağlandı  http://ppa.launchpad.net wily/main Translation-en                   
Alınıyor: 36 http://tr.archive.ubuntu.com wily-updates/main amd64 Packages [118 kB]
Bağlandı  http://ppa.launchpad.net wily/main amd64 Packages                   
Alınıyor: 37 http://security.ubuntu.com wily-security/multiverse i386 Packages [6.064 B]
Bağlandı  http://ppa.launchpad.net wily/main i386 Packages                     
Bağlandı  http://ppa.launchpad.net wily/main Translation-en                   
Alınıyor: 38 http://security.ubuntu.com wily-security/main Translation-en [43,4 kB]
Alınıyor: 39 http://tr.archive.ubuntu.com wily-updates/restricted amd64 Packages [13,3 kB]
Alınıyor: 40 http://security.ubuntu.com wily-security/multiverse Translation-en [2.536 B]
Alınıyor: 41 http://security.ubuntu.com wily-security/restricted Translation-en [2.666 B]
Alınıyor: 42 http://security.ubuntu.com wily-security/universe Translation-en [24,8 kB]
Alınıyor: 43 http://tr.archive.ubuntu.com wily-updates/universe amd64 Packages [51,8 kB]
Alınıyor: 44 http://security.ubuntu.com wily-security/multiverse amd64 Packages [5.979 B]
Alınıyor: 45 http://archive.ubuntu.com precise/main Translation-tr [34,6 kB]   
Alınıyor: 46 http://archive.ubuntu.com precise/main Translation-en [893 kB]   
Alınıyor: 47 http://tr.archive.ubuntu.com wily-updates/restricted i386 Packages [13,4 kB]
Alınıyor: 48 http://tr.archive.ubuntu.com wily-updates/universe i386 Packages [49,8 kB]
Alınıyor: 49 http://tr.archive.ubuntu.com wily-updates/multiverse i386 Packages [6.064 B]
Alınıyor: 50 http://tr.archive.ubuntu.com wily-updates/main Translation-en [58,0 kB]
Alınıyor: 51 http://tr.archive.ubuntu.com wily-updates/restricted Translation-en [3.024 B]
Alınıyor: 52 http://tr.archive.ubuntu.com wily-updates/universe Translation-en [33,5 kB]
Bağlandı  http://tr.archive.ubuntu.com wily-backports/restricted Sources       
Yoksay    http://archive.ubuntu.com precise/main Translation-tr_TR             
Bağlandı  http://tr.archive.ubuntu.com wily-backports/multiverse Sources       
Bağlandı  http://tr.archive.ubuntu.com wily-backports/restricted amd64 Packages
Bağlandı  http://tr.archive.ubuntu.com wily-backports/multiverse amd64 Packages
Bağlandı  http://tr.archive.ubuntu.com wily-backports/restricted i386 Packages
Bağlandı  http://tr.archive.ubuntu.com wily-backports/multiverse i386 Packages
Bağlandı  http://tr.archive.ubuntu.com wily-backports/multiverse Translation-en
Bağlandı  http://tr.archive.ubuntu.com wily-backports/restricted Translation-en
Bağlandı  http://tr.archive.ubuntu.com wily/main Sources
Bağlandı  http://tr.archive.ubuntu.com wily/restricted Sources
Bağlandı  http://tr.archive.ubuntu.com wily/universe Sources
Bağlandı  http://tr.archive.ubuntu.com wily/multiverse Sources
Bağlandı  http://tr.archive.ubuntu.com wily/main amd64 Packages
Bağlandı  http://tr.archive.ubuntu.com wily/restricted amd64 Packages
Bağlandı  http://tr.archive.ubuntu.com wily/universe amd64 Packages
Bağlandı  http://tr.archive.ubuntu.com wily/multiverse amd64 Packages
Bağlandı  http://tr.archive.ubuntu.com wily/main i386 Packages                 
Bağlandı  http://tr.archive.ubuntu.com wily/restricted i386 Packages           
Bağlandı  http://tr.archive.ubuntu.com wily/universe i386 Packages             
Bağlandı  http://tr.archive.ubuntu.com wily/multiverse i386 Packages           
Bağlandı  http://tr.archive.ubuntu.com wily/main Translation-tr               
Bağlandı  http://tr.archive.ubuntu.com wily/main Translation-en               
Bağlandı  http://tr.archive.ubuntu.com wily/multiverse Translation-tr         
Bağlandı  http://tr.archive.ubuntu.com wily/multiverse Translation-en         
Bağlandı  http://tr.archive.ubuntu.com wily/restricted Translation-tr         
Bağlandı  http://tr.archive.ubuntu.com wily/restricted Translation-en         
Bağlandı  http://tr.archive.ubuntu.com wily/universe Translation-tr           
Bağlandı  http://tr.archive.ubuntu.com wily/universe Translation-en           
Alınıyor: 53 http://tr.archive.ubuntu.com wily-updates/multiverse amd64 Packages [5.979 B]
Alınıyor: 54 http://tr.archive.ubuntu.com wily-updates/main i386 Packages [149 kB]
Alınıyor: 55 http://tr.archive.ubuntu.com wily-updates/multiverse Translation-en [2.251 B]
Bağlandı  http://tr.archive.ubuntu.com wily-backports/main Sources             
Bağlandı  http://tr.archive.ubuntu.com wily-backports/universe Sources         
Bağlandı  http://tr.archive.ubuntu.com wily-backports/main amd64 Packages     
Bağlandı  http://tr.archive.ubuntu.com wily-backports/universe amd64 Packages 
Bağlandı  http://tr.archive.ubuntu.com wily-backports/main i386 Packages       
Bağlandı  http://tr.archive.ubuntu.com wily-backports/universe i386 Packages   
Bağlandı  http://tr.archive.ubuntu.com wily-backports/main Translation-en     
Bağlandı  http://tr.archive.ubuntu.com wily-backports/universe Translation-en 
11 dk. 14 sn.'de 4.699 kB alındı (6.966 B/s)                                   
Paket listeleri okunuyor... Bitti
osman@gokturk:~$ sudo apt-get install libqt3-mt -s
[sudo] password for osman:
Paket listeleri okunuyor... Bitti
Bağımlılık ağacı oluşturuluyor       
Durum bilgisi okunuyor... Bitti     
Aşağıdaki ek paketler de kurulacak:
  liblcms1 libmng1
Önerilen paketler:
  liblcms-utils libqt3-mt-psql libqt3-mt-mysql libqt3-mt-odbc
Aşağıdaki YENİ paketler kurulacak:
  liblcms1 libmng1 libqt3-mt
0 paket yükseltilecek, 3 yeni paket kurulacak, 0 paket kaldırılacak ve 17 paket yükseltilmeyecek.
Inst liblcms1 (1.19.dfsg-1ubuntu3 Ubuntu:12.04/precise [amd64])
Inst libmng1 (1.0.10-3 Ubuntu:12.04/precise [amd64])
Inst libqt3-mt (3:3.3.8-b-8ubuntu3 Ubuntu:12.04/precise [amd64])
Conf liblcms1 (1.19.dfsg-1ubuntu3 Ubuntu:12.04/precise [amd64])
Conf libmng1 (1.0.10-3 Ubuntu:12.04/precise [amd64])
Conf libqt3-mt (3:3.3.8-b-8ubuntu3 Ubuntu:12.04/precise [amd64])
osman@gokturk:~$

Sizce kurulumu yapayım mı ?

@MaRJiNaL
sudo su
./install.sh nin çıktısını şöyle:
osman@gokturk:~/Masaüstü$ tar xvf PCL_AVETUR.tar.gz
PCL_AVETUR/
PCL_AVETUR/Avea_Jet_Mobil_Modem.tar.gz
PCL_AVETUR/zr
PCL_AVETUR/install.sh
osman@gokturk:~/Masaüstü$ sudo su
[sudo] password for osman:
root@gokturk:/home/osman/Masaüstü# ./install.sh
bash: ./install.sh: Böyle bir dosya ya da dizin yok
root@gokturk:/home/osman/Masaüstü#

speakerXXL


Kaleihan

#20
osman@gokturk:~/Masaüstü/PCL_AVETUR$ sudo su
[sudo] password for osman:
root@gokturk:/home/osman/Masaüstü/PCL_AVETUR# ./install.sh
..................start install.................
*** Check for root...
Böyle * bir şey çıktı ve ekrana bir uyarı mesajı geldi.
Sorry,
This software will not run until you install "QT3 Runtime Library". You can refer to Operaing System installation CD or Homepage to find out the QT3 Runtime Library installation package. This installation process will not continue until you install QT3 Runtime Library first.

Yukarıda @heartsmagic demişti eksik kütüphane hatası verecek diye ama ben kodu yanlış yazdığım için verememiş. Onun iletisini daha dikkatli bi şekilde tekrar okuyayım. Daha sonra sonuçları yazarım.

EDİT: at3 paketini kurdum daha sonra bu paketler için lazım olan wvdial paketlerini de kurdum.
sudo su ./install.sh komutlarını da verdim program kuruldu. install completed!!! mesajı aldım. Ama sona yaklaşırken bayağı hata verdi.
kurulum notlarını veriyorum.
osman@gokturk:~/Masaüstü/PCL_AVETUR$ sudo su
[sudo] password for osman:
root@gokturk:/home/osman/Masaüstü/PCL_AVETUR# ./install.sh
..................start install.................
*** Check for root.../usr/lib/libqt-mt.so.3.3 /usr/lib/libqt-mt.so.3.3.8 /usr/lib/libqt-mt.so.3
check QT3 Runtime Library successfully.
check wvdial successfully.
ok...
Select the language for the installation form the choices below.
(1)Turkish
(2)English
Please input number (1 or 2):
1
./zr: error while loading shared libraries: libusb-0.1.so.4: cannot open shared object file: No such file or directory
Get resouse file successfully.
Avea_Jet_Mobil_Modem/
Avea_Jet_Mobil_Modem/driver/
Avea_Jet_Mobil_Modem/usr/
Avea_Jet_Mobil_Modem/Language/
Avea_Jet_Mobil_Modem/bin/
Avea_Jet_Mobil_Modem/res/
Avea_Jet_Mobil_Modem/Data/
Avea_Jet_Mobil_Modem/pppd/
Avea_Jet_Mobil_Modem/log/
Avea_Jet_Mobil_Modem/usr/share/
Avea_Jet_Mobil_Modem/usr/lib/
Avea_Jet_Mobil_Modem/bin/Turkish/
Avea_Jet_Mobil_Modem/bin/English/
Avea_Jet_Mobil_Modem/res/icons/
Avea_Jet_Mobil_Modem/res/phonebook/
Avea_Jet_Mobil_Modem/res/dataConnect/
Avea_Jet_Mobil_Modem/res/messageBox/
Avea_Jet_Mobil_Modem/res/pics/
Avea_Jet_Mobil_Modem/res/buttons/
Avea_Jet_Mobil_Modem/res/network/
Avea_Jet_Mobil_Modem/res/component/
Avea_Jet_Mobil_Modem/res/loginMask/
Avea_Jet_Mobil_Modem/res/call/
Avea_Jet_Mobil_Modem/res/sms/
Avea_Jet_Mobil_Modem/res/base/
Avea_Jet_Mobil_Modem/Data/help/
Avea_Jet_Mobil_Modem/Data/sound/
Avea_Jet_Mobil_Modem/Data/etc/
Avea_Jet_Mobil_Modem/usr/share/applications/
Avea_Jet_Mobil_Modem/usr/share/pixmaps/
Avea_Jet_Mobil_Modem/bin/Turkish/help/
Avea_Jet_Mobil_Modem/bin/English/help/
Avea_Jet_Mobil_Modem/Data/help/index_files/
Avea_Jet_Mobil_Modem/Data/etc/ppp/
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/
Avea_Jet_Mobil_Modem/bin/English/help/index_files/
Avea_Jet_Mobil_Modem/Data/etc/ppp/peers/
Avea_Jet_Mobil_Modem/update
Avea_Jet_Mobil_Modem/launch-gui.sh
Avea_Jet_Mobil_Modem/UpdateCfg.ini
Avea_Jet_Mobil_Modem/uninstall.sh
Avea_Jet_Mobil_Modem/Avea_Jet_Mobil_Modem
Avea_Jet_Mobil_Modem/driver/disselfirefox.pp
Avea_Jet_Mobil_Modem/driver/se
Avea_Jet_Mobil_Modem/driver/driver_install.run
Avea_Jet_Mobil_Modem/driver/nm.pp
Avea_Jet_Mobil_Modem/Language/Italian.qm
Avea_Jet_Mobil_Modem/Language/Traditional_Chinese.qm
Avea_Jet_Mobil_Modem/Language/Simplified_Chinese.qm
Avea_Jet_Mobil_Modem/Language/Spanish.qm
Avea_Jet_Mobil_Modem/Language/English.qm
Avea_Jet_Mobil_Modem/bin/aplay
Avea_Jet_Mobil_Modem/bin/Avea_Jet_Mobil_Modem
Avea_Jet_Mobil_Modem/bin/9-cdrom.rules
Avea_Jet_Mobil_Modem/res/DownColor.png
Avea_Jet_Mobil_Modem/res/startingWindow.jpg
Avea_Jet_Mobil_Modem/res/UpColor.png
Avea_Jet_Mobil_Modem/res/minimize_butt.bmp
Avea_Jet_Mobil_Modem/res/aboutWindow.png
Avea_Jet_Mobil_Modem/res/smsBar434x29mask.png
Avea_Jet_Mobil_Modem/res/close_butt.bmp
Avea_Jet_Mobil_Modem/res/aboutWindow.jpg
Avea_Jet_Mobil_Modem/res/smsBar434x29.png
Avea_Jet_Mobil_Modem/res/DataStaticSpeedImageEng.png
Avea_Jet_Mobil_Modem/res/log_butt.bmp
Avea_Jet_Mobil_Modem/res/smsBar434x29.bmp
Avea_Jet_Mobil_Modem/res/icon.jpg
Avea_Jet_Mobil_Modem/Data/common-config.xml
Avea_Jet_Mobil_Modem/Data/get_system_info.sh
Avea_Jet_Mobil_Modem/Data/defaultRecord.conf
Avea_Jet_Mobil_Modem/Data/contact.xml
Avea_Jet_Mobil_Modem/Data/launchFirefox.sh
Avea_Jet_Mobil_Modem/Data/config
Avea_Jet_Mobil_Modem/Data/sms.xml
Avea_Jet_Mobil_Modem/Data/ussdRecord.xml
Avea_Jet_Mobil_Modem/Data/autostart.sh
Avea_Jet_Mobil_Modem/Data/aplay.sh
Avea_Jet_Mobil_Modem/Data/callrecord.xml
Avea_Jet_Mobil_Modem/Data/networkrc.xml
Avea_Jet_Mobil_Modem/Data/totalRecord.conf
Avea_Jet_Mobil_Modem/Data/extendTotalRecord.conf
Avea_Jet_Mobil_Modem/Data/modem_types.xml
Avea_Jet_Mobil_Modem/Data/run_evince.sh
Avea_Jet_Mobil_Modem/Data/gedit.sh
Avea_Jet_Mobil_Modem/Data/apnmatchflag.conf
Avea_Jet_Mobil_Modem/Data/historyRecord.xml
Avea_Jet_Mobil_Modem/Data/.version.txt
Avea_Jet_Mobil_Modem/Data/version.txt
Avea_Jet_Mobil_Modem/pppd/ip-down.local
Avea_Jet_Mobil_Modem/pppd/get_route_info
Avea_Jet_Mobil_Modem/pppd/ip-up.local
Avea_Jet_Mobil_Modem/usr/lib/libtinyxml.so
Avea_Jet_Mobil_Modem/usr/lib/libagent.so
Avea_Jet_Mobil_Modem/usr/lib/libmd5.so
Avea_Jet_Mobil_Modem/bin/Turkish/ondatim_lan.qm
Avea_Jet_Mobil_Modem/bin/Turkish/ondatim_lan.ts
Avea_Jet_Mobil_Modem/res/icons/set2.png
Avea_Jet_Mobil_Modem/res/icons/help2.png
Avea_Jet_Mobil_Modem/res/icons/set3.png
Avea_Jet_Mobil_Modem/res/icons/set1.png
Avea_Jet_Mobil_Modem/res/icons/sms3.png
Avea_Jet_Mobil_Modem/res/icons/stk2.png
Avea_Jet_Mobil_Modem/res/icons/phonebook1.png
Avea_Jet_Mobil_Modem/res/icons/phonebook2.png
Avea_Jet_Mobil_Modem/res/icons/phonebook0.png
Avea_Jet_Mobil_Modem/res/icons/AliceMobile2.png
Avea_Jet_Mobil_Modem/res/icons/AliceMobile1.png
Avea_Jet_Mobil_Modem/res/icons/phonebook3.png
Avea_Jet_Mobil_Modem/res/icons/homeicon1.png
Avea_Jet_Mobil_Modem/res/icons/sms2.png
Avea_Jet_Mobil_Modem/res/icons/set0.png
Avea_Jet_Mobil_Modem/res/icons/stk3.png
Avea_Jet_Mobil_Modem/res/icons/mobile_icon.bmp
Avea_Jet_Mobil_Modem/res/icons/help0.png
Avea_Jet_Mobil_Modem/res/icons/homeicon0.png
Avea_Jet_Mobil_Modem/res/icons/AliceMobile0.png
Avea_Jet_Mobil_Modem/res/icons/sms1.png
Avea_Jet_Mobil_Modem/res/icons/help1.png
Avea_Jet_Mobil_Modem/res/icons/help3.png
Avea_Jet_Mobil_Modem/res/icons/sms0.png
Avea_Jet_Mobil_Modem/res/icons/stk1.png
Avea_Jet_Mobil_Modem/res/icons/homeicon2.png
Avea_Jet_Mobil_Modem/res/icons/homeicon3.png
Avea_Jet_Mobil_Modem/res/icons/AliceMobile3.png
Avea_Jet_Mobil_Modem/res/icons/stk0.png
Avea_Jet_Mobil_Modem/res/phonebook/ILIcon2.png
Avea_Jet_Mobil_Modem/res/phonebook/ILIcon3.png
Avea_Jet_Mobil_Modem/res/phonebook/phonebookBarBackGround380x30.png1
Avea_Jet_Mobil_Modem/res/phonebook/centralBG626x317.jpg
Avea_Jet_Mobil_Modem/res/phonebook/PhoneBook11 copy.png
Avea_Jet_Mobil_Modem/res/phonebook/ILIcon0.png
Avea_Jet_Mobil_Modem/res/phonebook/phonebookBarBackGround380x30.png
Avea_Jet_Mobil_Modem/res/phonebook/ILIcon4.png
Avea_Jet_Mobil_Modem/res/phonebook/phonebookBar425x30.png
Avea_Jet_Mobil_Modem/res/dataConnect/bar608x29copy.png
Avea_Jet_Mobil_Modem/res/dataConnect/connecting.gif
Avea_Jet_Mobil_Modem/res/dataConnect/connected.gif
Avea_Jet_Mobil_Modem/res/messageBox/part1MessageBOX234x121.bmp
Avea_Jet_Mobil_Modem/res/messageBox/msg_warning.png
Avea_Jet_Mobil_Modem/res/messageBox/NewMsgBackImage.bmp
Avea_Jet_Mobil_Modem/res/messageBox/part5MessageBox.jpg
Avea_Jet_Mobil_Modem/res/messageBox/messagebox_btn45x19.bmp
Avea_Jet_Mobil_Modem/res/messageBox/NewMsgSMSButton.PNG
Avea_Jet_Mobil_Modem/res/messageBox/sms_animation.gif
Avea_Jet_Mobil_Modem/res/messageBox/connstatisdlgbar.png
Avea_Jet_Mobil_Modem/res/messageBox/barMessageBOX238x23.bmp
Avea_Jet_Mobil_Modem/res/messageBox/MsgBoxImage.bmp
Avea_Jet_Mobil_Modem/res/messageBox/msg_information.png
Avea_Jet_Mobil_Modem/res/messageBox/close.bmp
Avea_Jet_Mobil_Modem/res/messageBox/msg_query.png
Avea_Jet_Mobil_Modem/res/messageBox/progress.gif
Avea_Jet_Mobil_Modem/res/messageBox/connstatisdlgbg.png
Avea_Jet_Mobil_Modem/res/messageBox/MsgBoxBack.BMP
Avea_Jet_Mobil_Modem/res/messageBox/contact_animation.gif
Avea_Jet_Mobil_Modem/res/pics/ILIcon2.png
Avea_Jet_Mobil_Modem/res/pics/ILIcon3.png
Avea_Jet_Mobil_Modem/res/pics/Button1.png
Avea_Jet_Mobil_Modem/res/pics/test.png
Avea_Jet_Mobil_Modem/res/pics/Image6.png
Avea_Jet_Mobil_Modem/res/pics/ILIcon0.png
Avea_Jet_Mobil_Modem/res/pics/Image3.png
Avea_Jet_Mobil_Modem/res/pics/ILIcon4.png
Avea_Jet_Mobil_Modem/res/pics/Image2.png
Avea_Jet_Mobil_Modem/res/buttons/buttons0.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons11mask.png
Avea_Jet_Mobil_Modem/res/buttons/buttons3.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons7mask.png
Avea_Jet_Mobil_Modem/res/buttons/buttons159x37.bmp
Avea_Jet_Mobil_Modem/res/buttons/button_apn_valid.png
Avea_Jet_Mobil_Modem/res/buttons/buttons11.png
Avea_Jet_Mobil_Modem/res/buttons/buttons8.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons4.MID.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons12.png
Avea_Jet_Mobil_Modem/res/buttons/buttons10.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons12.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons2.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons14.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons6.MID.png
Avea_Jet_Mobil_Modem/res/buttons/buttons8.png
Avea_Jet_Mobil_Modem/res/buttons/buttons6.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons12mask.png
Avea_Jet_Mobil_Modem/res/buttons/buttons3.MID.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons10mask.png
Avea_Jet_Mobil_Modem/res/buttons/buttons5.MID.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons9mask.png
Avea_Jet_Mobil_Modem/res/buttons/buttons57x23.bmp
Avea_Jet_Mobil_Modem/res/buttons/buttons4.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons6.png
Avea_Jet_Mobil_Modem/res/buttons/buttons61x21.bmp
Avea_Jet_Mobil_Modem/res/buttons/buttons6.MID.jpg
Avea_Jet_Mobil_Modem/res/buttons/loginMaskButt52x22.bmp
Avea_Jet_Mobil_Modem/res/buttons/buttons50x23.bmp
Avea_Jet_Mobil_Modem/res/buttons/buttons7.png
Avea_Jet_Mobil_Modem/res/buttons/buttons7copy.png
Avea_Jet_Mobil_Modem/res/buttons/buttons14.png
Avea_Jet_Mobil_Modem/res/buttons/button_apn_invalid.png
Avea_Jet_Mobil_Modem/res/buttons/buttons9.png
Avea_Jet_Mobil_Modem/res/buttons/buttons5.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons1.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons7.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons10.png
Avea_Jet_Mobil_Modem/res/buttons/buttons9.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons13.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons11.jpg
Avea_Jet_Mobil_Modem/res/buttons/buttons7mask.MID.png
Avea_Jet_Mobil_Modem/res/buttons/buttons7.MID.png
Avea_Jet_Mobil_Modem/res/buttons/buttons13.png
Avea_Jet_Mobil_Modem/res/network/search.gif
Avea_Jet_Mobil_Modem/res/network/StateImageList2.png
Avea_Jet_Mobil_Modem/res/network/FindNetImage1.jpg
Avea_Jet_Mobil_Modem/res/network/StateImageList3.png
Avea_Jet_Mobil_Modem/res/network/StateImageList0.png
Avea_Jet_Mobil_Modem/res/network/StateImageList1.png
Avea_Jet_Mobil_Modem/res/network/select.gif
Avea_Jet_Mobil_Modem/res/component/DataAniImageList0.png
Avea_Jet_Mobil_Modem/res/component/ImageList_RSSILevel4.png
Avea_Jet_Mobil_Modem/res/component/DataAniImageList2.png
Avea_Jet_Mobil_Modem/res/component/ImageList_IncomingCall0.png
Avea_Jet_Mobil_Modem/res/component/ImageList_IncomingCall1.png
Avea_Jet_Mobil_Modem/res/component/datastate1.png
Avea_Jet_Mobil_Modem/res/component/DataStateImageList0.png
Avea_Jet_Mobil_Modem/res/component/ImageList_MemFull1.png
Avea_Jet_Mobil_Modem/res/component/ImageList_TrayMain9 .png
Avea_Jet_Mobil_Modem/res/component/Call_IMbutton.png
Avea_Jet_Mobil_Modem/res/component/data1.png
Avea_Jet_Mobil_Modem/res/component/ImageList_power4.png
Avea_Jet_Mobil_Modem/res/component/ILIcon2.png
Avea_Jet_Mobil_Modem/res/component/ImageList_Internet1.png
Avea_Jet_Mobil_Modem/res/component/ImageList_NewSms0.png
Avea_Jet_Mobil_Modem/res/component/ILIcon1 .png
Avea_Jet_Mobil_Modem/res/component/Reject_IMbutton.png
Avea_Jet_Mobil_Modem/res/component/ImageList_RSSILevel5.png
Avea_Jet_Mobil_Modem/res/component/ILIcon3.png
Avea_Jet_Mobil_Modem/res/component/SMS_IMbutton.png
Avea_Jet_Mobil_Modem/res/component/ImageList_TrayMain0.png
Avea_Jet_Mobil_Modem/res/component/ImImage_Close.png
Avea_Jet_Mobil_Modem/res/component/ImageList_Internet3.png
Avea_Jet_Mobil_Modem/res/component/StateImageList2.png
Avea_Jet_Mobil_Modem/res/component/modem_on.png
Avea_Jet_Mobil_Modem/res/component/DataStateImage.png
Avea_Jet_Mobil_Modem/res/component/ImageList_TrayMain4.png
Avea_Jet_Mobil_Modem/res/component/DataStateImageList1.png
Avea_Jet_Mobil_Modem/res/component/ImageList_TrayMain8.png
Avea_Jet_Mobil_Modem/res/component/ImageList_IncomingCall2.png
Avea_Jet_Mobil_Modem/res/component/ImageList_power2.png
Avea_Jet_Mobil_Modem/res/component/ImageList_TrayMain5.png
Avea_Jet_Mobil_Modem/res/component/ImageList_Internet2.png
Avea_Jet_Mobil_Modem/res/component/StateImageList3.png
Avea_Jet_Mobil_Modem/res/component/StateImageList0.png
Avea_Jet_Mobil_Modem/res/component/ILIcon6.png
Avea_Jet_Mobil_Modem/res/component/ImImage_IncomingCall.png
Avea_Jet_Mobil_Modem/res/component/ImageList_NewSms3.png
Avea_Jet_Mobil_Modem/res/component/ImageList_NewSms1.png
Avea_Jet_Mobil_Modem/res/component/ImageList_Internet0.png
Avea_Jet_Mobil_Modem/res/component/ImageList_IncomingCall3.png
Avea_Jet_Mobil_Modem/res/component/ImageList_NewSms.gif
Avea_Jet_Mobil_Modem/res/component/iconBackground.jpg
Avea_Jet_Mobil_Modem/res/component/ImageList_TrayMain2.png
Avea_Jet_Mobil_Modem/res/component/ImageList_power1.png
Avea_Jet_Mobil_Modem/res/component/StateImageList1.png
Avea_Jet_Mobil_Modem/res/component/data_disconnect.png
Avea_Jet_Mobil_Modem/res/component/datastate0.png
Avea_Jet_Mobil_Modem/res/component/ImageList_RSSILevel3.png
Avea_Jet_Mobil_Modem/res/component/uninsert.jpg
Avea_Jet_Mobil_Modem/res/component/ImageList_MemFull0.png
Avea_Jet_Mobil_Modem/res/component/modem_off.png
Avea_Jet_Mobil_Modem/res/component/ImageList_RSSILevel0.png
Avea_Jet_Mobil_Modem/res/component/sim_off.png
Avea_Jet_Mobil_Modem/res/component/ImageList_MemFull2.png
Avea_Jet_Mobil_Modem/res/component/nosimcard.jpg
Avea_Jet_Mobil_Modem/res/component/ILIcon5.png
Avea_Jet_Mobil_Modem/res/component/ImageList_NewSms2.png
Avea_Jet_Mobil_Modem/res/component/data0.png
Avea_Jet_Mobil_Modem/res/component/ImageList_TrayMain3.png
Avea_Jet_Mobil_Modem/res/component/ImImage_NewSms.png
Avea_Jet_Mobil_Modem/res/component/ILIcon0.png
Avea_Jet_Mobil_Modem/res/component/ILIcon4.png
Avea_Jet_Mobil_Modem/res/component/ImageList_TrayMain6.png
Avea_Jet_Mobil_Modem/res/component/DataAniImageList4.png
Avea_Jet_Mobil_Modem/res/component/ImageList_RSSILevel2.png
Avea_Jet_Mobil_Modem/res/component/ImageList_power3.png
Avea_Jet_Mobil_Modem/res/component/DataAniImageList1.png
Avea_Jet_Mobil_Modem/res/component/ImageList_power0.png
Avea_Jet_Mobil_Modem/res/component/sim_cancel.png
Avea_Jet_Mobil_Modem/res/component/ImageList_RSSILevel1.png
Avea_Jet_Mobil_Modem/res/component/data2.png
Avea_Jet_Mobil_Modem/res/component/DataAniImageList3.png
Avea_Jet_Mobil_Modem/res/component/sim_on.png
Avea_Jet_Mobil_Modem/res/component/ImageList_TrayMain1.png
Avea_Jet_Mobil_Modem/res/component/ImageList_TrayMain7.png
Avea_Jet_Mobil_Modem/res/loginMask/loginMask1.jpg
Avea_Jet_Mobil_Modem/res/loginMask/loginMaskButt52x22.bmp
Avea_Jet_Mobil_Modem/res/loginMask/loginMaskBar259x25.jpg
Avea_Jet_Mobil_Modem/res/loginMask/loginMaskcentre259x25.jpg
Avea_Jet_Mobil_Modem/res/loginMask/close.bmp
Avea_Jet_Mobil_Modem/res/loginMask/loginMask0.jpg
Avea_Jet_Mobil_Modem/res/loginMask/TopBar.jpg
Avea_Jet_Mobil_Modem/res/loginMask/loginMask2.jpg
Avea_Jet_Mobil_Modem/res/call/Dial_cancle.PNG
Avea_Jet_Mobil_Modem/res/call/dial_connecting.png
Avea_Jet_Mobil_Modem/res/call/Dial_6.PNG
Avea_Jet_Mobil_Modem/res/call/Dial_0.PNG
Avea_Jet_Mobil_Modem/res/call/volume.png
Avea_Jet_Mobil_Modem/res/call/Dial_star.PNG
Avea_Jet_Mobil_Modem/res/call/Dial_7.PNG
Avea_Jet_Mobil_Modem/res/call/dial_down.png
Avea_Jet_Mobil_Modem/res/call/Dial_3.PNG
Avea_Jet_Mobil_Modem/res/call/Dial_2.PNG
Avea_Jet_Mobil_Modem/res/call/Dial_5.PNG
Avea_Jet_Mobil_Modem/res/call/dial.png
Avea_Jet_Mobil_Modem/res/call/Dial_1.PNG
Avea_Jet_Mobil_Modem/res/call/misscall.png
Avea_Jet_Mobil_Modem/res/call/hangup.png
Avea_Jet_Mobil_Modem/res/call/Dial_9.PNG
Avea_Jet_Mobil_Modem/res/call/Dial_#.PNG
Avea_Jet_Mobil_Modem/res/call/hangup_down.png
Avea_Jet_Mobil_Modem/res/call/micpic.png
Avea_Jet_Mobil_Modem/res/call/Dial_8.PNG
Avea_Jet_Mobil_Modem/res/call/Dial_4.PNG
Avea_Jet_Mobil_Modem/res/sms/BtRtoL.png
Avea_Jet_Mobil_Modem/res/sms/search.png
Avea_Jet_Mobil_Modem/res/sms/toplabel.png
Avea_Jet_Mobil_Modem/res/sms/button2.png
Avea_Jet_Mobil_Modem/res/sms/BtLtoR.png
Avea_Jet_Mobil_Modem/res/sms/Contenbak.png
Avea_Jet_Mobil_Modem/res/base/top_copy.png
Avea_Jet_Mobil_Modem/res/base/widgetstack.jpg
Avea_Jet_Mobil_Modem/res/base/baseBG.jpg
Avea_Jet_Mobil_Modem/res/base/bottomBar.gif
Avea_Jet_Mobil_Modem/res/base/centre_copy.png
Avea_Jet_Mobil_Modem/res/base/pixlabel.jpg
Avea_Jet_Mobil_Modem/res/base/CentreBG.jpg
Avea_Jet_Mobil_Modem/res/base/centralBG626x317.jpg
Avea_Jet_Mobil_Modem/res/base/sms_widgetstack.jpg
Avea_Jet_Mobil_Modem/res/base/connectframe.JPG
Avea_Jet_Mobil_Modem/res/base/configBackground.jpg
Avea_Jet_Mobil_Modem/res/base/bottom_copy.png
Avea_Jet_Mobil_Modem/Data/help/help.html
Avea_Jet_Mobil_Modem/Data/sound/sms.wav
Avea_Jet_Mobil_Modem/Data/sound/connect.wav
Avea_Jet_Mobil_Modem/Data/sound/call.wav
Avea_Jet_Mobil_Modem/Data/sound/disconnect.wav
Avea_Jet_Mobil_Modem/Data/etc/wvdial.conf
Avea_Jet_Mobil_Modem/Data/etc/resolv.conf
Avea_Jet_Mobil_Modem/usr/share/applications/Avea_Jet_Mobil_Modem.desktop
Avea_Jet_Mobil_Modem/usr/share/pixmaps/Avea_Jet_Mobil_Modem.png
Avea_Jet_Mobil_Modem/bin/Turkish/help/help.html
Avea_Jet_Mobil_Modem/bin/English/help/help.html
Avea_Jet_Mobil_Modem/Data/help/index_files/a_020_help
Avea_Jet_Mobil_Modem/Data/help/index_files/a_017_help
Avea_Jet_Mobil_Modem/Data/help/index_files/modem_on.png
Avea_Jet_Mobil_Modem/Data/help/index_files/phonebook0.png
Avea_Jet_Mobil_Modem/Data/help/index_files/a_007_help
Avea_Jet_Mobil_Modem/Data/help/index_files/a_004_help
Avea_Jet_Mobil_Modem/Data/help/index_files/ImageList_NewSms1.png
Avea_Jet_Mobil_Modem/Data/help/index_files/data_disconnect.png
Avea_Jet_Mobil_Modem/Data/help/index_files/set0.png
Avea_Jet_Mobil_Modem/Data/help/index_files/modem_off.png
Avea_Jet_Mobil_Modem/Data/help/index_files/sim_off.png
Avea_Jet_Mobil_Modem/Data/help/index_files/help0.png
Avea_Jet_Mobil_Modem/Data/help/index_files/homeicon0.png
Avea_Jet_Mobil_Modem/Data/help/index_files/data0.png
Avea_Jet_Mobil_Modem/Data/help/index_files/AliceMobile0.png
Avea_Jet_Mobil_Modem/Data/help/index_files/a_024_help
Avea_Jet_Mobil_Modem/Data/help/index_files/sms0.png
Avea_Jet_Mobil_Modem/Data/help/index_files/sim_on.png
Avea_Jet_Mobil_Modem/Data/help/index_files/stk0.png
Avea_Jet_Mobil_Modem/Data/etc/ppp/options
Avea_Jet_Mobil_Modem/Data/etc/ppp/resolv.conf
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/a_020_help
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/a_017_help
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/modem_on.png
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/phonebook0.png
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/a_007_help
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/a_004_help
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/ImageList_NewSms1.png
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/data_disconnect.png
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/set0.png
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/modem_off.png
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/sim_off.png
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/help0.png
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/homeicon0.png
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/data0.png
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/AliceMobile0.png
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/a_024_help
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/sms0.png
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/icon.jpg
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/sim_on.png
Avea_Jet_Mobil_Modem/bin/Turkish/help/index_files/stk0.png
Avea_Jet_Mobil_Modem/bin/English/help/index_files/a_020_help
Avea_Jet_Mobil_Modem/bin/English/help/index_files/a_017_help
Avea_Jet_Mobil_Modem/bin/English/help/index_files/modem_on.png
Avea_Jet_Mobil_Modem/bin/English/help/index_files/phonebook0.png
Avea_Jet_Mobil_Modem/bin/English/help/index_files/a_007_help
Avea_Jet_Mobil_Modem/bin/English/help/index_files/a_004_help
Avea_Jet_Mobil_Modem/bin/English/help/index_files/ImageList_NewSms1.png
Avea_Jet_Mobil_Modem/bin/English/help/index_files/data_disconnect.png
Avea_Jet_Mobil_Modem/bin/English/help/index_files/set0.png
Avea_Jet_Mobil_Modem/bin/English/help/index_files/modem_off.png
Avea_Jet_Mobil_Modem/bin/English/help/index_files/sim_off.png
Avea_Jet_Mobil_Modem/bin/English/help/index_files/help0.png
Avea_Jet_Mobil_Modem/bin/English/help/index_files/homeicon0.png
Avea_Jet_Mobil_Modem/bin/English/help/index_files/data0.png
Avea_Jet_Mobil_Modem/bin/English/help/index_files/AliceMobile0.png
Avea_Jet_Mobil_Modem/bin/English/help/index_files/a_024_help
Avea_Jet_Mobil_Modem/bin/English/help/index_files/sms0.png
Avea_Jet_Mobil_Modem/bin/English/help/index_files/icon.jpg
Avea_Jet_Mobil_Modem/bin/English/help/index_files/sim_on.png
Avea_Jet_Mobil_Modem/bin/English/help/index_files/stk0.png
Avea_Jet_Mobil_Modem/Data/etc/ppp/peers/wvdial
ls: /usr/share/applications/desktop.*.cache'e erişilemedi: Böyle bir dosya ya da dizin yok
udevadm is exist!
******Begin to /opt/Avea_Jet_Mobil_Modem/driver
this is linux driver installtion
make -C /lib/modules/4.2.0-25-generic/build M=/tmp/ONDA_driver_install_V3.42 modules
make[1]: Entering directory '/usr/src/linux-headers-4.2.0-25-generic'
  CC [M]  /tmp/ONDA_driver_install_V3.42/onda.o
/tmp/ONDA_driver_install_V3.42/onda.c:21354:16: error: 'usb_serial_probe' undeclared here (not in a function)
  .probe      = usb_serial_probe,
                ^
/tmp/ONDA_driver_install_V3.42/onda.c:21355:16: error: 'usb_serial_disconnect' undeclared here (not in a function)
  .disconnect = usb_serial_disconnect,
                ^
/tmp/ONDA_driver_install_V3.42/onda.c: In function 'onda_init':
/tmp/ONDA_driver_install_V3.42/onda.c:21433:11: error: implicit declaration of function 'usb_serial_register' [-Werror=implicit-function-declaration]
  retval = usb_serial_register(&onda_1port_device);
           ^
/tmp/ONDA_driver_install_V3.42/onda.c:21446:2: error: implicit declaration of function 'usb_serial_deregister' [-Werror=implicit-function-declaration]
  usb_serial_deregister(&onda_1port_device);
  ^
/tmp/ONDA_driver_install_V3.42/onda.c: In function 'onda_instat_callback':
/tmp/ONDA_driver_install_V3.42/onda.c:21510:2: error: implicit declaration of function 'dbg' [-Werror=implicit-function-declaration]
  dbg("%s", __func__);
  ^
/tmp/ONDA_driver_install_V3.42/onda.c:21548:3: error: called object 'err' is not a function or function pointer
   err("%s: error %d", __func__, status);
   ^
/tmp/ONDA_driver_install_V3.42/onda.c:21505:6: note: declared here
  int err;
      ^
In file included from include/linux/module.h:18:0,
                 from /tmp/ONDA_driver_install_V3.42/onda.c:20880:
/tmp/ONDA_driver_install_V3.42/onda.c: In function '__check_debug':
include/linux/moduleparam.h:344:67: warning: return from incompatible pointer type [-Wincompatible-pointer-types]
  static inline type __always_unused *__check_##name(void) { return(p); }
                                                                   ^
include/linux/moduleparam.h:395:35: note: in expansion of macro '__param_check'
#define param_check_bool(name, p) __param_check(name, p, bool)
                                   ^
include/linux/moduleparam.h:146:2: note: in expansion of macro 'param_check_bool'
  param_check_##type(name, &(value));       \
  ^
include/linux/moduleparam.h:126:2: note: in expansion of macro 'module_param_named'
  module_param_named(name, name, type, perm)
  ^
/tmp/ONDA_driver_install_V3.42/onda.c:21598:1: note: in expansion of macro 'module_param'
module_param(debug, bool, S_IRUGO | S_IWUSR);
^
cc1: some warnings being treated as errors
scripts/Makefile.build:264: recipe for target '/tmp/ONDA_driver_install_V3.42/onda.o' failed
make[2]: *** [/tmp/ONDA_driver_install_V3.42/onda.o] Error 1
Makefile:1398: recipe for target '_module_/tmp/ONDA_driver_install_V3.42' failed
make[1]: *** [_module_/tmp/ONDA_driver_install_V3.42] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-4.2.0-25-generic'
Makefile:16: recipe for target 'modules' failed
make: *** [modules] Error 2
this  is customized kernel ,kernel version is: 4.2.0-25-generic
enter customize_driver_install function
cp: `onda.ko' durumlanamadı: Böyle bir dosya ya da dizin yok
modprobe: FATAL: Module onda not found.
disselfirefox.pp driver_install.run nm.pp se End to /opt/Avea_Jet_Mobil_Modem/driver
install completed!!!
....After setup, you will find the Avea Jet Mobil Modem in "Applications->Internet->Avea Jet Mobil Modem". Click the Avea Jet Mobil Modem and the application will run
press any key to continue....ş./Avea_Jet_Mobil_Modem: error while loading shared libraries: libusb-0.1.so.4: cannot open shared object file: No such file or directory
root@gokturk:/home/osman/Masaüstü/PCL_AVETUR#


Sizce yanlış giden şey ne?


speakerXXL

Aşağıdaki komutu uçbirimde çalıştırınız ve sonra install.sh dosyası ile yeniden kurulum deneyiniz.

sudo apt-get install libqt3-mt -y

Kaleihan

Alıntı yapılan: speakerXXL - 27 Ocak 2016 - 20:48:16
Aşağıdaki komutu uçbirimde çalıştırınız ve sonra install.sh dosyası ile yeniden kurulum deneyiniz.

sudo apt-get install libqt3-mt -y
qt3 paketini kurdum yukarıdaki cevabıma kurulum sonucunu yazdım. İnceleyebilirsiniz.

speakerXXL

Güncel çıktıları son mesajnıza eklerseniz, takibi dahakolay olabilir.

Aşağıdaki komut build-essential ve linux-header paketini yükleyip, sonrasında yeniden install.sh ile kurulum deneyebilirsiniz.

sudo apt-get install build-essential linux-headers-$(uname -r)

Kaleihan

@speakerXXL program kuruldu. Bu sefer uygulamalar arasında simgesi de çıktı ama tıklıyorum açılmıyor :D Yardımcı olan herkese teşekkürler. Gittim ttnetle anlaştım avea jetten kurtuluyorum. Artık uğraşmaya değmez. Konuyu çözüldü olarak işaretliyorum.