当前位置: 首页 > article >正文

ubuntu22.04上手指南(更新阿里源、安装ssh、安装chrome、设置固定IP、安装搜狗输入法)

ubuntu22.04上手指南(更新阿里源、安装ssh、安装chrome、设置固定IP、安装搜狗输入法)

一、更新并安装基础软件

#切换root用户
sudo su -

#更新
apt update 

#升级
apt upgrade

#install vim
apt install vim

#install net-tools
apt install net-tools

二、安装ssh并设置开机自启动

#install ssh
apt install openssh-server
apt install openssh-client

#重启ssh服务
service ssh restart

vim /root/.bashrc
#文件末尾增加一条记录service ssh start
service ssh start

#将PermitRootLogin的值改为yes,/搜索即可,超级简单
vim /etc/ssh/sshd_config
PermitRootLogin yes

#放开22端口
ufw allow 22

三、安装chrome浏览器

chrome官网下载chrome的deb安装包

#使用wget命令下载最新版chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

#安装chrome
dpkg -i google-chrome-stable_current_amd64.deb

#也可以手动下载,然后切换到下载目录
cd /home/jason/Download

#install chrome
dpkg -i google-chrome-stable_current_am64.deb

四、设置ubuntu更新源为阿里源

#更换阿里源
vim /etc/apt/sources.list

#清除原有文件内容
:%d

#把下面的贴过去
deb http://mirrors.aliyun.com/ubuntu/ jammy main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ jammy main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ jammy-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ jammy-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ jammy-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ jammy-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse

#更新
apt update 

#升级
apt upgrade

五、命令行设置静态IP地址

#进入网络管理目录
cd /etc/netplan

root@kelsen-ubuntu-desktop:/etc/netplan# ls
01-network-manager-all.yaml

vim 01-network-manager-all.yaml

network:
  version: 2
  renderer: NetworkManager
  ethernets:
    ens33:      #ens33可根据命令ifconfig -a 显示的网卡名
      dhcp4: false
      addresses:
        - 192.168.1.114/24  # 将此处的IP地址替换为你想要设置的静态IP地址
      optional: true
      routes:
        - to: default
          via: 192.168.31.1  # 将此处的网关地址替换为你家庭路由器的网关地址
      nameservers:
        addresses: [192.168.31.1,8.8.8.8,8.8.4.4]  # 可根据需要修改为你常用的DNS服务器地址

# 设置600的文件权限,否则会报错Permissions for /etc/netplan/01-network-manager-all.yaml are too open. Netplan configuration should NOT be accessible by others.
chmod 600 /etc/netplan/01-network-manager-all.yaml

#应用
netplan apply

六、安装搜狗输入法

#下载输入法网址 http://pinyin.sogou.com/linux/

#安装fcitx并设置开机启动
apt install fcitx fcitx-table-wbpy
cp /usr/share/applications/fcitx.desktop /etc/xdg/autostart/

#卸载ibus
apt purge ibus

#安装搜狗拼音
dpkg -i sogoupinyin_4.2.1.145_amd64.deb
 
#安装输入法依赖
apt install libqt5qml5 libqt5quick5 libqt5quickwidgets5 qml-module-qtquick2  -y
apt install libgsettings-qt1 -y

#重启电脑
reboot

#右上角输入法图标 -- confing -- + -- 搜索sogou

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述


http://www.kler.cn/a/393234.html

相关文章:

  • 什么岗位需要学习 OpenGL ES ?说说 3.X 的新特性
  • INQUIRE:一个包含五百万张自然世界图像,涵盖10,000个不同物种的专为专家级文本到图像检索任务设计的新型基准数据集。
  • MySQL技巧之跨服务器数据查询:进阶篇-从A数据库复制到B数据库的表中
  • Fastapi使用MongoDB作为数据库
  • AcWing 302 任务安排 斜率优化的dp
  • 《深度解析 C++中的弱引用(weak reference):打破循环依赖的利器》
  • 【二叉搜素树】——LeetCode二叉树问题集锦:6个实用题目和解题思路
  • 除了 Postman,还有什么好用的 API 测试工具吗
  • uni-app中使用 unicloud 云开发平台③
  • C++生成随机数
  • 信用租赁系统的灵活配置与智能化管理助力租赁市场发展
  • 29系统备份与恢复
  • 深入理解 Vue v-model 原理与应用
  • 量化交易系统开发-实时行情自动化交易-4.1.1.A股趋势跟踪交易策略实现
  • 批量缓存模版
  • 基于yolov5的番茄成熟度检测系统,支持图像、视频和摄像实时检测【pytorch框架、python源码】
  • 【前端篇】Node.js 版本管理新选择:Volta,让版本切换更简单
  • OpenGL 进阶系列07 - 阴影贴图(shadowmap )
  • 【深度学习】使用硬件加速模型训练速度
  • Scala可变List
  • MySQL —— MySQL基础概念与常用功能介绍
  • VScode下脚本被禁止运行的原因及解决方案
  • python 怎么在模块和文件夹名称不一致的情况下,安装自己的模块
  • 物联网设备研究——分配推理负载的联合学习方法
  • Android Studio 中三方库依赖无法找到的解决方案
  • 算法和数据结构 目录