After scouting a rather large number of potential sources, this one is working extremely well; download the .repo file for your OS and put it with the rest, and you’re in with yum or dnf!
https://copr.fedorainfracloud.org/coprs/decathorpe/syncthing/
Categories:
Tools
Linux OS-level Issues
Grub Customizer is a great GUI configurator for GRUB, currently the most common boot loader for ix86 and AMD64 hardware. The Customizer has issues compiling on some setups, especially later versions of gcc. Here’s what I found to do:
- Download grub-customizer-4.0.6.tar.gz, unpack.
ccmake .
- Resolve any missing libraries et cetera.
ccmake .
again until nothing missing.
- Look for these files:
./CMakeFiles/grub-customizer.dir/flags.make
./CMakeFiles/grubcfg-proxy.dir/flags.make
- Add
-std=gnu++11
as first item to CXX_FLAGS
in both files.
cmake .
- Again resolve any missing libraries et cetera.
cmake .
again until nothing missing.
make
sudo make install
Categories:
Linux OS-level Issues
Booting
This project:
http://www.x2go.org
appears very good.
Categories:
Linux OS-level Issues
If you need to reset the root password on a Linux box running the GRUB boot loader:
- During boot, hit Tab, and GRUB should permit you to see the boot option lines.
- Edit one of them. Replace
ro quiet splash
with rw init=/bin/bash
.
- Boot without saving the line permanently. The system will send you directly into single-user mode as root, from where you can run ‘passwd’ to change it.
Categories:
Linux OS-level Issues
This one compiles vanilla source as it installs, handles conflicts very carefully, retrieves very recent versions of many useful things including ‘curl’.
http://www.toastball.net/toast/
Categories:
Linux OS-level Issues
/etc/rc.local no longer automatically exists in many Linuxes. This was a script run at boot before any user logins, after setup. If your Linux distro uses ‘systemd’, a relatively new boot system, this may be your situation; but the functionality is still useful in many special circumstances. If it’s yours, create a file named /etc/systemd/system/rc-local.service
containing the below, and a new bash script called /etc/rc.local will run just as desired! Do be sure to set your new /etc/rc.local as executable, or you will regret it :-)
/etc/systemd/system/rc-local.service
[Unit]
Description=/etc/rc.local Compatibility
[Service]
Type=oneshot
ExecStart=/etc/rc.local
TimeoutSec=0
StandardInput=tty
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target
Categories:
Linux OS-level Issues
Arch Linux
ACL GUI for Linux
article #663, updated 4046 days ago
There is a great GUI for ACL (access control lists, fine-grained permissions) for Linux:
http://rofi.roger-ferrer.org/eiciel/
Categories:
Linux OS-level Issues
Tools
Categories:
Linux OS-level Issues
VSS for Linux
article #363, updated 4887 days ago
Here is a product, free for commercial and non-profit use, which does the job of VSS under Linux:
http://www.r1soft.com/tools/linux-hot-copy/
Categories:
VSS
Linux OS-level Issues
Lots of good instruction-sets here:
http://www.if-not-true-then-false.com/category/linux/
If you do most of EasyLife first, the “dependencies” are handled for you.
Categories:
Linux OS-level Issues