As of Ubuntu 11, there is no longer a ia32-libs ensemble. Because of this, old x64 packages will stop to be available on their site.
TeamViewer has since removed the x64-only download, and they only offer the i386 version.
To install TeamViewer now, it's as simple as visiting the official download...
Kernel-based Virtual Machine (KVM) is a virtualization module for the Linux kernel that turns it into a hypervisor. How can I install KVM with bridged networking, setup guest operating system as the back-end virtualization technology for non-graphic Ubuntu Linux 16.04 LTS server?
You can use KVM to run multiple operating...
For example debian 9
$ ssh -Vxx
SSH protocols 1.5/2.0, OpenSSL 0x0090700f
So what the hell is it? What’s causing it? Well, a modern operating system like Debian Jessie are packaged with OpenSSH 6.7 or newer – and OpenSSH 6.7 disables some ciphers, as per changelog http://www.openssh.com/txt/release-6.7 ...
We wonder why both ethernet and wireless are disabled. Is this machine running Network Manager?
ps aux | grep -i network
In my server, where it is running, part of the output is:
root 792 0.0 0.1 356644 9196 ? ...
So to reset the root password, you still start mySQL with --skip-grant-tables options and update the user table, but how you do it has changed.
1. Stop mysql:
systemctl stop mysqld
2. Set the mySQL environment option
systemctl set-environment MYSQLD_OPTS="--skip-grant-tables"
3. Start mysql usig the options you just set
systemctl start mysqld
4. Login as...