Alterações nos arquivos .gconf dos usuários

Ativar vino-server por padrão

Arquivo: ~/.gconf/desktop/gnome/remote_access/%gconf.xml

Conteúdo

<?xml version="1.0"?>
<gconf>
	<entry name="enabled" type="bool" value="true"/>
</gconf>

Para desativar, troca-se o “true” por “false”.

Configurar o servidor proxy do GNOME

Aqui devem ser alterados dois arquivos. O primeiro contém as configurações do proxy e o segundo define o tipo de configuração de proxy a ser utilizada (manual, automática ou nenhuma).

Arquivo: ~/.gconf/system/http_proxy/%gconf.xml

Conteúdo

<?xml version="1.0"?>
<gconf>
        <entry name="ignore_hosts" type="list" ltype="string">
                <li type="string">
                        <stringvalue>localhost</stringvalue>
                </li>
                <li type="string">
                        <stringvalue>127.0.0.0/8</stringvalue>
                </li>
                <li type="string">
                        <stringvalue>.google.com</stringvalue>
                </li>
                <li type="string">
                        <stringvalue>.google.com.br</stringvalue>
                </li>
                <li type="string">
                        <stringvalue>.pbh</stringvalue>
                </li>
                <li type="string">
                        <stringvalue>.pbh.gov.br</stringvalue>
                </li>
        </entry>
        <entry name="port" type="int" value="3128"/>
        <entry name="host" type="string">
                <stringvalue>cache01.pbh</stringvalue>
        </entry>
        <entry name="use_http_proxy" type="bool" value="true"/>
</gconf>

No caso das escolas, o valor “cache01.pbh” deve ser substituído por “cache05.pbh”.

Arquivo: ~/.gconf/system/proxy/%gconf.xml

Conteúdo

<?xml version="1.0"?>
<gconf>
        <entry name="mode" type="string">
                <stringvalue>manual</stringvalue>
        </entry>
</gconf>

Para desabilitar o proxy e permitir o acesso direto à Internet é necessário alterar somente esse último arquivo, mudando o valor da string de “manual” para “none”.

Definir a página inicial do Epiphany

Arquivo: ~/.gconf/apps/epiphany/general/%gconf.xml

Conteúdo

<?xml version="1.0"?>
<gconf>
        <entry name="homepage" type="string">
                <stringvalue>http://intranet.educacao.pbh</stringvalue>
        </entry>
        <entry name="automatic_downloads" type="bool" value="false"/>
</gconf>

Configuração para o Empathy funcionar sem o NetworkManager

Por padrão, o Empathy pega as definições de conectividade a partir do NetworkManager. Como o NetworkManager GNOME é removido no Libertas, o Empathy fica com um comportamento errático. Para solucionar isso, basta fazer a alteração abaixo, que desvincula um software do outro.

Arquivo: ~/.gconf/apps/empathy/%gconf.xml

Conteúdo

<?xml version="1.0"?>
<gconf>
        <entry name="use_conn" type="bool" value="false"/>
        <entry name="autoconnect" type="bool" value="false"/>
</gconf>