blmius blmius
3年前
linux
Linux
Stella981 Stella981
3年前
Linux出现cannot create temp file for here
Linux出现cannotcreatetempfileforheredocument:Nospaceleftondevice的问题解决参考文章:(1)Linux出现cannotcreatetempfileforheredocument:Nospaceleftondevice的问题解决(https
Stella981 Stella981
3年前
Linux和Ubuntu的区别详解
近有很多人问小编,Linux和Ubuntu的区别是什么,我们用户应该如何选择?想知道Linux和Ubuntu的区别,首先我们要明白,什么是Linux,什么是Ubuntu.下面就此问题,小编今天专门写了一篇文章为大家科普.!Linux教程(https://oscimg.oschina.net/oscnet/up8703234e74e1f491
Stella981 Stella981
3年前
Linux selinux
!(https://oscimg.oschina.net/oscnet/up42340abbce823197549f54414232a2db877.png)一、前言安全增强型Linux(SecurityEnhancedLinux)简称SELinux,它是一个Linux内核模块,也是Linux的一个安全子系统。SELinux
Stella981 Stella981
3年前
Fedora开启SSH服务
1)安装opensshserveryuminstallopensshserver 2)查看是否已成功安装opensshserverrpmqa|grepopensshserver 3)修改ssh服务的配置文件   配置ssh服务的运行参数,是通过修改配置文件/etc/ssh/ssh\
Wesley13 Wesley13
3年前
mysql设置远程访问
(1)连接数据库mysqlurootp(2)输入密码(3)切换数据库usemysql;(4)修改root用户hostupdateusersethost'%'whereuser'root';(5)修改mysqld配置文件vi/etc/mysql/mysql.co
Stella981 Stella981
3年前
Rust编程基础:022、模块4
创建一个新项目learn\_crate4:cargonewlearn_crate4修改Cargo.toml文件,在文件最后加上:rustcrypto"0.2"修改main.rs文件:externcratecrypto;usecrypto::digest::Digest;
Wesley13 Wesley13
3年前
7月18日任务7月19日任务
10.28rsync工具介绍10.29/10.30rsync常用选项10.31rsync通过ssh同步10.32/10.33rsync通过服务同步10.34linux系统日志10.35screen工具扩展1\.Linux日志文件总管logrotatehttp://linux.cn/art
Stella981 Stella981
3年前
Linux 多线程编程
1.Linux“线程”进程与线程之间是有区别的,不过Linux内核只提供了轻量进程的支持,未实现线程模型。Linux是一种“多进程单线程”的操作系统。Linux本身只有进程的概念,而其所谓的“线程”本质上在内核里仍然是进程。大家知道,进程是资源分配的单位,同一进程中的多个线程共享该进程的资源(如作为共享内存的全局变量)。Linux