美文网首页
Ubuntu新系统各种配置

Ubuntu新系统各种配置

作者: 我是你森哥哥 | 来源:发表于2019-07-14 14:36 被阅读0次

    1.vim

    sudo apt install vim
    
    image.png

    2.gedit

    sudo apt install gedit
    
    image.png

    3.git

    sudo apt install git
    
    image.png
    检查git版本
    git --version
    
    image.png

    在Git中配置自己的名称和电子邮件地址,以便您提交的更改包含正确的信息。 您可以通过使用以下命令来完成此操作:

    git config --global user.name "zss"
    git config --global user.email "zhaosen@aitek.ai"
    

    接下来,我们将通过查看.gitconfig来验证配置更改:

    git config --list
    
    image.png

    有关更多信息和命令行选项,可以使用-help标签:

    git --help
    

    ssh配置

    ssh-keygen -t rsa ,连续三次回车(即不做任何输入),结果如下


    image.png

    然后去/home/zss/.ssh 文件夹下


    image.png

    将公钥配置到你的git上

    git 设置默认编辑器
    git config --global core.editor "vim"
    

    4. repo

    国内repo init -u 老是被墙 别急解决方案在下边

    1.安装依赖工具

    sudo apt-get install git-core
    sudo apt-get install git-core curl

    2.下载(两个地址都可以)


    mkdir ~/bin/

    curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo -o repo
    curl "http://php.webtutor.pl/en/wp-content/uploads/2011/09/repo" > ~/bin/repo

    3.修改权限
    chmod a+x ~/bin/repo
    
    5.初始化
    repo init -u xxx
    

    手动指定一下repo地址为国内的镜像

    
    repo init -u manifest -b v3 --repo-url=https://gerrit-googlesource.lug.ustc.edu.cn/git-repo
    

    5. chrome

    
    
    
    sudo wget http://www.linuxidc.com/files/repo/google-chrome.list -P /etc/apt/sources.list.d/
    
    
    wget -q -O - https://dl.google.com/linux/linux_signing_key.pub  | sudo apt-key add -
    
    
    sudo apt update
    
    sudo apt install google-chrome-stable
    

    6.rar

    sudo apt-get install rar
    
    sudo apt-get install unrar
    

    使用
    可以直接在UI界面使用了
    rar x test.rar

    7.视频播放器

    sudo apt-get install smplayer
    

    相关文章

      网友评论

          本文标题:Ubuntu新系统各种配置

          本文链接:https://www.haomeiwen.com/subject/euebkctx.html