技术 国内 Ubuntu 20.04 安装kubeadm 命令如下: sudo apt-get update && apt-get install -y apt-transport-https ca-certificates curl # 更换镜像 curl https://mirrors.aliyun.com/kubernetes/apt/doc/apt-key.gpg | sudo apt-key add - echo "deb https://mirrors.aliyun.com/kubernetes/apt/
ubuntu Ubuntu 将用户加入 sudo 权限 添加sudo权限,假设用户名为 ubuntu sudo usermod -G sudo ubuntu 添加root权限 如果需要让此用户有root权限,执行命令: sudo chmod +w /etc/sudoers sudo vim /etc/sudoers 修改文件如下: # User privilege specification root ALL=(ALL) ALL ubuntu ALL=(ALL) ALL 保存退出,
ubuntu Ubuntu 磁盘扩容 查看磁盘信息 df -h 查看物理分区、逻辑卷信息 fdisk -l 查看组卷信息 sudo vgdisplay sudo lvdisplay sudo pvdisplay 扩展lvm卷 sudo lvextend --extents +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv 重新计算磁盘大小 sudo resize2fs /dev/mapper/ubuntu--vg-ubuntu--lv 再次查看磁盘信息 sudo df -h
Docker Docker login 命令行报错 在 ubuntu 上使用 sudo docker login -u -p 登录时,报错: WARNING! Using --password via the CLI is insecure. Use --password-stdin. Error saving credentials: error storing credentials - err: exit status 1, out: `Cannot
nodejs ubuntu 安装最新的 nodejs 步骤如下: sudo apt-get install curl curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash - sudo apt-get install nodejs
ubuntu GPT PMBR size mismatch will be corrected by w(rite). sudo parted -l 然后,输入 Fix。 使用这个命令前,最好先给机器备份,虚拟机和云服务的话,就先打个快照,以防出不知名问题搞坏了磁盘。
ubuntu ubuntu 18.04 开启二次验证 首先,安装好 google-authenticator,如下: sudo apt update && sudo apt install -y libpam-google-authenticator 安装好后,输入:google-authenticator,将输出二维码及 secret-key 的信息以及几个紧急验证码。 在移动端或相关设备上安装好 google 身份验证器 app,扫描二维码即可。同时,请备份好此二维码及相关信息,因为移动端上的 app 无法进行备份。最好是将其备份在 1password 或者 MacPass 等相关密码保存软件上。
ubuntu Ubuntu 18.04配置固定IP ubuntu 18.04 的静态 ip 要在配置文件/etc/netplan/50-cloud-init.yaml中进行配置 sudo vim /etc/netplan/50-cloud-init.yaml 做如下配置: network: ethernets: enp0s3: dhcp4: true addresses: - 192.168.0.105/24 #ip和掩码 gateway4: 192.168.
helm Ubuntu 18.04 安装 Helm 首先,去 https://github.com/helm/helm/releases 也找到对应系统的最新版本 Linux amd64 Helm。我选择的是 https://get.helm.sh/helm-v3.0.0-linux-amd64.tar.gz 所以,我们的版本是 3.0.0。 下面,开始安装 Helm mkdir -p /tmp/
ubuntu the public key is not available: NO_PUBKEY 23E7166788B63E1E when ubuntu 16.04 upgrade to ubuntu 18.04, this error were reported. solution: curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
ubuntu Ubuntu 使用 certbot 免费生成 HTTPS 证书 Start Nginx sudo apt install nginx -y sudo nginx Configuration sudo vim /etc/nginx/nginx.conf将 #server_names_hash_bucket_size 64 改为 server_names_hash_bucket_size 128(一般在24行)。 需将域名test.cpchain.org修改为自己的域名
ubuntu 【TMux】复制窗口内的文本 首先创建文件:~/.tmux.conf 输入内容: cat >> ~/.tmux.conf << EOF set-window-option -g mode-keys vi EOF 重新加载tmux配置文件: tmux source-file ~/.tmux.conf 之后进入你的tmux窗口,按照以下步骤操作: ctrl+b 空格 移动光标 Enter 即可复制文本内容。
mosh 【mosh】mosh-server报错:mosh-server needs a UTF-8 native locale to run. 解决方案: LC_ALL="en_US.UTF-8" mosh-server 客户端连接 LC_ALL="en_US.UTF-8" mosh @
ubuntu Ubuntu SSH公钥登录 SSH公钥登录步骤: 生成公私钥: ssh-keygen 打开~/.ssh cd ~/.ssh ls 可以看到两个文件: id_rsa id_rsa.pub 前者是私钥,后者是公钥。 接下来,将公钥加入~/.ssh/authorized_keys echo -e `cat id_rsa.pub` >> ~/.ssh/authorized_keys 把私钥id_rsa拷贝下来到自己的电脑里,windows用户通过SSH软件连服务器时,
Linux Ubuntu 永久改变hostname 临时改变,直接:sudo hostname test-name即可,永久修改需修改/etc/hostname文件: sudo hostname test-name sudo sh -c "echo test-name > /etc/hostname" 重启系统后,主机名就不会变了。
ubuntu Ubuntu修改普通用户密码 网上有很多修改root用户密码的方法,我这个只修改普通用户的。很简单: 1. 切换root用户 2. 输入password username,然后重置密码即可
ubuntu 国内Ubuntu镜像下载地址 http://mirrors.163.com/ubuntu-releases/ 建议使用torrent下载: http://mirrors.163.com/ubuntu-releases/18.10/ubuntu-18.10-desktop-amd64.iso.torrent
ubuntu Ubuntu上安装wkhtmltopdf 在Ubuntu上安装wkhtmltopdf(同时包括了wkhtmltoimage)的命令: sudo apt-get install -y openssl build-essential xorg libssl-dev xvfb pip install coverage wget https://downloads.wkhtmltopdf.org/0.12/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz tar xf
C++ Linux中C++编译、使用动态链接库 Linux中so为共享动态链接库。下面我们通过一个四则运算的实例来学习动态链接库。 首先是头文件:my_math.h: /** * my_math.h */ // a + b int Add(int a, int b); // a - b int Minus(int a, int b); // a * b int Multiply(int a, int
ubuntu 【Ubuntu】修改Ubuntu的apt-get源为国内镜像源的方法 1、原文件备份 sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak 2、编辑源列表文件 sudo vim /etc/apt/sources.list 3、将原来的列表删除,添加如下内容(中科大镜像源) deb http://mirrors.ustc.edu.cn/ubuntu/ xenial
ubuntu Ubuntu设置时区 首先通过tzselect选择时区 Asia -> China -> Beijing 然后就有了一个时区:Asia/Shanghai 复制文件: cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 如果不是虚拟机或容器的话,可以通过ntpdate time.windows.com修改时区;如果是虚拟机或容器的话,就重启一下机器。 # date Sun Jan 8 08:18:34 CST