zoukankan      html  css  js  c++  java
  • 【Ubuntu 16.04 使用日志】LOG

    LOG:
    2017-4-22 添加"Firefox安装flash"、"安装netease_cloud_music与Chrome"
    2017-4-23 添加 安装eclipse
    2017-4-24 定制 Ubuntu桌面


    1.Firefox安装flash

    从 Adobe 中下载 tar.gz 文件,解压之后可以查看 readme.txt,下面是描述的安装过程:

    Installing using the plugin tar.gz:
    o Unpack the plugin tar.gz and copy the files to the appropriate location.
    o Save the plugin tar.gz locally and note the location the file was saved to.
    o Launch terminal and change directories to the location the file was saved to.
    o Unpack the tar.gz file. Once unpacked you will see the following:
    + libflashplayer.so
    + /usr
    o Identify the location of the browser plugins directory, based on your Linux distribution and Firefox version
    o Copy libflashplayer.so to the appropriate browser plugins directory. At the prompt type:
    + cp libflashlayer.so
    o Copy the Flash Player Local Settings configurations files to the /usr directory. At the prompt type:
    + sudo cp -r usr/* /usr

    其中,在 Ubuntu 16.04 中,Firefox 的插件安装路径是

    sudo cp libflashplayer.so /usr/lib/firefox-addons/plugins/
    

    然后执行:

    sudo cp -r usr/* /usr
    

    再重启 Firefox即可.


    2.安装netease_cloud_music与Chrome

    在下载好这两个 .deb 包之后,安装sudo dpkg -i google-chrome-stable_current_amd64.deb 时会因为缺少依赖,会出现错误,这个时候需要更换deb源,然后执行

    sudo apt-get -f install
    

    这是修复依赖关系(depends)的命令,就是假如你的系统上有某个package不满足依赖条件,这个命令就会自动修复,安装那个package依赖的package

    然后重新

    sudo dpkg -i google-chrome-stable_current_amd64.deb 
    

    3.ubuntu16.04 安装 jdk,eclipse

    JDK环境变量配置--ubuntu版


    # 4.定制Ubuntu桌面 [参考链接-定制你的Ubuntu桌面](https://linux.cn/article-3082-1.html)
  • 相关阅读:
    js 延迟函数
    reduce
    angular2 select 联动
    小程序图片展示模式
    e.target 和 e.currentTarget
    jquery weui 图片浏览器Photo Browser
    ng2中 如何使用自定义属性data-id 以及赋值和取值操作
    jquery img src赋值
    JQuery 自定义属性取值 赋值
    unsupported media type 415
  • 原文地址:https://www.cnblogs.com/shih/p/6749621.html
Copyright © 2011-2022 走看看