linux用户管理
增加用户useradd [选项] 用户名 选项 说明 -g 指定用户的用户主组,(查看用户属于哪个组直接从 passwd 文件查看) -G 指定用户的附加组 (查看用户属于哪个附加组直接从 group 文件查看) -u 指定用户 ID,即指定用户标识符 ((ID 是唯一的),不想使用系统默认指定的 ID 则可以使用 -u 指定 ID,默认 Centos6.x500 之后递增,Centos7.x 从 1000 之后递增 -d 自定义用户的家目录,不要系统默认创建的家目录 -m 创建用户的家目录 -M 不创建家目录 -c 备注信息,可写可不写 -s 指定用户登录的 shell,不写默认是/bin/sh,通常会给程序创建一个不允许登陆的账号 -s /sbin/nologin 或 -s /bin/false -r 创建一个系统账号,centos7 系统账号的 UID 是从 1-999 之间的,centos6 是从 1-499 之间的 常用格式: 1234useradd...
adb常用操作记录
打开应用12# am start 应用包名/activity名adb shell am start com.ss.android.lark/com.ss.android.lark.main.app.MainActivity 获取 Activity 名手机打开 App,电脑使用命令: 1adb shell dumpsys activity activities 搜索一下 mActivityComponent : 获取系统信息获取是否解锁状态1adb shell dumpsys window policy 不同版本可能参数不一样,一个通用的办法是在熄屏先执行此命令,记录下来,然后亮屏再执行一次,对比一下差异就能知道是哪个参数了。小米 11 参数为 mIsScreenOn 卸载无法卸载的系统应用12345adb shell pm uninstall --user 0 com.miui.systemAdSolution等同于先进入adb shell ,然后再执行命令adb shell> pm uninstall --user 0...
使用kubeadm部署一套高可用k8s集群 for Ubuntu
基于 ubuntu 使用 kubeadm 搭建集群, centos部署文档, 有疑问的地方可以看 官方文档 准备机器 我的机器详情如下, 配置至少为 4C4G hostname IP 作用 public 10.0.0.3 ingress、apiserver 负载均衡,nfs 存储 master1 10.0.0.11 k8s master 节点 master2 10.0.0.12 k8s master 节点 master3 10.0.0.13 k8s master 节点 worker1 10.0.0.21 k8s worker 节点 worker2 10.0.0.22 k8s worker 节点 每台机器都做域名解析,或者绑定 hosts(可选但建议) 123456vim /etc/hosts10.0.0.3 public kube-apiserver10.0.0.11 master110.0.0.12 master210.0.0.13 master3 基础环境配置 基础环境是不管 master 还是 worker...
Windows映射网络驱动器
net use 命令常用操作12345:: 取消所有连接net use * /del /y:: 映射坚果云webdav, PERSISTENT:no表示不会记忆映射, 重启会丢失.net use Z: https://dav.jianguoyun.com/dav/ /user:iuxt@qq.com <你的应用密码> /PERSISTENT:no subst 命令12:: 映射C:\Files到D: 某些软件不支持subst D: C:\Files
alpine常用配置
包管理 apk安装包1234apk add busybox-extras busybox vim python3 git# 不缓存,打容器镜像常用apk add --no-cache busybox 查看安装的包1234567891011# 列出所有已安装的包:apk info# 查看特定包的详细信息:apk info <package_name># 查看所有已安装包的版本号:apk info -v# 按字母顺序列出已安装的包:apk info -vv 更换源1sed -i 's/dl-cdn.alpinelinux.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apk/repositories 卸载包1apk del git 终端alpine 默认的是 ash shell 1vim ~/.profile alpine 服务管理工具12345# 查看所有服务rc-service --list# 添加开机自启动rc-update add...
git常用操作记录
配置文件查看 GIT 本地配置1git config --list 编辑 git 配置文件1git config --global --edit 设置 GIT 用户信息12git config --global user.name "zhanglikun"git config --global user.email "iuxt@qq.com" git 记住密码1git config --global credential.helper store 配置文件 ~/.gitconfig 内容12345[user] name = zhanglikun email = iuxt@qq.com[credential] helper = store 忽略追踪文件权限 建议 windows 代码使用 1git config core.filemode false 分支管理 命令 作用 git branch -a 查看所有分支 git branch -r 查看远程分支 git...
树莓派常用操作记录
安装 Docker替换成清华源 清华源地址https://mirrors.tuna.tsinghua.edu.cn/help/docker-ce/ 123echo "deb [arch=armhf] https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/debian \ $(lsb_release -cs) stable" | \ sudo tee /etc/apt/sources.list.d/docker.list 12sudo apt-get updatesudo apt-get install docker-ce 替换软件源中科大源https://mirrors.ustc.edu.cn/help/raspbian.html清华源https://mirrors.tuna.tsinghua.edu.cn/help/raspbian/
VMware Workstation常用操作记录
安装官方下载链接12345678910111213141516171819202122232425262728293031323334353637383940414243444546https://download3.vmware.com/software/wkst/file/VMware-workstation-full-10.0.7-2844087.exe 上面的版本不支持64位Windows系统 https://download3.vmware.com/software/wkst/file/VMware-workstation-full-12.0.0-2985596.exehttps://download3.vmware.com/software/wkst/file/VMware-workstation-full-12.5.4-5192485.exehttps://download3.vmware.com/software/wkst/file/VMware-workstation-full-12.5.5-5234757.exe...
Windows搜索工具everything
无法弹出移动硬盘?设置👉🏻️索引👉🏻️NTFS 和 REFS取消勾选 自动包含新增固定卷 排除搜索结果设置👉🏻️索引👉🏻️排除列表👉🏻️添加筛选器 1234$RECYCLE.BIN*AppData\Roaming\Microsoft\Windows\Recent**Windows\Prefetch**AppData\Local\Packages\Microsoft.Windows.Search_* 直接修改配置文件需要将 everything 进程完全停止后才能进行修改,不然 everything 关闭的时候会覆盖手动修改的配置文件。 退出 everything 停止 everything 服务 1net stop everything 配置文件地址:%appdata%\Everything\Everything.ini...
Ubuntu_Charmed_Kubernetes
官方文档: https://ubuntu.com/kubernetes/docs 开始之前集群 ip 规划,所有机器系统都是 ubuntu 20.04 hostname ip juju-client 10.0.0.10 juju-controller-1 10.0.0.11 juju-master-1 10.0.0.21 juju-master-2 10.0.0.22 juju-master-3 10.0.0.23 juju-worker-1 10.0.0.31 juju-worker-2 10.0.0.32 juju-client 为 juju 客户端和 haproxy 机器juju-controller-1 为 juju 控制器节点 (可以做高可用) 以下操作都是在 juju-client 上执行 安装 juju1sudo snap install juju --classic 设置云类型12juju add-cloud输入manual 添加机器 (一共 5 台)12juju bootstrapjuju...