<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Elgali.net - Latest Comments</title><link>http://elgalinet.disqus.com/</link><description></description><atom:link href="https://elgalinet.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Sat, 16 Nov 2013 16:43:03 -0000</lastBuildDate><item><title>Re: Install Citrix Receiver on Ubuntu 12.04/12.10</title><link>http://elgali.net/?p=12#comment-1126293029</link><description>&lt;p&gt;Thanks for your indications Elgali, they've been very usefull ;) And also thanks to Linus Newbee to share how to solve the SSL Error!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Marc</dc:creator><pubDate>Sat, 16 Nov 2013 16:43:03 -0000</pubDate></item><item><title>Re: Install Citrix Receiver on Ubuntu 12.04/12.10</title><link>http://elgali.net/?p=12#comment-1116456851</link><description>&lt;p&gt;It was kind of you to share the information, but when I see stuff like this, I decide to just boot my Windows partition when I want to use Citrix.  You would think that Canonical and Citrix would work together to get this into the Ubuntu Software Center.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Joe</dc:creator><pubDate>Sun, 10 Nov 2013 08:06:47 -0000</pubDate></item><item><title>Re: Get JRebel to autorefresh</title><link>http://elgali.net/?p=10#comment-1106756140</link><description>&lt;p&gt;Probably the resources files are not mapped with rebel.xml? Check if the files that you're updating are in a directory that is listed in rebel.xml&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arhan</dc:creator><pubDate>Sat, 02 Nov 2013 21:10:33 -0000</pubDate></item><item><title>Re: Get JRebel to autorefresh</title><link>http://elgali.net/?p=10#comment-1106434206</link><description>&lt;p&gt;Thanks arhan for the comment, when thing I have noticed (and I'm no Intellij expert by any means) is when I don't have the "Update resource On Frame Deactivation" selected I had to build the application (CTRL + F9) for JRebel to recognize that the code has changed, although I have rebel.xml generated! is there a better way to automate the process?.&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aelgali</dc:creator><pubDate>Sat, 02 Nov 2013 14:13:55 -0000</pubDate></item><item><title>Re: Get JRebel to autorefresh</title><link>http://elgali.net/?p=10#comment-1089085289</link><description>&lt;p&gt;“Update resource On Frame Deactivation” is the functionality that is provided by IntelliJ IDEA, not JRebel plug-in. In fact, this option might do more harm than good when combined with JRebel. Some of the application servers might decide to redeploy the full application when it sees that a resource is updated.&lt;/p&gt;&lt;p&gt;If you use JRebel, it is better to set the option to "Do Nothing" and code the directories to be monitored into rebel.xml configuration file -- that way you will ensure that everything could be reloaded by JRebel, plus no spurious redeploy is done to the app.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">arhan</dc:creator><pubDate>Sat, 19 Oct 2013 16:28:27 -0000</pubDate></item><item><title>Re: Install Citrix Receiver on Ubuntu 12.04/12.10</title><link>http://elgali.net/?p=12#comment-996012103</link><description>&lt;p&gt;I am having issues when trying to modify the "icaclient.postinst" file. Either using gedit or vi when opening, the result is a blank file. and this is the case for every application postinst file. I am unsure where to go from here if I am unable to modify the architecture regex.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoshBalta800</dc:creator><pubDate>Sat, 10 Aug 2013 20:07:01 -0000</pubDate></item><item><title>Re: Install Citrix Receiver on Ubuntu 12.04/12.10</title><link>http://elgali.net/?p=12#comment-965590627</link><description>&lt;p&gt;Maybe we can make one easy to use bash script of this?&lt;/p&gt;&lt;p&gt;Maybe you are willing to help...&lt;/p&gt;&lt;p&gt;# Ubuntu 12.04 LTS 64bit or higher&lt;br&gt;# Install Citrix Receiver&lt;br&gt;#&lt;br&gt;wget .../icaclient_12.1.0_amd64.deb&lt;br&gt;sudo apt-get install libmotif4 nspluginwrapper openmotif flashplugin-installer curl ia32-libs libmotif4&lt;br&gt;sudo dpkg -i icaclient_12.1.0_amd64.deb&lt;br&gt;sudo apt-get install -f&lt;br&gt;sudo ln -s /usr/share/ca-certificates/mozilla/* /opt/Citrix/ICAClient/keystore/cacerts/&lt;br&gt;# Postinstall script for dependencies&lt;br&gt;# Edit icaclient.postinst file &lt;br&gt;sudo gedit /var/lib/dpkg/info/icaclient.postinst&lt;br&gt;# Search for &lt;br&gt;echo $Arch|grep “i[0-9]86″ &amp;gt;/dev/null&lt;br&gt;# Replace it with &lt;br&gt;echo $Arch|grep -E “i[0-9]86|x86_64″ &amp;gt;/dev/null&lt;br&gt;# Run this command to reconfigure the client&lt;br&gt;sudo dpkg –configure icaclient&lt;br&gt;# your terminal should show something similar to this screen indicating that everything went OK.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Henry den Hengst</dc:creator><pubDate>Wed, 17 Jul 2013 08:29:23 -0000</pubDate></item><item><title>Re: Install Citrix Receiver on Ubuntu 12.04/12.10</title><link>http://elgali.net/?p=12#comment-886242679</link><description>&lt;p&gt;Thanks, aelgali, this was extremely useful to me!  I appreciate it.&lt;/p&gt;&lt;p&gt;Also, thanks to Hooloovoo, for the link to the forum with additional tips.&lt;/p&gt;&lt;p&gt;What worked for me was doing what aelgali said, plus installing libmotif4, plus copying over ALL the security certificates.  (Ubuntu 12.10)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Greatful CitrixUser</dc:creator><pubDate>Mon, 06 May 2013 03:50:36 -0000</pubDate></item><item><title>Re: GWT Designer Eclipse plugin in  Ubuntu 12.04</title><link>http://elgali.net/?p=88#comment-883177687</link><description>&lt;p&gt;This problem fixed? Really? I still get that error.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hiroya</dc:creator><pubDate>Fri, 03 May 2013 05:38:29 -0000</pubDate></item><item><title>Re: Install Citrix Receiver on Ubuntu 12.04/12.10</title><link>http://elgali.net/?p=12#comment-867932151</link><description>&lt;p&gt;See also:&lt;/p&gt;&lt;p&gt;&lt;a href="https://help.ubuntu.com/community/CitrixICAClientHowTo" rel="nofollow noopener" target="_blank" title="https://help.ubuntu.com/community/CitrixICAClientHowTo"&gt;https://help.ubuntu.com/com...&lt;/a&gt;&lt;br&gt;which should give more help for each version of Ubuntu (feel free to improve it with your tips!)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hooloovoo</dc:creator><pubDate>Fri, 19 Apr 2013 03:44:57 -0000</pubDate></item><item><title>Re: Install Citrix Receiver on Ubuntu 12.04/12.10</title><link>http://elgali.net/?p=12#comment-801608835</link><description>&lt;p&gt;I am a newbe on linux and ubuntu. But I got it to work. :-)&lt;/p&gt;&lt;p&gt;I read in some forums how to get Citrix work on my Dell Mini with the Firefox browser in Ubuntu 12.10 32 bit.&lt;/p&gt;&lt;p&gt;Here is how I did to get it work:&lt;/p&gt;&lt;p&gt;Follow the first instructions in this thread. Then get the certificates to work.&lt;/p&gt;&lt;p&gt;1. First you need to download the ica client for your distibution (same link as above in the threas): &lt;a href="https://www.citrix.com/English/ss/downloads/details.asp?downloadId=2323812&amp;amp;productId=1689163#top" rel="nofollow noopener" target="_blank" title="https://www.citrix.com/English/ss/downloads/details.asp?downloadId=2323812&amp;amp;productId=1689163#top"&gt;https://www.citrix.com/Engl...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;2. Open the Terminal and change to the directory where you have downloaded the client (in my case the 32 bit .deb version) icaclient-12.1.0_i386.deb: cd Downloads&lt;/p&gt;&lt;p&gt;3. Install icaclient: sudo dpkg -i icaclient-12.1.0_i386.deb&lt;/p&gt;&lt;p&gt;Now the Citrix Client is in place. (The error messages and the solutions of that in this thread I did not have to consider. It worked anyway. I suppose updates have corrected these kind of errors which means the install is simpler than this thread says.)&lt;/p&gt;&lt;p&gt;Now skip to the last part. The problem with the SSL Error. You just have to get the certificates right.&lt;/p&gt;&lt;p&gt;4. Use the command in the terminal to copy one certificate file: sudo cp /usr/share/ca-certificates/mozilla/Thawte_Premium_Server_CA.crt /opt/Citrix/ICAClient/keystore/cacerts/&lt;/p&gt;&lt;p&gt;5. Close Firefox&lt;/p&gt;&lt;p&gt;Still I got the SSL Error after performing this command. So I searched the Internet for more info and found another page which said that there are many certificates that is needed (check the /usr/share/ca-certificates/mozilla/ folder and see for your self. The command in step 4 just copies one certificate file. So I followed that instruction and got it all to work. The instruction can be found in the following link but I also write the command under step 6. &lt;a href="https://help.ubuntu.com/community/CitrixICAClientHowTo" rel="nofollow noopener" target="_blank" title="https://help.ubuntu.com/community/CitrixICAClientHowTo"&gt;https://help.ubuntu.com/com...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;6. Link all certificates (not just the Thawte_Premium_Server_CA.crt certificate) with command: sudo ln -s /usr/share/ca-certificates/mozilla/* /opt/Citrix/ICAClient/keystore/cacerts/&lt;/p&gt;&lt;p&gt;I am not quite sure what the ln command does but as I understand it, it is some kind of link. I suppose it would work to copy all as wel but since this worked for me I didn't bother.&lt;/p&gt;&lt;p&gt;7. You will get a message that the Thawte_Premium_Server_CA.crt aelready exists and that is correct since you made a copy of just that certificate in step 4.&lt;/p&gt;&lt;p&gt;It should all work. It did/does for me.&lt;/p&gt;&lt;p&gt;Hope it is of some help. It would be nice if the citrix client could be found in the Ubuntu Software Center and could easily be installed from there. There could also be a package of certificates to be downloaded and to be placed in the certificates folder or an installation file that did this for you. As a Mac user this i somewhat more complex than I am use to.&lt;/p&gt;&lt;p&gt;Thank you&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Linus Newbee</dc:creator><pubDate>Sat, 16 Feb 2013 12:51:35 -0000</pubDate></item><item><title>Re: Install Citrix Receiver on Ubuntu 12.04/12.10</title><link>http://elgali.net/?p=12#comment-786984129</link><description>&lt;p&gt;I have same problem with Julian and yes its 64 bit as cant even install 32bit version.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hate Citrix</dc:creator><pubDate>Sat, 02 Feb 2013 18:15:39 -0000</pubDate></item><item><title>Re: Install Citrix Receiver on Ubuntu 12.04/12.10</title><link>http://elgali.net/?p=12#comment-786466681</link><description>&lt;p&gt;Will 12.1.0 fix the fan issue if someone has a lenovo thinkpad t520?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ninja</dc:creator><pubDate>Fri, 01 Feb 2013 23:30:37 -0000</pubDate></item><item><title>Re: Install Citrix Receiver on Ubuntu 12.04/12.10</title><link>http://elgali.net/?p=12#comment-783402173</link><description>&lt;p&gt;thankx!!!! finally i got a working 12.1.0 64bit client&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">pokengx</dc:creator><pubDate>Wed, 30 Jan 2013 12:00:22 -0000</pubDate></item><item><title>Re: GWT Designer Eclipse plugin in  Ubuntu 12.04</title><link>http://elgali.net/?p=88#comment-778845764</link><description>&lt;p&gt;Tested on Ubuntu 12.10 x64. The Workaround 2 works with me, but don't forget to:&lt;br&gt;- remove libwebkit-1.0-0 using 'sudo apt-get install libwebkitgtk-1.0-0'&lt;br&gt;- add -Dorg.eclipse.swt.internal.gtk.cairoGraphics=false in eclipse.ini if the Designer only renders frames.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Emmanuel Castro</dc:creator><pubDate>Sat, 26 Jan 2013 07:38:51 -0000</pubDate></item><item><title>Re: GWT Designer Eclipse plugin in  Ubuntu 12.04</title><link>http://elgali.net/?p=88#comment-777559901</link><description>&lt;p&gt;Ubuntu 12.10 64bit, Eclipse Juno, workaround 2 worked. Thanks a lot.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">softnado</dc:creator><pubDate>Fri, 25 Jan 2013 01:52:32 -0000</pubDate></item><item><title>Re: Install Citrix Receiver on Ubuntu 12.04/12.10</title><link>http://elgali.net/?p=12#comment-776836969</link><description>&lt;p&gt;hi, did you make sure that you've downloaded the correct 64bit ica client?  icaclient_12.1.0_amd64.deb&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aelgali</dc:creator><pubDate>Thu, 24 Jan 2013 10:55:34 -0000</pubDate></item><item><title>Re: Install Citrix Receiver on Ubuntu 12.04/12.10</title><link>http://elgali.net/?p=12#comment-771664740</link><description>&lt;p&gt;Thanks for the instructions but I can't get it to work.  When I run&lt;/p&gt;&lt;p&gt;			sudo apt-get install -f&lt;/p&gt;&lt;p&gt;it just removed the icaclient package.  Dependencies can't be installed due to no available packages for nswrapperviewer and ia32-libs-multiarch.&lt;/p&gt;&lt;p&gt;On Ubuntu 12.10 64-bit&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Julian</dc:creator><pubDate>Fri, 18 Jan 2013 06:31:05 -0000</pubDate></item><item><title>Re: GWT Designer Eclipse plugin in  Ubuntu 12.04</title><link>http://elgali.net/?p=88#comment-724188740</link><description>&lt;p&gt;I've not tested it with Ubuntu 12.10, but seems like someone was able to get it to work, plz see to &lt;a href="http://askubuntu.com/questions/221893/gwt-google-web-toolkit-designer-not-working-on-ubuntu-12-10" rel="nofollow noopener" target="_blank" title="http://askubuntu.com/questions/221893/gwt-google-web-toolkit-designer-not-working-on-ubuntu-12-10"&gt;http://askubuntu.com/questi...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aelgali</dc:creator><pubDate>Fri, 30 Nov 2012 17:12:43 -0000</pubDate></item><item><title>Re: GWT Designer Eclipse plugin in  Ubuntu 12.04</title><link>http://elgali.net/?p=88#comment-718892928</link><description>&lt;p&gt;Has someone tested it with Ubuntu 12.10? Both workarounds are not working for me on Ubuntu 12.10 :(&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mlux</dc:creator><pubDate>Sun, 25 Nov 2012 14:26:12 -0000</pubDate></item><item><title>Re: GWT Designer Eclipse plugin in  Ubuntu 12.04</title><link>http://elgali.net/?p=88#comment-606949568</link><description>&lt;p&gt;Workaround 2 worked for me... Running Kubuntu 64bit and Eclipse Juno&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Christian</dc:creator><pubDate>Wed, 01 Aug 2012 21:57:28 -0000</pubDate></item><item><title>Re: GWT Designer Eclipse plugin in  Ubuntu 12.04</title><link>http://elgali.net/?p=88#comment-574497412</link><description>&lt;p&gt;Thank you very much! this info too it's useful to ZK Studio under Ubuntu 12.04 ;)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Antonino</dc:creator><pubDate>Mon, 02 Jul 2012 14:31:19 -0000</pubDate></item><item><title>Re: GWT Designer Eclipse plugin in  Ubuntu 12.04</title><link>http://elgali.net/?p=88#comment-569470492</link><description>&lt;p&gt;Did workaround 1. removal of libwebkitgtk also removed my installation of eclipse 3.7 and gimp 2.6. I just re-installed eclipse 3.7 using ubuntu software center and now Window Builder works. Window Builder is the designer that comes built in with the gwt eclipse plugin. Thanks for the fix.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tborja</dc:creator><pubDate>Wed, 27 Jun 2012 20:41:44 -0000</pubDate></item><item><title>Re: GWT Designer Eclipse plugin in  Ubuntu 12.04</title><link>http://elgali.net/?p=88#comment-564043882</link><description>&lt;p&gt;you're most welcome&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aelgali</dc:creator><pubDate>Thu, 21 Jun 2012 19:34:13 -0000</pubDate></item><item><title>Re: GWT Designer Eclipse plugin in  Ubuntu 12.04</title><link>http://elgali.net/?p=88#comment-564043748</link><description>&lt;p&gt;you're most welcome&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aelgali</dc:creator><pubDate>Thu, 21 Jun 2012 19:34:00 -0000</pubDate></item></channel></rss>