<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Guide: clickable behind corporate proxy]]></title><description><![CDATA[<p dir="auto">Working behind proxy is sometimes so painfull ;-), i share my experience to get <code>clickable</code> working behind a corporate proxy:</p>
<ul>
<li>setup proxy env variables to <code>/etc/environment</code> file :</li>
</ul>
<pre><code>https_proxy=url:port
http_proxy=url:port
</code></pre>
<ul>
<li>execute <code>clickable setup-lxd</code> , then it will hang when trying to fetch apt updates</li>
<li>kill process, then create as sudo a file in your container file system e.g <code>/var/lib/lxd/containers/clickable-armhf/rootfs/etc/apt/apt.conf.d/01proxy</code> with proxy settings:</li>
</ul>
<pre><code>Acquire::http::Proxy "url:port";
Acquire::https::Proxy "url:port";
</code></pre>
<ul>
<li>now apt update/upgrade in your container:</li>
</ul>
<pre><code>lxc exec clickable-armhf -- apt-get update
lxc exec clickable-armhf -- apt-get upgrade
</code></pre>
<ul>
<li>install click:</li>
</ul>
<pre><code>lxc exec clickable-armhf -- apt-get install click
</code></pre>
<p dir="auto">it should work now.</p>
]]></description><link>https://forums.ubports.com/topic/452/guide-clickable-behind-corporate-proxy</link><generator>RSS for Node</generator><lastBuildDate>Sun, 19 Apr 2026 21:11:15 GMT</lastBuildDate><atom:link href="https://forums.ubports.com/topic/452.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 25 Jul 2017 08:19:14 GMT</pubDate><ttl>60</ttl></channel></rss>