zoukankan      html  css  js  c++  java
  • Ubuntu 16.04/18.06LTS 常用软件安装

    一、遇到的问题

      1、su认证失败

    sudo passwd //输入命令,然后修改密码即可
    

      2、移动启动器

    gsettings set com.canonical.Unity.Launcher launcher-position Left
    gsettings set com.canonical.Unity.Launcher launcher-position Bottom

      3、设置启动项

    sudo gedit /etc/default/grub 输入密码
    // 其中GRUB_DEFAULT=0代表系统默认启动第0项,因为我的windows启动项是第4项(从0开始的),把0改成4。
    //GRUB_TIMEOUT=10,代表的是选择时间,将它改成五秒保存并退出。
    sudo update-grub//保存修改。

    二、卸载软件。

       1、卸载libreoffice(装WPS)

      Uninstall LibreOffice on Ubuntu 18.04 and Ubuntu 16.04 by running commands below in your terminal.

    sudo apt-get remove --purge libreoffice*
    

       This will remove LibreOffice and its dependencies. Next is to clear out the local repository of LibreOffice packages.

    sudo apt clean
    

       Clear all LibreOffice dependencies that are orphaned – no longer required.

    sudo apt-get autoremove
    

       3、删除Amazon的链接

     //16.04
    sudo apt-get remove unity-webapps-common
    
    // 18.04
    sudo apt purge ubuntu-web-launchers
    

    三、安装软件

      1、安装vim

    sudo apt-get install vim

      2、安装htop

    sudo apt-get install htop

      3、codeblocks

    sudo add-apt-repository ppa:damien-moore/codeblocks-stable
    sudo apt-get update
    sudo apt-get install codeblocks codeblocks-contrib
    

      4、安装Chrome【http://www.cnblogs.com/pealicx/p/8677087.html】

      5、安装系统指示器SysPeek

    sudo add-apt-repository ppa:nilarimogard/webupd8    
    sudo apt-get update    
    sudo apt-get install syspeek 

      6、 安装exfat格式文件挂载驱动

    sudo apt-get install exfat-fuse  

      7、 安装搜狗输入法【http://www.cnblogs.com/pealicx/p/8723094.html】

      8、安装WPS 【http://www.cnblogs.com/pealicx/p/8723365.html】

      9、安装视频播放器smplayer

    sudo apt-get install smplayer
    

    未完、待续!

    想的太多,做的太少。
  • 相关阅读:
    windows下用Python把pdf文件转化为图片(png格式)
    SQL优化实战:外层查询条件放到内层查询中(predicate push down)
    SQL优化实战:临时表+分批提交+按日结存
    SQL优化:重新编译存储过程和表
    论坛中的问题:47 数据库的事务是100%的吗?
    代理模式
    建造者模式
    工厂模式
    面向对向设计
    单例设计模式
  • 原文地址:https://www.cnblogs.com/pealicx/p/6056706.html
Copyright © 2011-2022 走看看