会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
博客园
首页
新随笔
联系
订阅
管理
随笔 - 128 文章 - 0 评论 - 1 阅读 -
41100
上一页
1
···
9
10
11
12
13
2020年2月27日
Centsos7 aria2
摘要: wget -N --no-check-certificate https://raw.githubusercontent.com/ToyoDAdoubi/doubi/master/aria2.sh && chmod +x aria2.sh && bash aria2.sh #备用地址 wget -N
阅读全文
posted @ 2020-02-27 18:10 wakaka_wka
阅读(188)
评论(0)
推荐(0)
编辑
2020年2月26日
wget 显示网页内容到控制台
摘要: wget -q -O - http://www.microsoft.com
阅读全文
posted @ 2020-02-26 23:09 wakaka_wka
阅读(563)
评论(0)
推荐(0)
编辑
CentOS 7下用firewall-cmd控制端口与端口转发
摘要: # 将80端口的流量转发至192.168.0.1的8080端口 1.firewall-cmd --permanent --add-forward-port=port=80:proto=tcp:toaddr=192.168.0.1:toport=80802.开启防火墙伪装:firewall-cmd -
阅读全文
posted @ 2020-02-26 22:11 wakaka_wka
阅读(720)
评论(0)
推荐(0)
编辑
Centos7 安装 Cockpit
摘要: 1sudo yum -y install epel-release sudo yum -y update sudo shutdown -r now2yum -y install cockpit systemctl start cockpit systemctl enable cockpit.sock
阅读全文
posted @ 2020-02-26 00:30 wakaka_wka
阅读(990)
评论(0)
推荐(0)
编辑
Centos7 firewall
摘要: systemctl start firewalld # 启动systemctl stop firewalld # 停止systemctl enable firewalld # 启用自动启动systemctl disable firewalld # 禁用自动启动systemctl status fir
阅读全文
posted @ 2020-02-26 00:28 wakaka_wka
阅读(111)
评论(0)
推荐(0)
编辑
Centos7 切换 yum 源
摘要: # yum install lrzsz修改CentOS默认yum源为mirrors.aliyun.com1、首先备份系统自带yum源配置文件/etc/yum.repos.d/CentOS-Base.repo [root@localhost ~]# mv /etc/yum.repos.d/CentOS
阅读全文
posted @ 2020-02-26 00:08 wakaka_wka
阅读(539)
评论(0)
推荐(0)
编辑
2020年2月25日
Centos7 根分区扩容
摘要: 以下操作演示使用一块新磁盘进行分区后对 根分区进行扩容 1.df -TH 查看当前根分区容量,如图,只有 4.3G。 2. lsblk 查看 现在有块 vdb磁盘可用来扩容根分区。 3.fdisk -l /dev/vdb 就是我们要进行分区的磁盘(PS:初始挂载上去的新磁盘要先进行分区后才可以使用)
阅读全文
posted @ 2020-02-25 23:02 wakaka_wka
阅读(2425)
评论(0)
推荐(0)
编辑
上一页
1
···
9
10
11
12
13
昵称:
wakaka_wka
园龄:
5年
粉丝:
1
关注:
15
+加关注
<
2025年3月
>
日
一
二
三
四
五
六
23
24
25
26
27
28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
随笔分类
C#(10)
C/C++(1)
Electron(4)
ExtJs(41)
JS(25)
Linux(19)
MySql(2)
Sql(13)
VS(1)
Windows(10)
随笔档案
2025年2月(1)
2025年1月(1)
2024年12月(1)
2024年11月(4)
2024年10月(3)
2024年9月(2)
2024年7月(2)
2024年6月(2)
2024年5月(2)
2024年4月(2)
2024年3月(1)
2023年12月(1)
2023年10月(1)
2023年9月(3)
2023年7月(1)
2023年5月(2)
2023年3月(1)
2023年2月(2)
2022年11月(1)
2022年10月(3)
2022年9月(3)
2022年8月(2)
2022年7月(1)
2022年4月(7)
2022年3月(5)
2022年2月(2)
2021年12月(2)
2021年11月(1)
2021年10月(1)
2021年9月(3)
2021年8月(3)
2021年7月(2)
2021年6月(4)
2021年5月(6)
2021年4月(3)
2021年2月(2)
2021年1月(2)
2020年11月(2)
2020年10月(5)
2020年8月(1)
2020年7月(3)
2020年6月(1)
2020年4月(3)
2020年3月(19)
2020年2月(9)
更多
阅读排行榜
1. JS 获取当前日期加一天之后的日期(3175)
2. Centos7 根分区扩容(2425)
3. CentOS 程序开机自启动方法总结(2365)
4. 集成 VirtIO 驱动的 windows 系统下载(2130)
5. JS 将字符串复制到剪贴板(1895)
评论排行榜
1. HttpWebRequest 请求被中止: 未能创建 SSL/TLS 安全通道(1)
推荐排行榜
1. Excel 列序数转列字母表达(1)
最新评论
1. Re:HttpWebRequest 请求被中止: 未能创建 SSL/TLS 安全通道
ServicePointManager.Expect100Continue = true; ServicePointManager.SecurityProtocol = SecurityProtoco...
--aXinNo1
点击右上角即可分享