<output id="qn6qe"></output>

    1. <output id="qn6qe"><tt id="qn6qe"></tt></output>
    2. <strike id="qn6qe"></strike>

      亚洲 日本 欧洲 欧美 视频,日韩中文字幕有码av,一本一道av中文字幕无码,国产线播放免费人成视频播放,人妻少妇偷人无码视频,日夜啪啪一区二区三区,国产尤物精品自在拍视频首页,久热这里只有精品12

      [新坑][deepin][linux][Remmina]無法鏈接部分RDP服務(wù)Cannot open libmwv206dec.so, libmwv206dec.so: 無法打開共享對象文件: 沒有那個文件或目錄

      [新坑][deepin][linux][Remmina]無法鏈接部分RDP服務(wù)Cannot open libmwv206dec.so, libmwv206dec.so: 無法打開共享對象文件: 沒有那個文件或目錄

      [17:39:57:859] [24500:24541] [INFO][com.freerdp.client.common.cmdline] - loading channelEx cliprdr
      [17:39:57:859] [24500:24541] [INFO][com.freerdp.client.common.cmdline] - loading channelEx drdynvc
      Cannot open libmwv206dec.so, libmwv206dec.so: 無法打開共享對象文件: 沒有那個文件或目錄

      就是最近升級后,不能使用Remmina。這個libmwv206dec.so是什么鬼,全網(wǎng)都找不到。

       

       

       

       

       

       

       

       

      重新安裝deepin v20之前的版本  deepin-desktop-community-1002-amd64.iso 一樣無法使用。審定表示懷疑是deepin源的問題。

      總之是各種重裝。

      上最終處理方法。

      sudo apt update
      sudo apt upgrade
      sudo apt autoremote remmina*
      sudo apt autoremote freerdp×
      sudo apt autoremote
      

       鑒于使用的是deepin

      按照 Remmina wiki 進(jìn)行源碼安裝

      https://gitlab.com/Remmina/Remmina/-/wikis/Compilation/Compile-on-Ubuntu-20.04

      不過菜單里面木有圖標(biāo)哈,從終端里面輸入remmina 運行后,在任務(wù)欄右鍵駐留一下就OK了

       

       夠全面的

       

       

      下面是官方文檔

      ===============================

      Compile on Ubuntu 20.04 

      Quick and dirty guide for compiling remmina on ubuntu 20.04

      These are instructions for people or software developers who want to contribute to the latest version of Remmina on Ubuntu 20.04.

      If you are an end user and you want to install the latest version of remmina, please use the "Remmina Team Ubuntu PPA - next branch", as explained on the homepage of the wiki.

      By following these instructions, you will get Remmina and FreeRDP compiled under the /opt/remmina_devel/ subdir, so they will not mess up your system too much. This is ideal for testing remmina.

      You will also find the uninstall instructions at the bottom of this page.

      1. Install all packages required to build freerdp and remmina:

      sudo apt install build-essential git-core cmake libssl-dev libx11-dev libxext-dev libxinerama-dev \
        libxcursor-dev libxdamage-dev libxv-dev libxkbfile-dev libasound2-dev libcups2-dev libxml2 libxml2-dev \
        libxrandr-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
        libxi-dev libavutil-dev \
        libavcodec-dev libxtst-dev libgtk-3-dev libgcrypt20-dev libssh-dev libpulse-dev \
        libvte-2.91-dev libxkbfile-dev libtelepathy-glib-dev libjpeg-dev \
        libgnutls28-dev libavahi-ui-gtk3-dev libvncserver-dev \
        libappindicator3-dev intltool libsecret-1-dev libwebkit2gtk-4.0-dev libsystemd-dev \
        libsoup2.4-dev libjson-glib-dev libavresample-dev libsodium-dev \
        libusb-1.0-0-dev

      2. Remove freerdp-x11 package and all packages containing the string remmina in the package name.

      sudo apt purge "?name(^remmina.*)" "?name(^libfreerdp.*)" "?name(^freerdp.*)" "?name(^libwinpr.*)"

      3. Create a new directory for development in your home directory, and cd into it

      mkdir ~/remmina_devel
      cd ~/remmina_devel

      4. Download the latest source code of FreeRDP from its master branch

      git clone --branch stable-2.0 https://github.com/FreeRDP/FreeRDP.git
      cd FreeRDP

      5. Configure FreeRDP for compilation (don't forget to include -DWITH_PULSE=ON)

      cmake -DCMAKE_BUILD_TYPE=Debug -DWITH_SSE2=ON -DWITH_CUPS=on -DWITH_PULSE=on -DCMAKE_INSTALL_PREFIX:PATH=/opt/remmina_devel/freerdp .

      Please note that the above line will make FreeRDP install in /opt/remmina_devel/freerdp

      6. Compile FreeRDP and install

      make && sudo make install

      7. Make your system dynamic loader aware of the new libraries you installed. For Ubuntu x64:

      echo /opt/remmina_devel/freerdp/lib | sudo tee /etc/ld.so.conf.d/freerdp_devel.conf > /dev/null
      sudo ldconfig

      8. Create a symbolik link to the executable in /usr/local/bin

      sudo ln -s /opt/remmina_devel/freerdp/bin/xfreerdp /usr/local/bin/

      9. Test the new freerdp by connecting to a RDP host

      xfreerdp +clipboard /sound:rate:44100,channel:2 /v:hostname /u:username

      10. Now clone remmina repository to your devel dir:

      cd ~/remmina_devel
      git clone https://gitlab.com/Remmina/Remmina.git

      11. Configure Remmina for compilation

      cd Remmina
      cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX:PATH=/opt/remmina_devel/remmina -DCMAKE_PREFIX_PATH=/opt/remmina_devel/freerdp --build=build .

      12. Compile remmina and install it

      make && sudo make install

      13. Create a symbolik link to the the executable

      sudo ln -s /opt/remmina_devel/remmina/bin/remmina /usr/local/bin/

      14. Run remmina

      remmina

      Please note that icons and launcher files are not installed, so don't search for remmina using Unity Dash.

      Uninstall everything

      1. Remove the devel directory

      rm -rf ~/remmina_devel/

      2. Remove the binary directory

      sudo rm -rf /opt/remmina_devel/

      3. Cleanup symlinks and dynamic loader

      sudo rm /etc/ld.so.conf.d/freerdp_devel.conf /usr/local/bin/remmina /usr/local/bin/xfreerdp
      sudo ldconfig
      posted @ 2020-11-11 15:25  landv  閱讀(789)  評論(0)    收藏  舉報
      主站蜘蛛池模板: 京山县| 女同精品女同系列在线观看| 婷婷丁香五月亚洲中文字幕| 国产日韩一区二区在线| 大又大又粗又硬又爽少妇毛片| 婷婷色综合视频在线观看| 国产亚洲精品第一综合另类| 国产综合内射日韩久| 奶头好大揉着好爽视频| 国产成人8X人网站视频| 影音先锋亚洲成aⅴ人在| 日本中文一区二区三区亚洲| 农村熟女大胆露脸自拍| 国产精品成人国产乱| 日本一码二码三码的区分| 88国产精品视频一区二区三区| 中文字幕av无码不卡| 亚洲国产码专区在线观看| 久久天天躁夜夜躁狠狠820175| 国产综合久久久久久鬼色| 国产99精品成人午夜在线| 性无码一区二区三区在线观看| 日韩人妻不卡一区二区三区| 激情 自拍 另类 亚洲| 无码国内精品久久人妻蜜桃| 国产精品小仙女自拍视频| 亚洲偷自拍国综合| 亚洲美免无码中文字幕在线| 天堂www在线中文| 午夜福利92国语| WWW丫丫国产成人精品| 开心五月激情五月俺亚洲| 少妇被粗大的猛烈进出动视频| 久久九九久精品国产免费直播 | 熟妇啊轻点灬大JI巴太粗| 中文字幕国产原创国产| 亚洲一区二区三区人妻天堂| 久久久无码精品午夜| 国产伦视频一区二区三区| 色综合 图片区 小说区| 国产午夜亚洲精品福利|