Package Details: icaclient 25.03.0.66-1

Git Clone URL: https://aur.archlinux.org/icaclient.git (read-only, click to copy)
Package Base: icaclient
Description: Citrix Workspace App (a.k.a. ICAClient, Citrix Receiver)
Upstream URL: https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html
Licenses: LicenseRef-Citrix
Conflicts: bin32-citrix-client, citrix-client
Submitter: wmarshall
Maintainer: buzo (alhirzel)
Last Packager: buzo
Votes: 182
Popularity: 1.12
First Submitted: 2011-12-08 18:49 (UTC)
Last Updated: 2025-03-31 07:37 (UTC)

Pinned Comments

buzo commented on 2021-06-26 12:42 (UTC) (edited on 2023-02-02 09:00 (UTC) by buzo)

If you cannot build because of a missing tar ball or a failed sha256 checksum validation, then the package is most likely outdated and they have removed the old version already. In this case, please click on “Flag package out-of-date”.

evanator commented on 2020-07-02 06:46 (UTC)

Found a fix for "authentication service could not be contacted"

Edit the config file under /home/username/.ICAClient\WFClient.ini and add a new line SSLCiphers=ALL save file and run "killall AuthManagerDaemon ServiceRecord selfservice storebrowse"

Relaunch Citrix and you should be fine

Latest Comments

« First ‹ Previous 1 .. 4 5 6 7 8 9 10 11 12 13 14 .. 58 Next › Last »

dedguy21 commented on 2023-06-01 16:49 (UTC) (edited on 2023-06-01 16:51 (UTC) by dedguy21)

@glenntanner3 thanks for the url

https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest11.html

The only thing else needed for the package to build correctly was to rename the downloaded tar file from linuxx64-23.3.0.32.tar.gz to icaclient-x64-23.3.0.32.tar.gz

If they keep it at current version they will need to update PKBUILD for sure.

class101 commented on 2023-06-01 16:43 (UTC)

Ok I see I have probably forked the issue.

I look at it when I go back home, Ty a lot for the feedback

glenntanner3 commented on 2023-06-01 16:29 (UTC)

@class101 i'm not discussing beta here; but both packages had the same original issue; the URL path was incorrect and it failed to download the source. This package continues to have that problem due to what 'url' is set to url='https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html'.

I have provided the corrections and a long term solution for maintaining the path based on version going forward; with the exception that, if the latest is used I didn't account for that path as I assumed it would be limited to beta.

Here is this package failing to download the source:

==> ERROR: icaclient-x64-23.3.0.32.tar.gz was not found in the build directory and is not a URL.
==> ERROR: Could not download sources.
FAILED: icaclient.stamp

class101 commented on 2023-06-01 16:19 (UTC) (edited on 2023-06-01 16:22 (UTC) by class101)

Guys keep in mind this page does not concern the beta package and buzo is not interested to here about

The state of icaclient: requires an update
The state of icaclient-beta: updated

If by chance my package is not working for you, report on the icaclient-beta page

It works here so if you got an issue is probably the cache folder of your yay or paru has downloaded loaded an incomplete archive and is now stuck with it until your clear the cache folde with the -Sc option or -Scc

To check manually your cache download folder should be in ~/.cache/paru or yay

glenntanner3 commented on 2023-06-01 16:13 (UTC)

@dedguy21 somewhat. I found an error while trying to build the packages. Then I did some testing to isolate the problem and suggest a workaround being that it isn't my package, and I don't want it to be as I do not have the time to maintain.

glenntanner3 commented on 2023-06-01 16:07 (UTC)

Food for thought; getting the path based on the version?

glennt@glenn-arch:NONE:/home/glennt
$ url='https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux'
glennt@glenn-arch:NONE:/home/glennt
$ curl -sL "$url" | grep workspace-app-for-linux-latest
                                                    <a href="/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest11.html">Citrix Workspace app 2303 for Linux</a>                                                                    
                                                    <a href="/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest6.html">Citrix Workspace app 2302 for Linux</a>                                                                    
                                                    <a href="/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest5.html">Citrix Workspace app 2212 for Linux</a>                                                                    
                                                    <a href="/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest4.html">Citrix Workspace app 2211 for Linux</a>                                                                    
                                                    <a href="/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest3.html">Citrix Workspace app 2209 for Linux</a>                                                                    
                                                    <a href="/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest-OLD1.html">Citrix Workspace app 2207 for Linux GA</a>                                                                    
                                                    <a href="/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest2.html">Citrix Workspace app 2205 for Linux</a>                                                                    
                                                    <a href="/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest.html">Citrix Workspace app 1906 for Linux</a>
glennt@glenn-arch:NONE:/home/glennt
$ pkgver=23.3.0.32
glennt@glenn-arch:NONE:/home/glennt
$ curl -sL "$url" | awk -v VER=${pkgver:0:4} -F'"' '/workspace-app-for-linux-latest/ && $0 ~ VER {print "https://www.citrix.com"$2}'
https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest11.html

dedguy21 commented on 2023-06-01 16:03 (UTC)

I've tried installing both this package, and the icaclient-beta, but getting a not found error for both. Maybe I am just dense, but is there a workaround for PKGBUILD?

Is that what @glenntanner3 is trying to write?

glenntanner3 commented on 2023-06-01 15:48 (UTC) (edited on 2023-06-01 15:50 (UTC) by glenntanner3)

Here is the URL for 23.3

https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest11.html

glennt@glenn-arch:NONE:/home/glennt
$ url='https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest11.html'
glennt@glenn-arch:NONE:/home/glennt
$ curl -sL "$url" | grep -F ".tar.gz"
      <span class="dl-type" >(.tar.gz)</span>
      <a href="javascript:void(0);" data-secureportal="false" class="ctx-dl-link toggle-direct-dl ctx-photo" data-authoreula="true" rel="//downloads.citrix.com/21784/linuxx64-23.3.0.32.tar.gz?__gda__=exp=1685638039~acl=/*~hmac=e82ae1b161c6ac5c49b6f5d8b9c99d3692d7956beeb63ee4216bde12468d31aa" id="downloadcomponent">
        filepathOrUrl: "//downloads.citrix.com/21784/linuxx64-23.3.0.32.tar.gz ",

class101 commented on 2023-06-01 11:38 (UTC) (edited on 2023-06-01 11:40 (UTC) by class101)

As a warning, the following Major change in the latest 23.0.0.58 release is possibly causing the selfservice to fail at discovering Desktop and Apps after a successful login.

It is unclear yet how to resolve, I tried a bunch of option automatically set in the working *ica file, no success yet

The issue is suspected to be connected with IPv6 and when your organisation Gateway is a fake internet host accessible with a SSL proxy with the following SSL configuration SSLProxyHost
[https://docs.citrix.com/en-us/citrix-workspace-app-for-linux/downloads/ica-settings-reference.pdf]


What’s new in Citrix 2305 (23.0.0.58) for Linux
Support for IPv6 TCP with TLS

Previously, TLS connections between Citrix Workspace app for Linux and Virtual Delivery Agents (VDAs) were supported over the IPv4 network only.

With this release, Citrix Workspace app supports TLS connections over both IPv4 and IPv6.