Skip to main content

Home/ Germinus/ Group items tagged linux

Rss Feed Group items tagged

Agripino Petit Miguel

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;  }}
Eduardo Canuria

Simple-Kanban | The one file kanban board application - 0 views

  •  
    Tablero Kanban en un solo HTML.
Agripino Petit Miguel

Debugging problems with the network proxy - The Chromium Projects - 0 views

  •  
    En Chromium, realmente está en: chrome://net-internals/#proxy Muy interesante porque, a pesar de que las preferencias de proxy estaban diciendo una cosa (la configuración de KDE) y que era correcta, en realidad estaba haciendo otra... sólo desde aquí se ve la verdadera configuración que se aplica para el proxy de Chrome/Chromium
Agripino Petit Miguel

Natty - Kubuntuguide - 0 views

  • 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.
Agripino Petit Miguel

Comment #4 : Bug #661025 : Bugs : cifs-utils - 0 views

  •  
    Torwalds, Stallman, Shuttleworth,... ¡os maldigo a todos! Valiente mierda que generáis... ¡así vais a "conquistar el escritorio"! ¡Todo para desmontar una carpeta compartida por Samba! ¡Y no hablo del follón para montarla! ¿Por qué coño os habéis cargado smb4k?
1 - 7 of 7
Showing 20 items per page