Take Control (SolarWinds) - Linux Viewer
Although you can initiate a Take Control (SolarWinds) connection from Windows, Mac computers, iOS and Android devices, we realize that you may want to provide support to your customers from a Linux computer.
As such, we have included a Take Control (SolarWinds) Viewer for Linux devices which deploys using the .deb (Debian packaging system) or .rpm (Red Hat Package Manager) and is available for computers running Debian, Red Hat or SUSE distributions.
For a list of tested distributions and browsers please go to Take Control (SolarWinds) Linux Viewer - Support Distributions and browsers.
To install the viewer on your Linux computer:
- Log on to the Linux computer as a local user (non-root)
- Log in to your Monitoring Dashboard
- Go to Remote Access
- Download Take Control Viewer - SolarWinds
- Unpack the downloaded *.tar.gz file
- Open a terminal
- Navigate to the extracted filesÂ’ location and run the install_takecontrol.sh command. For example:
- Enter the sudo (root) password where prompted
- Click OK in The Take Control Viewer was successfully installed dialog
A Viewer that corresponds to the Operating System of the computer you are using to access the Dashboard is automatically downloaded
The Take Control Viewer for your distribution automatically installs, along with any required dependencies
KDE Note (Post-installation)
In KDE, the user must log off and log in (or restart the computer) to complete the installation of the Take Control (SolarWinds) Viewer.
Red Hat (Pre-installation)
When testing in Red Hat we noticed that it may be necessary to add root to the sudoers file in the /etc directory before running the Take Control Viewer installer. The following example achieves this using vi to edit the sudoers file:
Open a terminal then enter the following commands:
- su and enter password to confirm
- cd /etc
- ls -l
- chmod +w sudoers
- vi sudoers
- In the User privilege specification section (or equivalent) enter:
- :wq
- chmod -w sudoers
root ALL=(ALL) ALL
Command |
Note |
---|---|
su and enter password to confirm |
Change the login sessionÂ’s owner to root |
cd /etc |
Change directory to /etc |
ls -l |
Long file directory list |
chmod +w sudoers |
Makes the sudoers file editable |
vi sudoers |
Opens the sudoers file in vi |
root ALL=(ALL) ALL |
Adds the root entry in the sudoers file with full permissions. |
:wq |
Save changes and exit vi |
chmod -w sudoers |
Makes the sudoers file read-only again |