会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
孙博吖!
博客园
首页
新随笔
联系
订阅
管理
2024年5月9日
Ubuntu软件安装
摘要: 安装Linux原生微信 目前Linux微信只专供几个国产Linux操作系统,还没有Ubuntu版,这里我选择的是开发麒麟(openkylin)操作系统提供的安装包。 wget https://software.openkylin.top/openkylin/yangtze/pool/all/wech
阅读全文
posted @ 2024-05-09 00:45 孙博吖!
阅读(33)
评论(0)
推荐(0)
2021年11月17日
Ubuntu安装docker
摘要: 1.准备更新和安装docker源 sudo apt update sudo apt install docker.io 2.准备docker镜像加速 vi /etc/docker/daemon.json { "registry-mirrors": [ "https://hub-mirror.c.16
阅读全文
posted @ 2021-11-17 11:19 孙博吖!
阅读(37)
评论(0)
推荐(0)
centos安装Docker
摘要: ***注意事项centos的内核要在3.10以上*** 1.准备yum源docker源 curl -o /etc/yum.repos.d/docker-ce.repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo cu
阅读全文
posted @ 2021-11-17 11:08 孙博吖!
阅读(34)
评论(0)
推荐(0)
2021年10月31日
Ubuntu进入vi模式无法删除内容!
摘要: 1.卸载掉vim-common包 sudo apt-get remove vim-common 2.重新安装vim工具 sudo apt-get install vim
阅读全文
posted @ 2021-10-31 23:09 孙博吖!
阅读(444)
评论(0)
推荐(0)
2021年10月27日
Ubuntu升级内核版本
摘要: 1.查看ubuntu的内核版本 cat /proc/version uname -sr ###任选其一查看 2.根据自己的操作系统下载.deb文件 http://kernel.ubuntu.com/~kernel-ppa/mainline/ 3.连网的状态采用wget 下载到本机 wget http
阅读全文
posted @ 2021-10-27 11:38 孙博吖!
阅读(1218)
评论(0)
推荐(0)
2021年8月29日
deepin安装USB无线网卡驱动
摘要: 1.deepin安装usb无线驱动 1.安装git sudo apt-get install git2.获取在网上git驱动包 RTL8821CU git clone http://github.com/brektrou/rtl8821cu.git3.编译及安装驱动 cd /rtl8821 make
阅读全文
posted @ 2021-08-29 00:11 孙博吖!
阅读(1550)
评论(0)
推荐(0)
2021年8月17日
Linux随手写
摘要: 1.查看本机出口的公网IP以及某个IP归属地 [root@centos ~]# curl cip.cc IP : 113.118.x.x 地址 : 中国 广东 深圳 运营商 : 电信 数据二 : 广东省深圳市 | 电信 数据三 : 中国广东深圳 | 电信 URL : http://www.cip.c
阅读全文
posted @ 2021-08-17 16:21 孙博吖!
阅读(65)
评论(0)
推荐(0)
2021年8月15日
MySQL随手写!
摘要: 1.导出MySQL某个数据库中的表到指定目录格式为.xls [root@centos ~]# mysql -u root -p123456 -e "select * from share2;" class1 > /root/mysql.xls #mysql连接数据库 #-u root用户 #-p r
阅读全文
posted @ 2021-08-15 18:29 孙博吖!
阅读(74)
评论(0)
推荐(0)
2021年8月11日
MySQL数据表基本操作
摘要: MySQL数据表 1.创建表 mysql> create table share(name char (5),gender char (10),hobby char (15)); Query OK, 0 rows affected (0.13 sec) 2.查看表结构 mysql> desc sha
阅读全文
posted @ 2021-08-11 19:21 孙博吖!
阅读(85)
评论(0)
推荐(0)
2021年8月7日
MySQL的基本操作!
摘要: 数据库的操作 show databases; ##查看MySQL中的所有数据库! mysql> show databases; + + | Database | + + | information_schema | | mysql | | performance_schema | | sys | +
阅读全文
posted @ 2021-08-07 17:35 孙博吖!
阅读(106)
评论(0)
推荐(0)
下一页
公告