sudo sh genymotion-2.0.1_x86.bin
genymotion-2.0.1_x86.bin: 100: genymotion-2.0.1_x86.bin: [[: not found
genymotion-2.0.1_x86.bin: 106: genymotion-2.0.1_x86.bin: [[: not found
-e
-e Aborting.

我在版本1上有这个问题。*昨天是2.0,今天是2.0.1,Lubuntu 13.10 x32。我已经写信给开发人员了,但如果在谷歌我找不到任何关于这个问题的东西-它只影响我?也许我这边有什么不好的地方?
如果我在Sublime Text 2中打开这个.bin文件,我就有这个代码(从第97行到第111行):
#------------------------------------------------------------------------------
_ask_user() {
    local ans=a
    while [[ ! "$ans" =~ ^[YyNn]$ ]]
    do
        echo -ne "$1"
        read ans
    done

    [[ "$ans" =~ ^[Yy]$ ]] && return 0

    # if $ans == No
    return 1
}
#------------------------------------------------------------------------------

最佳答案

你应该逃跑

sudo bash genymotion-2.0.1_x86.bin


chmod +x genymotion-2.0.1_x86.bin && sudo ./genymotion-2.0.1_x86.bin

安德烈。

关于linux - 无法在Ubuntu下安装Genymotion 2.0.1:[[:找不到,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20017913/

10-12 02:58