by ray | Aug 13, 2021 | Linux / Ubuntu
After trying sudo apt-get update –fix-missing and sudo dpkg –configure -a and sudo apt-get install -f the problem of a broken package still exist the solution is to edit the dpkg status file manually. $ sudo nano...
by ray | Aug 11, 2021 | Linux / Ubuntu
vpnc replaces the legacy Cisco VPN client, which used IPSec and thus required a password for a group. Do you need to use Cisco AnyConnect? If you need to use the newer Cisco Anyconnect client, you can install openconnect on Ubuntu using sudo apt-get install...
by ray | Aug 11, 2021 | Linux / Ubuntu
Run sudo apt-get install network-manager-vpnc network-manager-vpnc-gnome Then open network manager and add a new VPN, it should show Cisco Compatible VPN in your list now.
by ray | Aug 11, 2021 | Linux / Ubuntu
You generate an SSH key through macOS by using the Terminal application. Once you upload a valid public SSH key, the Triton Compute Service uses SmartLogin to copy the public key to any new SmartMachine you provision. Joyent recommends RSA keys because the node-manta...
by ray | Aug 11, 2021 | Linux / Ubuntu
You can use following commands for the same: Method 1 (md5, sha256, sha512) openssl passwd -6 -salt xyz yourpass Note: passing -1 will generate an MD5 password, -5 a SHA256 and -6 SHA512 (recommended) Method 2 (md5, sha256, sha512)...
by ray | Aug 11, 2021 | Linux / Ubuntu
echo will normally output a newline, which is suppressed with -n. Try this: echo -n foobar | sha256sum