zoukankan      html  css  js  c++  java
  • openSUSE Leap 15.0 初始配置

    添加源:

    # 禁用原有软件源 
    sudo zypper mr -da
    
    # 添加阿里镜像源
    sudo zypper ar -fc https://mirrors.aliyun.com/opensuse/distribution/leap/15.0/repo/oss openSUSE-Aliyun-OSS
    
    sudo zypper ar -fc https://mirrors.aliyun.com/opensuse/distribution/leap/15.0/repo/non-oss openSUSE-Aliyun-NON-OSS
    
    sudo zypper ar -fc https://mirrors.aliyun.com/opensuse/update/leap/15.0/oss openSUSE-Aliyun-UPDATE-OSS
    
    sudo zypper ar -fc https://mirrors.aliyun.com/opensuse/update/leap/15.0/non-oss openSUSE-Aliyun-UPDATE-NON-OSS
    
    # 第三方源
    sudo zypper ar -fc https://mirrors.aliyun.com/packman/openSUSE_Leap_15.0 openSUSE-Aliyun-Packman
    
    sudo zypper ar -fc https://download.opensuse.org/repositories/home:/opensuse_zh/openSUSE_Leap_15.0 openSUSE-zh
    
    sudo zypper ar -fc https://download.opensuse.org/repositories/M17N/openSUSE_Leap_15.0 M17N
    
    sudo zypper ar -fc https://download.videolan.org/pub/SuSE/Leap_15.0 VLC
    
    # 刷新软件源
    sudo zypper ref
    
    # 软件升级
    sudo zypper up
    
    # 系统升级
    sudo zypper dup

    安装软件

    # 安装 sogou-pinyin
    sudo zypper in sogou-pinyin
    
    # 安装浏览器
    sudo zypper in chromium
    
    sudo zypper in falkon
    
    # 安装WPS
    sudo zypper in wps-office
    
    # 安装Pinta
    sudo zypper in pinta
    
    # 安装网易云音乐
    sudo zypper in netease-cloud-music
    
    # 安装git
    sudo zypper install git
    
    # 安装redshift 
    sudo zypper in redshift redshift-gtk
    
    # 安装rar的解压与压缩
    sudo zypper in rar unrar
    
    # 安装VScode 
    sudo rpm --import  https://packages.microsoft.com/keys/microsoft.asc
    sudo sh -c 'echo -e "[code]
    name=Visual StudioCode
    baseurl=https://packages.microsoft.com/yumrepos/vscode
    enabled=1
    type=rpmmd
    gpgcheck=1
    gpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/zypp/repos.d/vscode.repo'
    sudo zypper refresh       
    sudo zypper in code

    安装驱动

    NVIDIA显卡驱动 
    
    添加软件源:
    sudo zypper addrepo -f https://download.nvidia.com/opensuse/leap/15.0 NVIDIA
    
    安装驱动:
    zypper install-new-recommends

    备注:

    问题:安装搜狗拼音输入法时,遇到无法输入汉字

    解决方案:在命令行中依次执行fcitx,sogou-qimpanel ,查看缺失的lib并安装(sudo zypper in libQtWebKit4)

    待续。。。。。。

  • 相关阅读:
    实例讲解虚拟机3种网络模式(桥接、nat、Host-only)
    期刊搜索问题——SCI、EI、IEEE和中文期刊
    面向对象分析与设计(C++)课堂笔记
    windows与VMware ubuntu虚拟机实现文件共享
    GDI+在绘制验证码中的使用
    【转】.net中快捷键的使用
    MD5加密“破解”在.NET平台实现最基本的理解
    UE4 Persona 骨架网格物体动画
    从零开始做3D地图编辑器 基于QT与OGRE
    TBB(Intel Threading Building Blocks)学习笔记
  • 原文地址:https://www.cnblogs.com/KylinBlog/p/9150405.html
Copyright © 2011-2022 走看看