Cloned template based on fedora-40-xfce cannot download Zoom

I tried to download Zoom inside a cloned template from the fedora-40-xfce template.
First I tried to use curl (both with sudo and without) and that failed i.e. no download started in the terminal.

The workaround I used was to download Zoom in an App Qube and copy it over to the template I wanted to have it installed in.

Is there a solution for this where I download the package directly in the template I was using? Thanks!

1 Like

add -x http://127.0.0.1:8082/ parameter to curl to make it use the update proxy

1 Like

I get the following when I do that:

$ curl -x http://127.0.0.1:8082/ https://cdn.zoom.us/prod/6.3.6.6315/zoom_x86_64.rpm zoom.rpm
Warning: Binary output can mess up your terminal. Use "--output -" to tell 
Warning: curl to output it to your terminal anyway, or consider "--output 
Warning: <FILE>" to save to a file.
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

<head>
<title>500 Unable to connect</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>

<body>

<h1>Unable to connect</h1>

<p>Tinyproxy was unable to connect to the remote web server.</p>

<hr />

<p><em>Generated by <a href="https://tinyproxy.github.io/">tinyproxy</a> version 1.11.2.</em></p>

</body>

</html>
1 Like

The command is

curl -O -x http://127.0.0.1:8082/ https://cdn.zoom.us/prod/6.3.6.6315/zoom_x86_64.rpm
1 Like