有 52 筆資料符合您搜尋的條件
- 2023年 11月 16日, 03:03
- 版面: Queue
- 主題: pciconf -lbcevV pci0:1:0:0
- 回覆: 0
- 觀看: 80
pciconf -lbcevV pci0:1:0:0
pciconf -lbcevV pci0:1:0:0 root@am1-truenas[~]# pciconf -lbcevV pci0:1:0:0 ahci0@pci0:1:0:0: class=0x010601 rev=0x11 hdr=0x00 vendor=0x1b4b device=0x9215 subvendor=0x1b4b subdevice=0x9215 vendor = 'Marvell Technology Group Ltd.' device = '88SE9215 PCIe 2.0 x1 4-port SATA 6 Gb/s Controller' class = m...
- 2023年 11月 9日, 17:20
- 版面: Queue
- 主題: samba4 Quick configuration
- 回覆: 0
- 觀看: 34
samba4 Quick configuration
[global] dns proxy = No aio max threads = 2 max log size = 5120 load printers = No printing = bsd disable spoolss = Yes dos filemode = Yes kernel change notify = No directory name cache size = 0 server multi channel support = No nsupdate command = /usr/local/bin/samba-nsupdate -g unix charset = UTF...
- 2023年 8月 15日, 18:46
- 版面: Queue
- 主題: TrueNAS WebDAV Default Setting
- 回覆: 2
- 觀看: 2069
- 2023年 8月 15日, 18:43
- 版面: Queue
- 主題: TrueNAS WebDAV Default Setting
- 回覆: 2
- 觀看: 2069
- 2023年 5月 24日, 09:47
- 版面: Queue
- 主題: Queue Over 3days delete
- 回覆: 0
- 觀看: 984
Queue Over 3days delete
#!/bin/sh PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin QUEUEDIR="/var/spool/mqueue" RUNCHECK=`sendmail -bp -OQueueDirectory=${QUEUEDIR} | head -n 1 | grep -c empty` if [ ${RUNCHECK} = "1" ];then exit fi OLDMAILQ=`sendmail -bp -OQueueDirectory=${QUEUEDIR} | g...
- 2023年 5月 3日, 18:56
- 版面: Queue
- 主題: FreeBSD 12.3R-p4 upgrade to FreeBSD 12.4R-pX
- 回覆: 0
- 觀看: 536
FreeBSD 12.3R-p4 upgrade to FreeBSD 12.4R-pX
1.# mkdir -p /data/freebsd-update 2.# vi /usr/local/etc/freebsd-update.conf KeyPrint 800651ef4b4c71c27e60786d7b487188970f4b4169cc055784e21eb71d410cc5 ServerName update.FreeBSD.org Components world kernel UpdateIfUnmodified /etc/ /var/ /root/ /.cshrc /.profile /usr/libexec/sendmail/ MergeChanges /etc...
刪除EventLog
代碼: 選擇全部
for /F "tokens=*" %1 in ('wevtutil.exe el') DO wevtutil.exe cl "%1"
- 2023年 3月 25日, 18:56
- 版面: Queue
- 主題: TrueNAS WebDAV Default Setting
- 回覆: 2
- 觀看: 2069
TrueNAS WebDAV Default Setting
TrueNAS WebDAV Default Setting
代碼: 選擇全部
/usr/lib/python3/dist-packages/middlewared/etc_files/local/apache24/Includes/webdav.conf.mako
- 2023年 3月 15日, 16:11
- 版面: Queue
- 主題: How to Install Telnet in Windows 10
- 回覆: 0
- 觀看: 455
How to Install Telnet in Windows 10
Install Telnet Client: 安裝 Telnet用戶端程式
預設是沒有安裝 Telnet 用戶端程式,可以使用以下方式來安裝:
「伺服器管理員」: 「Telnet 用戶端」
「Server Manager」: 「Telnet Client 」
「封裝管理員」 :
「Package Manager」: pkgmgr /iu:"TelnetClient"
預設是沒有安裝 Telnet 用戶端程式,可以使用以下方式來安裝:
「伺服器管理員」: 「Telnet 用戶端」
「Server Manager」: 「Telnet Client 」
「封裝管理員」 :
「Package Manager」: pkgmgr /iu:"TelnetClient"
- 2023年 1月 13日, 18:33
- 版面: Queue
- 主題: mysql 5.7.x reset password
- 回覆: 0
- 觀看: 555
mysql 5.7.x reset password
SHOW VARIABLES LIKE 'validate_password%';
SET GLOBAL validate_password_length = 6;
SET GLOBAL validate_password_number_count = 0;
SET GLOBAL validate_password_policy = 0;
update user set authentication_string=PASSWORD("1234") where User='root';
FLUSH PRIVILEGES;
SET GLOBAL validate_password_length = 6;
SET GLOBAL validate_password_number_count = 0;
SET GLOBAL validate_password_policy = 0;
update user set authentication_string=PASSWORD("1234") where User='root';
FLUSH PRIVILEGES;