东屿 - 关于信息技术和日常生活体验的记录
关于S805的刷机和armbian系统的基本调试就略过不提了,网上大把的教程。我因之前装了网心云挂过硬盘,USB设备拆除以后就一直报错,手工修改 /etc/fstab 把硬盘注释掉就可以开始正文:源更新apt update2.安装cups服务apt install cups 安装完毕后,还需要修改一些cups的参数。输入以下命令进入cups的参数配置:nano /etc/cups/cupsd.conf 修改“localhost”改成“0.0.0.0”,Browsing no改成Browsing on,并在三个地方分别添加Allow all,具体如下Listen 0.0.0.0:631 Listen /var/run/cups/cups.sock # Show shared printers on the local network. Browsing On BrowseLocalProtocols dnssd # Default authentication type, when authentication is required... DefaultAuthType
查询有效库位#货位信息 #成品库区 原材料库区 #原材料巷道1 成品1号巷道 set @kuqu:="原材料库区"; set @xiangdao:= "原材料巷道4" ; select ba.alleyName as "巷道名称",bl.locationCode,bl.csFloor as"层数",bl.locationName from base_location bl,base_alley ba where bl.warehouseId ='cbab5bf356134711a94d4b95aac80f2f' #成品库区= 35d100c4545541a895f97825dfb95f4a 原材料= 9b2675fc97004da69d1e4f8bcf1a4e8a and bl.whareaId =(select bw.whareaId from base_wharea bw where bw.whareaName = @kuqu) #货位状态1:无货 2:有货 3:入库分配 4:出库分配 5:入
使用date命令修改系统时间date -s "YYYY-MM-DD HH:MM:SS"示例 date -s "2022-01-01 10:30:30"使用timedatectl命令修改系统时间timedatectl set-time "YYYY-MM-DD HH:MM:SS"示例:timedatectl set-time "2024-07-28 08:42:00"3.查看硬件时间;hwclock --show 4.修改硬件时间;hwclock --set --date "2023-10-28 18:33:00" 3.同步时间,从硬件到操作系统。hwclock --hctosys 4.保存时钟;clock -w 或者 hwclock -w 5.重启,查看是否生效。reboot
公里数为107800,保养时间为:5月9号。
在Debian系统上安装NFS服务,你需要执行以下步骤:安装NFS内核服务器sudo apt updatesudo apt install nfs-kernel-server创建共享目录sudo mkdir -p /srv/nfs/sharesudo chown nobody:nogroup /srv/nfs/share配置共享权限。编辑 /etc/exports 文件,并添加共享目录的配置。sudo nano /etc/exports添加以下行:(*代表不限制IP)/data *(rw,sync,no_subtree_check)替换 <*> 为客户端的IP地址,或使用通配符来允许多个客户端。更新修改的配置 sudo exportfs -rav启动NFS服务sudo systemctl start nfs-kernel-server --作为自启动项目sudo systemctl enable nfs-kernel-server使用showmount -e可查看当前NFS服务器的加载情况。showmount -e配置防火墙(如果需要)允许NFS通信sudo ufw all
在Debian系统上安装Docker,可以按照以下步骤操作:1.更新软件包索引:sudo apt-get update2.Install using the apt repository安装必要的软件包以允许apt通过HTTPS使用仓库:Add Docker's official GPG key:sudo apt-get updatesudo apt-get install ca-certificates curlsudo install -m 0755 -d /etc/apt/keyringssudo curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.ascsudo chmod a+r /etc/apt/keyrings/docker.ascAdd the repository to Apt sources:echo \ "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docke
1.在bash中直接使用以下命令安装qbittorrent-nox:apt install qbittorrent-nox2.常见自启动文件并设置开机自启动:nano /etc/systemd/system/qbittorrent-nox.service把以下内容复制进去:[Unit]Description=qBittorrent-noxAfter=network.target[Service]User=rootType=forkingRemainAfterExit=yesExecStart=/usr/bin/qbittorrent-nox -d[Install]WantedBy=multi-user.target按Ctrl+O保存,再按Ctrl+x退出。修改qbittorrent-nox.service文件后重新载入:systemctl daemon-reload设置开机启动:systemctl enable qbittorrent-nox启动qbittorrent-nox:systemctl start qbittorrent-nox3.安装好后,打开浏览器,输入http://ip
网站rongyi.site免费域名证书到期,更换方法记录。1.到阿里云申请三个月的免费域名证书https://yundun.console.aliyun.com/?p=cas#/certExtend/free/cn-hangzhou 下载免费域名证书包 12455375_rongyi.site_nginx.zip解压出来rongyi.site.key rongyi.site.pem放到服务器 /usr/local/nginx/conf/cert重启nginx服务
RonTon
挨踢大叔