Create a .deb package from source files
If your build from source is successful, you can make a Debian (Ubuntu/Kubuntu) package (.deb) for future use:
Install package tools:
sudo apt-get install checkinstall
Rebuild package using "checkinstall":
cd /path/to/extracted/package
./configure
sudo make
sudo checkinstall
Keep the resulting ".deb" file for future use. It can later be installed using:
sudo dpkg -i packagename.deb
Note: These are basic instructions that may not always work. Some packages require additional dependencies and optional parameters to be specified in order to build them successfully. More info about .deb package structure can be found here.
Microsoft Awards KEMP With Gold Communications Competency - 0 views
NoBlogDefFound: Jolokia + Highcharts = JMX for human beings - 0 views
-
By default the MBeanServer exposes itself via RMI, which is certainly not the top XXI century protocol... The second drawback of JMX lies on the client side. JConsole, although not terrible, has very limited functionality. If we want to present our JMX-enabled application to the customer, showing JConsole as a client is a bit embarrassing. It is capable of showing graphs, but you cannot display more than one attribute at the same composite graph and you also can't observe attributes from different MBeans at the same time. Last but not least, again, we're living in the XXI century, Swing client? Weird RMI port? What about Web 2.0 rave? Knowing how much I love charts (and how data visualization is important for diagnosing and correlating facts) I felt really disappointed by JConsole capabilites. And the only rival of JConsole seems dead.
Installing Sun Java 6 on Ubuntu 11.10 - Oneiric Oclrot | Bhaveshnande's Blog - 1 views
Proxy Auto Config for Firefox (PAC) @ Calomel.org - Open Source Research and Reference - 0 views
-
Dado que myIpAddress(), en linux, siempre devuelve 127.0.0.1, la forma que se me ha ocurrido de detectar que estoy en la red del trabajo es emplear isResolvable() con el nombre del proxy: function FindProxyForURL(url, host) {// variable strings to returnvar proxy_yes = "PROXY proxy.germinus.com:8080";var proxy_no = "DIRECT"; // alert("Local IP address is: " + myIpAddress()); // Proxy if PC is on local LAN if (isResolvable("proxy.germinus.com")) {// if (isInNet(myIpAddress(), "192.168.4.0", "255.255.248.0")) { // OJO!!! myIpAddress() siempre devuelve 127.0.0.1 en Linux // localhost;127.0.0.0/8;*.local;*.lab.germinus.com;172.16.0.0/16;192.168.*;*.local.*;www.grupogesfor.com;www.gesfor.es;cmmijira.gesfor.es if ((host == "localhost") || (shExpMatch(host, "localhost.*")) || (host == "127.0.0.1")) { return proxy_no; } if (shExpMatch(url, "http://*.lab.germinus.com")) { return proxy_no; } if (isInNet(host, "172.16.0.0", "255.255.255.0")) { return proxy_no; } if (isInNet(host, "192.168.0.0", "255.255.248.0")) { return proxy_no; } if (shExpMatch(url, "http://cmmijira.gesfor.es*")) { return proxy_no; } return proxy_yes; } else { return proxy_no; }}
Natty - Kubuntuguide - 0 views
DiarioLinux » Upstart: una introducción para los viejos rockeros de init - 2 views
1 - 7 of 7
Showing 20▼ items per page