sudo
-
Ubuntu添加非root用户到Docker用户组
前言 首先平常公司的Linux生产环境为了防止误操作导致灾难性问题,一般都不会给我们开发开放root管理员的账号权限。所以平常在Ubuntu的普通用户登录的时候,要操作Dcok…
-
Ubuntu 私有化部署GitLab
从清华源下载gitlab 安装包 https://mirrors.tuna.tsinghua.edu.cn/gitlab-ee/ubuntu/pool/bionic/main/g/…
-
ubuntu 安装google浏览器
1、sudo vim /etc/apt/sources.list.d/google-chrome.list 2、输入:deb http://dl.google.com/linux/…
-
Ubuntu Error: ENOSPC:System limit for number of file watchers reached
System limit for number of file watchers reached 这个错误的意思时系统对文件监控的数量已经到达限制数量了!! 造成的结果: 执行的命…
-
Ubuntu系统下安装NVIDIA驱动
介绍两种不同的方法,这两种方法基本不会出现任何问题:1、直接使用系统的apt-get进行nvidia的安装具体参考自这篇https://blog.csdn.net/breeze54…
-
阿里云ubuntu多域名配置
1. vim /etc/hosts //Insert添加 127.0.0.1 aaa.com www.aaa.com 127.0.0.1 bbb.com …
-
如何在Ubuntu 22.04上搭建FTP服务器
安装vsftpd: sudo apt update sudo apt install vsftpd vsftpd服务将在安装过程完成后自动启动。通过打印服务状态进行验证: sudo…
-
Linux挂载硬盘
原文链接 1.查看linux下的硬盘: df -h 没有发现要挂载的硬盘。 2.查看系统检测的硬盘: lsblk 看到 sda1 存在。 3.挂载: 格式化: sudo mkfs …
-
ubuntu 安装mapserver
允许root用户ssh到主机1. 使用apt命令安装openssh server$ sudo apt-get install openssh-server2. 可以对 openss…
-
Nginx
查看运行状态:sudo systemctl status nginx 停止并启动Nginx sudo systemctl stop nginx Nginx重启sudo system…