edit /etc/hostname file
Redhat :
edit /etc/sysconfig/network
change the hostname = xx
- Mihir Patel.
The last version of firefox is out, but an extension that I use daily (QuickProxy) has not been updated yet. In fact, it should work but it is considered ‘not compatible’ by firefox and thus, is automatically de-activated.
The workaround (at your own risks !) is to bypass the security that enforces the compatibilty of extensions.
Be careful when testing unsupported extensions, you may want to activate them one by one ! However do not hesitate to try, I have been able to succesfully use QuickProxy this way for more than a month….
For the record, the list of all the about:config options of firefox.
Ref : http://demeringo.ovh.org/blog/
I installed eclipse 3.5 at my work place (where we access internet through an authenticated NTML proxy). I was unable to make eclipse pass through this proxy, which prevented me to install updates and additional software.
Anthony Dahanne’s describes the workaround on his blog (in french). The Apache httpclient implementation should be disabled because it doesn’t work well with NTMLv2 proxies.
For NTLMv2 Proxies, that require user name and password for access the workaround is to
In practice, edit your eclipse.ini file to append the following properties.
-Dorg.eclipse.ecf.provider.filetransfer.excludeContributors=org.eclipse.ecf.provider.filetransfer.httpclient
-Dhttp.proxyPort=8080
-Dhttp.proxyHost=myproxy
-Dhttp.proxyUser=mydomain\myusername
-Dhttp.proxyPassword=mypassword
-Dhttp.nonProxyHosts=localhost|127.0.0.1
Ref : <a target="_blank" href="http://demeringo.ovh.org/blog/?p=103">http://demeringo.ovh.org/blog/?p=103
</a>