Skip to main content

Zoiper Linux Installation and Configuration


Zoiper Linux Installation and Configuration
Installation instructions
·         After the download prompt appears, save the file and wait for it download successfully.

·         

·         

·         Next go to your downloads directory and find the Zoiper installer .tar.gz archive.

·         Extract it to the current directory (or a directory of your choice).

·         Open the new directory.

·         There will be two executable files for 32bit and 64bit versions.

·         Click the key combination CTRL + L (on Ubuntu) to select the current working directory.

·         Open a new terminal.

·         Change the directory in the terminal with the following command.
cd current-working-directory
Then execute your preferred Zoiper installer version (32bit or 64bit).
You need to have root privileges in order to start the installation.

·         Type in your user password.

·         The Zoiper installer should appear. Click "Forward" to continue with the installation.

·         Read the license agreement and click "Forward" after accepting the agreement.

·         Select which components to be included.

·         Select an installation directory.

·         The setup is now ready to begin the installation. Click "Forward" to continue.

·         Wait while the Zoiper installation finishes.

·         The installation is complete. Click "Finish" to launch Zoiper.
Note : To uninstall we can use below commands.
sudo apt-get --purge remove <programname>
sudo apt-get remove <programname>

Comments

Popular posts from this blog

IBM iAccess for windows 7.1 "a system restart is pending" error

 IBM iAccess for windows 7.1 "a system restart is pending" error HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager 1. Look for the following key:  PendingFileRenameOperations or   FileRenameOperations ** 2. Right-click ->  Rename . 3. Add a prefix ### and press Enter. 4. Close regedit and attempt the installation.  Note:  Make sure to go back and remove the ### prefix. The installation should continue.

Webex always using Microphone

 Webex always using Microphone 1). Navigate to Webex settings 2). Devices - Use Ultrasound 3). Remove ticket "Use Ultrasound"

Your organization manages updates on this PC

 Your organization manages updates on this PC We can disable updates from SCCM/WSUS for time being by using below command $currentWU = Get-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” | select -ExpandProperty UseWUServer Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value 0 Restart-Service wuauserv Once required updates are installed on Laptop switch back to previous settings Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value $currentWU Restart-Service wuauserv