系统工程学吧 关注:5贴子:176
  • 4回复贴,共1

ubuntu下的命令

只看楼主收藏回复

sudo su进入root模式。
sudo gedit /etc/envrioment.
设置环境变量.
source gedit /etc/enviroment.
进入环境变量.


IP属地:广东1楼2015-12-20 17:41回复
    安装的话,sudo apt-get
    tar zxf
    解压。
    获得
    还有一种是。
    reboot重启.
    必须得是root模式才可以swift.


    IP属地:广东2楼2015-12-20 17:43
    回复
      vi命令下设置:set nu


      IP属地:广东3楼2015-12-20 17:55
      回复
        sudo apt-get install vim


        IP属地:广东4楼2016-01-10 21:36
        回复
          问题分析:ubuntu预装的是vim tiny版本,而需要的是vim full版本。执行下面的语句安装vim full版本:
          $sudo apt-get remove vim-common
          $sudo apt-get install vim
          ps:这里可能遇到以下问题:
          Reading package lists... Done
          Building dependency tree
          Reading state information... Done
          Package vim 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
          E: Package vim has no installation candidate
          解决办法:
          sudo apt-get update && sudo apt-get install vim


          IP属地:广东5楼2016-01-10 21:39
          回复