Fedora 27 LXQT – Automount USB drive
Cake. # dnf -y install autofs # systemctl enable autofs # systemctl start autofs
Cake. # dnf -y install autofs # systemctl enable autofs # systemctl start autofs
‘reboot’ and ‘shutdown’ won’t work in a script, so add a fully pathed reboot or shutdown directly into root’s crontab # crontab -e Add the line to reboot at midnight everyday, shutdown at 10pm everynight 0 0 * * * …
Fedora 23,24,25,26,27 – reboot or shutdown with cron Read more »
Enable sftp ONLY # useradd dave # groupadd sftpusers # usermod -G sftpusers dave # vi /etc/ssh/sshd_config – 140G – comment out and add a line below #Subsystem sftp /usr/libexec/openssh/sftp-server Subsystem sftp internal-sftp – add to the end Match Group …
Fedora 26,27 – Enable sftp ONLY and TigerVNC server Read more »
Open a command tool Enter current passphrase in slot 0 Add new passphrase into slot 1 > su – Password: xxxxxx # cryptsetup luksAddKey /dev/sdc1 If you delete both slots…You’ve lost everything. Delete original passphrase in slot 0 # cryptsetup …
This works with thumb, SD, microSD, SSDs, and hard drives. UNIX was intentionally written to use terse commands “ls”, “su”, “cd”… So, why the F do I want to type “sudo ” before every root command on my personal machine? …
I’m looking for the Server 2.3.3 update from Oracle https://support.oracle.com/epmos/faces/ui/patch/PatchDetail.jspx?patchId=13848837 Anyone? TIA
1. From the Services menu, select OpenVPN The OpenVPN page loads 2. In the Certificate Authorities and Keys section, click the Generate root/host certificates button A Generate root/host certificates page loads 3. Enter ALL the fields and select a 2048, …
Let me guess, you’re using GCC5 and not 4.92 or less. If you’re getting this error: dynamic_fmt.o: In function `DynamicFunc__crypt_md5_to_input_raw_Overwrite_NoLen’: /home/dave/wksp/john/src/dynamic_fmt.c:4989: undefined reference to `MD5_body_for_thread’ dynamic_fmt.o: In function `DynamicFunc__crypt_md5′: /home/dave/wksp/john/src/dynamic_fmt.c:4425: undefined reference to `MD5_body_for_thread’ dynamic_fmt.o: In function `DynamicFunc__crypt_md5_in1_to_out2′: /home/dave/wksp/john/src/dynamic_fmt.c:4732: undefined …
John-The-Ripper Jumbo 1.8.0 compile/make Fails in Fedora 25, GCC5 Read more »
Lets make this easy and switch up to root: $ su – Password: Install the following files: dnf install samba samba-common samba-client system-config-samba dnf install policycoreutils-python-utils Configure SELinux to enable read/write access to shared dirs: semanage fcontext -a -t samba_share_t …
Eagle CAD complains of missing libraries > sh eagle-lin64* Ensure the following libraries are available: libssl.so.1.0.0 => not found libcrypto.so.1.0.0 => not found The fix: # cd /usr/lib64 # ln -s libssl.so.10 libssl.so.1.0.0 # ln -s libcrypto.so.10 libcrypto.so.1.0.0