Java常用类:System类 System 系统类主要用于获取系统的属性数据和其他操作,构造方法私有 常用方法 方法名 说明 static void arraycopy(); 复制数组 static long currentTimeMillis(); 获取当前系统时间,返回的是毫秒值 static ...
分类:
编程语言 时间:
2021-04-19 15:47:34
阅读次数:
0
Ubuntu 20.04 更换阿里源 sudo cd /etc/apt/sources.list /etc/apt/sources.list.b // 备份原始文件 sudo chmod 777 /etc/apt/sources.list // 修改文件权限 sudo vi /etc/apt/sou ...
分类:
系统相关 时间:
2021-04-19 15:25:14
阅读次数:
0
建议使用docker安装服务,防止软件安装失败导致系统重新安装。 Ubuntu 云服务器配置 一、安装 Apache 网站服务器 apt 系统安装 1.安装 Apache sudo apt update sudo apt install apache2 2.验证 Apache 是否正在运行 sudo ...
分类:
系统相关 时间:
2021-04-19 15:10:44
阅读次数:
0
sudo vi打开 /etc/mysql/mysql.conf.d/mysqld.cnf常用vim命令i 修改文本Ese 推出修改:wq 保存退出:q! 强制退出修改bind_ip为ubuntu ipifconfig -a查看ubuntu ip sudo ufw allow 3306 打开3306端 ...
分类:
数据库 时间:
2021-04-16 12:06:44
阅读次数:
0
一、这个文档是安装压缩包的方式,因为我是阿里云一直报内存太小就没用,我的有2g,见好多人说加内存,我加不了就先放弃了没用 http://grainier.net/how-to-install-redis-in-ubuntu/ 二、使用 apt 安装 安装命令 sudo apt install red ...
分类:
其他好文 时间:
2021-04-16 12:02:36
阅读次数:
0
设置仓库 更新 apt 包索引。 $ sudo apt-get update 安装 apt 依赖包,用于通过HTTPS来获取仓库: $ sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg-agent ...
分类:
系统相关 时间:
2021-04-16 11:59:52
阅读次数:
0
三步解决系统时间同步(Centos7) 第一步,时区设置 第二步,时间同步 第三步,定时任务 **************时区设置************ ##确认服务器上时区名称 timedatectl list-timezones |grep Shanghai ##设置时区名称 timedate ...
分类:
系统相关 时间:
2021-04-15 12:02:24
阅读次数:
0
实验任务一: // 生成N个0~99之间的随机整数,并打印输出 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int x, n; srand(time(0)); // 以当前系统时间 ...
分类:
其他好文 时间:
2021-04-14 12:11:43
阅读次数:
0
Debian软件包通常为预编译的二进制格式的扩展名".deb",类似rpm文件,因此安装快速,无需编译软 件。包文件包括特定功能或软件所必需的文件、元数据和指令 dpkg:package manager for Debian,类似于rpm, dpkg是基于Debian的系统的包管理器。可 以安装,删 ...
分类:
系统相关 时间:
2021-04-13 12:54:26
阅读次数:
0
// 生成N个0~99之间的随机整数,并打印输出 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int x, n; srand(time(0)); // 以当前系统时间作为随机种子 ...
分类:
其他好文 时间:
2021-04-13 12:30:05
阅读次数:
0