日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

【docker】三、Permission denied与sudo命令

發(fā)布時間:2024/1/8 编程问答 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【docker】三、Permission denied与sudo命令 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

Table of Contents

Permission denied:

bash: sudo: command not found

No such file or directory

在64位的Linux上運行32位程序的時候會出現(xiàn)這種情況:

不要瞎搗鼓,32位就去用32位的鏡像!


Permission denied:

執(zhí)行:sudo chmod -R 777 myResources

??????????? sudo chmod -R 777 拒絕的文件名字

bash: sudo: command not found

執(zhí)行:

apt-get update

apt-get install sudo

No such file or directory

在64位的Linux上運行32位程序的時候會出現(xiàn)這種情況:

執(zhí)行bin文件時提示:No such file or directory?? (https://blog.csdn.net/qq_33438733/article/details/79672774)

解決方法:

sudo apt-get install ia32-libs

?錯誤提示:

Package ia32-libs is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
? lib32ncurses5 lib32z1

E: Package 'ia32-libs' has no installation candidate


To run 32bit executable file in a 64 bit multi-arch Ubuntu system, you have to add i386 architecture and install libc6:i386,libncurses5:i386,libstdc++6:i386 these three library packages.

?
  • sudo dpkg --add-architecture i386

  • sudo apt-get update

  • sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386

  • sudo ./adb

  • ?The following packages have unmet dependencies:
    ?libc6:i386 : Depends: libgcc1:i386 but it is not going to be installed
    ?libncurses5:i386 : Depends: libtinfo5:i386 (= 6.0+20160213-1ubuntu1) but it is not going to be installedThe following packages have unmet dependencies:
    ?libc6:i386 : Depends: libgcc1:i386 but it is not going to be installed
    ?libncurses5:i386 : Depends: libtinfo5:i386 (= 6.0+20160213-1ubuntu1) but it is not going to be installed

    https://blog.csdn.net/duanlove/article/details/54666441

    ?

    以上并沒有解決我的問題

    總結(jié):

    不要瞎搗鼓,32位就去用32位的鏡像!

    ?

    總結(jié)

    以上是生活随笔為你收集整理的【docker】三、Permission denied与sudo命令的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。