包含标签 ubuntu 的文章

NFS服务器

服务端 安装 1 2 sudo apt update sudo apt install nfs-kernel-server 配置文件一般不需要更改: 1 2 /etc/default/nfs-kernel-server /etc/default/nfs-common 准备共享目录 1 2 3 |- /srv/nfs4 |- backups |- www 1 2 sudo mount --bind /opt/backups /srv/nfs4/backups sudo mount --bind /var/www /srv/nfs4/www 1 2 3 #/etc/fstab /opt/backups /srv/nfs4/backups none bind 0 0 /var/www /srv/nfs4/www none bind 0 0 共享 1 2 3 4 #/etc/exports /srv/nfs4 192.168.33.0/24(rw,sync,no_subtree_check,crossmnt,fsid=0) /srv/nfs4/backups 192.168.33.0/24(ro,sync,no_subtree_check) 192.168.33.3(rw,sync,no_subtree_check) /srv/nfs4/www 192.168.33.110(rw,sync,no_subtree_check) 指定哪些IP可以进行什么操作,如: 192.168.33.0/24下的所有主机可以在nfs4下读写(rw),……

阅读全文

ubuntu服务器初始配置

1 2 3 4 5 6 7 sudo vi /etc/cloud/cloud.cfg.d/90_dpkg.cfg sudo apt purge cloud-init snapd nano sudo rm -rf /etc/cloud/ sudo rm -rf /var/lib/cloud/ sudo apt autoremove echo "$USERALL=(ALL:ALL) NOPASSWD: ALL" |sudo tee -a /etc/sudoers echo "set completion-ignore-case on" |sudo tee -a /etc/inputrc 禁用systemd-resolved systemd-resolved不好用,经常将复杂网络配置搞坏,可以考虑禁用掉: 1 2 3 4 systemctl disable systemd-resolved systemctl stop systemd-resolved rm /etc/resolve.conf # 删除符号链接 echo "nameserver 114.114.114.114" > /etc/resolve.conf 网卡 Ubuntu Server 启动时经常卡在:a start job……

阅读全文

ubuntu时间服务器

ubuntu ntp服务器配置与同步 sudo apt install ntp 配置/etc/ntp.conf,如conf/ntp.conf所示 sudo systemctl restart ntp ubuntu ntp客户端配置 现在一般使用systemd-timesyncd与ntp服务器同步 配置/etc/systemd/timesyncd.conf中的NTP=192.168.10.1……

阅读全文

ubuntu文档系统

文档路径 系统apt安装的文档一般在/usr/share/doc下 源码编译的工程文档一般在/usr/local/share/doc下 如uhd, gnuradio man路径 /usr/share/man/ /usr/local/share/man user commands system calls C lib devices and special files file formats and conventions Games miscellanea system admin tools and daemons……

阅读全文

ubuntu创建deb包

工作中经常要自己编译源代码,对于大型开源工程,每安装一台电脑就要重新编译一下,即浪费时间又容易出问题(git代码总在更新)。 即然我是一个喜欢用archlinux而不喜欢gentoo的人,就很想找到即可以改源代码,又可以分发的方法,对,就是打包——&mdas……

阅读全文