码迷,mamicode.com
首页 >  
搜索关键字:linux 用户及用户组 权限 chmod chown    ( 185274个结果
Glibc堆管理机制基础
最近正在学习linux下堆的管理机制,收集了书籍和网络上的资料,以自己的理解做了整理,做个记录。如果有什么不对的地方欢迎指出! Memory Allocator 常见的内存管理机制 dlmalloc:通用分配器 ptmalloc2:glibc分配器,继承自dlmalloc,并提供了多线程支持,主要研 ...
分类:其他好文   时间:2021-02-26 12:56:38    阅读次数:0
给k8s集群中的node节点加标签
1.增加节点标签 备注 =:代表增加标签 kubectl label nodes node3 node-role.kubernetes.io/node3= 2.减少节点标签 备注 -:代表减少标签 kubectl label nodes node3 node-role.kubernetes.io/n ...
分类:其他好文   时间:2021-02-26 12:55:02    阅读次数:0
.bash_profile和.bashrc的区别
在 Linux、Mac OSX 等操作系统中,可能同时存在 .bash_profile 和 .bash_rc 两个文件,两者有何区别? 区别就是 .bash_profile 是 login shell 的配置文件,而 .bashrc 是交互式 non-login shell 的配置文件。所以配置 a ...
分类:其他好文   时间:2021-02-25 12:22:14    阅读次数:0
Linux基础4
###linux高级命令 ###1.1、find 功能:在linux文件系统中,用来查找一个文件放在哪里了。 举例:find /etc -name "interfaces" 总结: (1)什么时候用find? 当你知道你要找的文件名,但是你忘记了它被放在哪个目录下,要找到该文件时,用find。 (2 ...
分类:系统相关   时间:2021-02-25 12:05:43    阅读次数:0
docker 常用命令及实践
docker 的安装 yum update sudo yum-config-manager \ --add-repo \ http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo 安装docker: sudo yum instal ...
分类:其他好文   时间:2021-02-25 12:03:20    阅读次数:0
sudo 不起作用 提示 <用户名>is not in the sudoers file
当在终端执行sudo命令时,系统提示“hadoop is not in the sudoers file”: 其实就是没有权限进行sudo,解决方法如下(这里假设用户名是cuser): 1.切换到超级用户:$ su 2.打开/etc/sudoers文件:$vim /etc/sudoers 3.修改文 ...
分类:其他好文   时间:2021-02-25 11:47:06    阅读次数:0
Ubuntu20配置&美化
信息介绍 使用对象:安装完中文版Ubuntu,觉得不好看的人 Ubuntu版本:20.04 参考文章:美化、安装QQ&钉钉&微信 一. 配置OS 1.更换源 打开软件"软件和更新" 选择要更换的源 2.搜狗输入法 安装包下载地址:https://pinyin.sogou.com/linux/?r=p ...
分类:系统相关   时间:2021-02-25 11:41:56    阅读次数:0
修改默认gcc版本
background 在以5.3为内核的ubuntu中编译3.10的内核时,出现: include/linux/compiler-gcc.h:106:30: fatal error: linux/compiler-gcc5.h错误 尝试了网上说的将当前内核(5.3)的compiler-gcc.h复制 ...
分类:其他好文   时间:2021-02-24 13:28:44    阅读次数:0
WPF 设置管理员权限启动
在 dotnet 程序,可以通过清单文件设置管理员权限启动 通过下面代码可以判断当前的程序是管理员权限运行 var identity = WindowsIdentity.GetCurrent(); var principal = new WindowsPrincipal(identity); if ...
分类:Windows程序   时间:2021-02-24 13:26:40    阅读次数:0
Best PDF Document Viewers for Linux Systems
This article is the continuation of our ongoing series about Linux Top Tools, in this series we will introduce you most famous open source tools for L ...
分类:系统相关   时间:2021-02-24 13:22:40    阅读次数:0
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!