Skip to main content

How to install the Citrix client on Ubuntu 22.04

 https://kangaroobyte.com/how-to-install-the-citrix-client-on-ubuntu-22-04-20220516-265/

 

Install the tar.gz instead

You’ll need to be familiar with the terminal and basic commands. You will not need root access to install this.

  1. From the Citrix Workspace download page in the ‘tarball package’ section download the latest x86_64 tar.gz.
  2. Open a terminal
  3. Get ready to install it:
    1. Go to the directory you downloaded it to: cd Downloads (or whatever directory you downloaded it to).
    2. Make a temporary directory: mkdir icaclient
    3. Go to that directory: cd icaclient
    4. Extract the tar.gz: tar -zxvf ../icaclient*.tar.gz
  4. Start the setup:
    1. Run the setup: ./setupwfc
    2. In the setup answer 1 to install, accept the default install location then no to GStreamer.
    3. Once it takes you back to the menu you can select 3 to quit.
  5. You now need to add some additional SSL certificates:
    1. cd ~/ICAClient/linuxx64/keystore/cacerts
    2. ln -s /usr/share/ca-certificates/mozilla/* .
    3. c_rehash .

 

Comments

Popular posts from this blog

WSO2 API - M client development

  Write a Client Application Using the SDK ¶ Follow the steps in the  Quick Start Guide , to deploy the sample API, subscribe and generate keys. Info Access Token Once the keys are generated, copy the access token. You can use this token to invoke APIs that you subscribe to using the same application. Go to the Developer Portal. Select your API and  download the SDK for Java . In this example, you would have downloaded the  PizzaShackAPI_1.0.0_java.zip  file. This file name includes the API name, version, and language of the SDK. Unzip the  PizzaShackAPI_1.0.0_java.zip  file. Expand to see the folder structure of the unzipped file... Build the SDK using maven  . When it’s done, you can include this SDK as a dependency in your software project. Details of this maven dependency are included in the README.md file. Expand to view Maven dependency < dependency > < groupId > org.wso2 </ groupId > < artifactId ...

Inversion of Control - Dependency Injection

 Using net beans 8.02 and java 8 1. create java project  2. create 3 class files  --------------------------------------------------------------------------------------------------- 2.1 Car File       public class Car {     private String make;     private String model;     private int year;     private Engine engine; /*Dependency Injection by Constructor*/ public Car(String make,String model,int year,Engine engine){     this.engine=engine;     this.model=model;     this.make=make;     this.year=year;     }     public void setMake(String make){     this.make=make; } public String getMake(){     return make; } public void setModel(String model){     this.model=model; } public String getModel(){     return model; } public void setYear(int year){     this.year=year; } public int getYear(){     retu...