码迷,mamicode.com
首页 >  
搜索关键字:linux aix 扩容    ( 157515个结果
linux 服务器使用百度网盘
推荐博客:https://my.oschina.net/attacker/blog/3038174 bypy模块安装 pip install bypy # python pip包管理 登录 bypy info 通过浏览器visit地址,填入Python客户端授权码 上传 下载 先将大文件 移动到 我 ...
分类:系统相关   时间:2021-06-06 19:13:08    阅读次数:0
Linux shutdown与close
shutdown和close都可以用来关闭TCP连接, 那么它们有区别与联系呢? 下面来研究下这个问题: 1. close 关闭连接和套接字. 成功返回0; 失败为-1, errno被设置 #include <unistd.h> int close(int fd); close会把描述符(sockf ...
分类:系统相关   时间:2021-06-06 19:09:08    阅读次数:0
资源划分--cgroups
一、简介 cgroups 的全称是control groups,是Linux内核提供的一种可以限制、记录、隔离进程组所使用的物理资源(包括:CPU、memory、IO等),可以对 cpu,内存等资源实现精细化的控制,目前越来越火的轻量级容器 Docker 就使用了 cgroups 提供的资源限制能力 ...
分类:其他好文   时间:2021-06-06 19:06:23    阅读次数:0
msyql5.5 本地离线安装 Ubuntu
1、下载 https://downloads.mysql.com/archives/community/ wget https://downloads.mysql.com/archives/get/p/23/file/mysql-5.5.62-linux-glibc2.12-x86_64.tar.g ...
分类:系统相关   时间:2021-06-06 18:56:23    阅读次数:0
OOP summary
Preliminaries Linux Basics Change Password: passwd shutdown: sudo shutdown -h 3 (broadcast to all users in 3 mins) reboot: sudo reboot -r now create a ...
分类:其他好文   时间:2021-06-06 18:53:34    阅读次数:0
关于学习的事
#使用Markdown格式 最近的事 课程考试 程序比赛 四级 回家的事 考研还是就业(好慌) 考驾照 该不该买计算机网络的书 Linux的学习 public static void main(String[] args){ SyStem.out.println("Hello,World"); } ...
分类:其他好文   时间:2021-06-05 18:37:20    阅读次数:0
Linux定时任务
定时任务简介 什么是定时任务 maintains crontab files for individual users 为单一用户维护crontab文件 为什么要使用定时任务 使用计划任务可以周期性的执行一些命令、脚本等,比如批量服务、备份脚本 Linux系统的定时任务分类 1、linux系统自身定 ...
分类:系统相关   时间:2021-06-05 18:27:27    阅读次数:0
PowerShell查找程序路径
在 linux 下面,查找路径一般是 where ,但是同样的命令在PS下面是不行的。 在PS下有个查看别名的命令:Get-Alias ,看一下where是啥? Alias where -> Where-Object 原来 where 是 Where-Object 这个命令的别名,并不是查看路径用的 ...
分类:系统相关   时间:2021-06-05 18:16:02    阅读次数:0
Linux下删除当前目录及子目录下的所有.txt文件
因为某种应用场景我需要将特定目录下的txt文件进行清理,核心命令如下: find 目录 -name '*.txt' -type f -print -exec rm -rf {} \; 例如: find /home/tech/data_log -name '*.txt' -type f -print ...
分类:系统相关   时间:2021-06-05 17:53:08    阅读次数:0
Linux关闭防火墙命令
1:查看防火状态 systemctl status firewalld service iptables status 2:暂时关闭防火墙 systemctl stop firewalld service iptables stop 3:永久关闭防火墙 systemctl disable firew ...
分类:系统相关   时间:2021-06-05 17:51:23    阅读次数:0
157515条   上一页 1 ... 28 29 30 31 32 ... 15752 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!