<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Arquivos google - Remontti</title>
	<atom:link href="https://blog.remontti.com.br/tag/google/feed" rel="self" type="application/rss+xml" />
	<link>https://blog.remontti.com.br/tag/google</link>
	<description>rudimar@remontti</description>
	<lastBuildDate>Fri, 27 May 2022 15:00:22 +0000</lastBuildDate>
	<language>pt-BR</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://blog.remontti.com.br/wp-content/uploads/2024/09/icone-rr-80x80.png</url>
	<title>Arquivos google - Remontti</title>
	<link>https://blog.remontti.com.br/tag/google</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Aprenda instalar o Jitsi Meet, uma ferramenta de videoconferências de código aberto</title>
		<link>https://blog.remontti.com.br/6432</link>
					<comments>https://blog.remontti.com.br/6432#comments</comments>
		
		<dc:creator><![CDATA[Rudimar Remontti]]></dc:creator>
		<pubDate>Fri, 25 Mar 2022 19:16:55 +0000</pubDate>
				<category><![CDATA[Dicas]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutoriais]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google meet]]></category>
		<category><![CDATA[jitsi]]></category>
		<category><![CDATA[letsencrypt]]></category>
		<category><![CDATA[meet]]></category>
		<category><![CDATA[meeting]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[videoconferências]]></category>
		<category><![CDATA[zoom]]></category>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=6432</guid>

					<description><![CDATA[<p>Que tal ter o seu próprio &#8220;Zoom ou Google Meet&#8221;? Neste tutorial vamos aprender instalar o Jitsi Meet de forma simples para você poder criar seu próprio servidor de videoconferências. Jitsi é uma coleção&#46;&#46;&#46;</p>
<p>O post <a href="https://blog.remontti.com.br/6432">Aprenda instalar o Jitsi Meet, uma ferramenta de videoconferências de código aberto</a> apareceu primeiro em <a href="https://blog.remontti.com.br">Remontti</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Que tal ter o seu próprio &#8220;Zoom ou Google Meet&#8221;? Neste tutorial vamos aprender instalar o Jitsi Meet de forma simples para você poder criar seu próprio servidor de videoconferências.</p>
<p><img fetchpriority="high" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2022/03/jitsi-debian.png" alt="" width="720" height="340" class="alignnone size-full wp-image-6467" srcset="https://blog.remontti.com.br/wp-content/uploads/2022/03/jitsi-debian.png 720w, https://blog.remontti.com.br/wp-content/uploads/2022/03/jitsi-debian-300x142.png 300w, https://blog.remontti.com.br/wp-content/uploads/2022/03/jitsi-debian-520x245.png 520w" sizes="(max-width: 720px) 100vw, 720px" /></p>
<p><strong><a href="https://meet.jit.si/" rel="noopener" target="_blank">Jitsi</a></strong> é uma coleção de projetos de <a href="https://github.com/jitsi/handbook" rel="noopener" target="_blank">código aberto</a> que fornecem recursos de videoconferência de última geração que são seguros, fáceis de usar e fáceis de hospedar.</p>
<h3>Requerimentos</h3>
<p>Debian 11 (Bullseye) 64 bits <strong><a href="https://blog.remontti.com.br/5792" rel="noopener" target="_blank">instalação mínima</a></strong> pronta<br />
Configurado em seu <a href="https://blog.remontti.com.br/5958" rel="noopener" target="_blank"><strong>DNS</strong> autoritativo</a> um <strong>subdomínio</strong> exemplo &#8220;<em>meet.remontti.com.br</em>&#8221; apontado para o IPv4/6 do seu servidor.</p>
<h3>Ajustes</h3>
<p>Tenha seu servidor atualizado! <em>(E repita isso uma vez por mês após)</em></p>
<pre class="remontti-code"># apt update; apt upgrade</pre>
<p>Nesta instalação estarei utilizando como exemplo &#8220;meet.remontti.com.br&#8221;, ajuste sempre pelo seu. </p>
<p>Ajuste o nome do servidor:</p>
<pre class="remontti-code">hostnamectl set-hostname meet.remontti.com.br</pre>
<pre class="remontti-code">vim /etc/hosts</pre>
<p>Adicione o IP Domínio de acordo com seu DNS, exemplo:</p>
<pre class="remontti-code-plain">255.200.200.200 meet.remontti.com.br</pre>
<p>Caso esteja utilizando um IP com NAT terá que ter as portas 80/tcp 443/tcp 4443/tcp 10000/udp 3478/udp 5349/tcp abertas/redirecionadas para o IP do seu servidor.</p>
<p>Instale alguns pacotes básicos que serão necessários:</p>
<pre class="remontti-code"># apt install apt-transport-https gnupg2 curl wget</pre>
<h3>Instalando Jitsi</h3>
<p>Vamos adicionar o repositório oficial do jitsi (stable)</p>
<pre class="remontti-code"># echo &#039;deb https://download.jitsi.org stable/&#039; &gt; /etc/apt/sources.list.d/jitsi-stable.list 
# wget -qO - https://download.jitsi.org/jitsi-key.gpg.key  | apt-key add - </pre>
<p>Instale o mesmo</p>
<pre class="remontti-code"># apt update
# apt install jitsi-meet</pre>
<p>Informe seu domíno:<br />
<img decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_1.png" alt="" width="1107" height="482" class="alignnone size-full wp-image-6433" srcset="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_1.png 1107w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_1-300x131.png 300w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_1-1024x446.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_1-768x334.png 768w" sizes="(max-width: 1107px) 100vw, 1107px" /><br />
Selecione <em>Generate a net self-signed certificate</em><br />
<img decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_2.png" alt="" width="1880" height="533" class="alignnone size-full wp-image-6434" srcset="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_2.png 1880w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_2-300x85.png 300w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_2-1024x290.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_2-768x218.png 768w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_2-1536x435.png 1536w" sizes="(max-width: 1880px) 100vw, 1880px" /><br />
Agora instale o certbot para gerar os certificados com lets encript.</p>
<pre class="remontti-code"># apt install certbot</pre>
<p>Gere um certificado Let&#8217;s Encrypt, basta executar:</p>
<pre class="remontti-code">/usr/share/jitsi-meet/scripts/install-letsencrypt-cert.sh</pre>
<pre class="remontti-code-plain">-------------------------------------------------------------------------
This script will:
- Need a working DNS record pointing to this machine(for domain meet.remontti.com.br)
- Download certbot-auto from https://dl.eff.org to /usr/local/sbin
- Install additional dependencies in order to request Let’s Encrypt certificate
- If running with jetty serving web content, will stop Jitsi Videobridge
- Configure and reload nginx or apache2, whichever is used
- Configure the coturn server to use Let&#039;s Encrypt certificate and add required deploy hooks
- Add command in weekly cron job to renew certificates regularly

You need to agree to the ACME server&#039;s Subscriber Agreement (https://letsencrypt.org/documents/LE-SA-v1.1.1-August-1-2016.pdf) 
by providing an email address for important account notifications
Enter your email and press [ENTER]: noc@remontti.com.br
Saving debug log to /var/log/letsencrypt/letsencrypt.log
Plugins selected: Authenticator webroot, Installer None
Account registered.
Requesting a certificate for meet.remontti.com.br
Performing the following challenges:
http-01 challenge for meet.remontti.com.br
Using the webroot path /usr/share/jitsi-meet for all unmatched domains.
Waiting for verification...
Cleaning up challenges
Running deploy-hook command: /etc/letsencrypt/renewal-hooks/deploy/0000-coturn-certbot-deploy.sh
Output from deploy-hook command 0000-coturn-certbot-deploy.sh:
Configuring turnserver


IMPORTANT NOTES:
 - Congratulations! Your certificate and chain have been saved at:
   /etc/letsencrypt/live/meet.remontti.com.br/fullchain.pem
   Your key file has been saved at:
   /etc/letsencrypt/live/meet.remontti.com.br/privkey.pem
   Your certificate will expire on 2022-06-22. To obtain a new or
   tweaked version of this certificate in the future, simply run
   certbot again. To non-interactively renew *all* of your
   certificates, run &quot;certbot renew&quot;
 - If you like Certbot, please consider supporting our work by:

   Donating to ISRG / Let&#039;s Encrypt:   https://letsencrypt.org/donate
   Donating to EFF:                    https://eff.org/donate-le

Configuring nginx</pre>
<p>Crie um scrip para renovação do certificado</p>
<pre class="remontti-code"># mkdir /root/scripts/
# vim /root/scripts/renova-certificado</pre>
<pre class="remontti-code-plain">
#!/bin/bash
# Pare o serviço web
/usr/bin/systemctl stop nginx
# Aguarda 10 seg
sleep 10
# Renova o certificado
/usr/bin/certbot renew -q
# Aguarda o certificado renovar
sleep 30
# Inicie o serviço web
/usr/bin/systemctl restart nginx
# Reinicie os serviços
/usr/bin/systemctl systemctl restart prosody jicofo jitsi-videobridge2</pre>
<p>Adicione ao cron para ser executado umas vez por semana toda às 3h.</p>
<pre class="remontti-code"># chmod +x /root/scripts/renova-certificado
# echo &#039;00 30   1 * *   root    /root/scripts/renova-certificado&#039; &gt;&gt; /etc/crontab</pre>
<p>Reinicie o cron para ler a nova tarefa.</p>
<pre class="remontti-code"># systemctl restart cron</pre>
<p>Systemd/Limits: As implantações padrão em sistemas que usam systemd terão valores padrão baixos para processos máximos e arquivos abertos. Se a ponte usada espera um número maior de participantes, os valores padrão precisam ser ajustados (os valores padrão são bons para menos de 100 participantes).<br />
Se achar necessário aumente estes valores:</p>
<pre class="remontti-code"># echo &#039;DefaultLimitNOFILE=65000&#039; &gt;&gt; /etc/systemd/system.conf
# echo &#039;DefaultLimitNPROC=65000&#039; &gt;&gt; /etc/systemd/system.conf
# echo &#039;DefaultTasksMax=65000&#039; &gt;&gt; /etc/systemd/system.conf</pre>
<p>Reinicie o daemon</p>
<pre class="remontti-code"># systemctl daemon-reload</pre>
<p>Verifique se os valores foram alterados</p>
<pre class="remontti-code"># systemctl show --property DefaultLimitNPROC
# systemctl show --property DefaultLimitNOFILE
# systemctl show --property DefaultTasksMax</pre>
<p>Reinicie o jitsi</p>
<pre class="remontti-code"># systemctl status jitsi-videobridge2</pre>
<pre class="remontti-code"># cat /proc/`cat /var/run/jitsi-videobridge/jitsi-videobridge.pid`/limits</pre>
<p>Veja se <em>Max processes</em> e <em>Max open files</em> estão com <em>limit: 65000</em></p>
<pre class="remontti-code-plain">Limit                     Soft Limit           Hard Limit           Units     
...
Max processes             65000                65000                processes
Max open files            65000                65000                files
...
</pre>
<p>Neste momento seu servidor já esta rodando de forma anônima, onde qualquer um pode criar já uma sala de reunião.<br />
<img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11.png" alt="" width="1273" height="858" class="alignnone size-full wp-image-6459" srcset="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11.png 1273w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11-300x202.png 300w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11-1024x690.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11-768x518.png 768w" sizes="auto, (max-width: 1273px) 100vw, 1273px" /></p>
<p>Porém é possível permitir que apenas usuários autenticados criem novas salas de conferência. Sempre que uma nova sala estiver prestes a ser criada, o Jitsi Meet solicitará um nome de usuário e senha. Depois que a sala for criada, outras pessoas poderão ingressar no domínio anônimo. </p>
<pre class="remontti-code"># vim /etc/prosody/conf.avail/meet.remontti.com.br.cfg.lua</pre>
<p>Localize <strong>authentication</strong> e altere <strong>anonymous</strong> para <strong>internal_hashed</strong>:</p>
<pre class="remontti-code-plain">authentication = &quot;anonymous&quot;</pre>
<p>Para</p>
<pre class="remontti-code-plain">authentication = &quot;internal_hashed&quot;</pre>
<p>Descomente:</p>
<pre class="remontti-code-plain">https_ports = { };</pre>
<p>Ainda no mesmo arquivo adicione as linhas a baixo ante de <em>&#8220;&#8211; Proxy to jicofo&#8217;s user JID&#8230;&#8221;</em><br />
<strong>OBS:</strong> Não é necessário você criar uma entra &#8220;guest.meet&#8221; em seu DNS.</p>
<pre class="remontti-code-plain">VirtualHost &quot;guest.meet.remontti.com.br&quot;
    authentication = &quot;anonymous&quot;
    c2s_require_encryption = false</pre>
<p>Agora em /etc/jitsi/meet/SEUDOMINO-config.js faça:</p>
<pre class="remontti-code"># vim /etc/jitsi/meet/meet.remontti.com.br-config.js</pre>
<p>Localize anonymousdomain, vai estar comentada com &#8220;//&#8221;, remova o comentário e adicione seu &#8220;guest.meet.remontti.com.br&#8221;.</p>
<pre class="remontti-code-plain">// anonymousdomain: &#039;guest.example.com&#039;,</pre>
<p>Ficando</p>
<pre class="remontti-code-plain">anonymousdomain: &#039;guest.meet.remontti.com.br&#039;,</pre>
<p>Em jicofo.conf será necessário fazer os ajustes para autenticação.</p>
<pre class="remontti-code"># vim /etc/jitsi/jicofo/jicofo.conf</pre>
<p>Adicione em <em>jicofo { &#8230; } </em></p>
<pre class="remontti-code-plain">
  authentication: {
    enabled: true
    type: XMPP
    login-url: jitsi-meet.example.com
 }</pre>
<p>Ficando assim:</p>
<pre class="remontti-code-plain">jicofo {
  authentication: {
    enabled: true
    type: XMPP
    login-url: meet.remontti.com.br
 }
  xmpp: {
    client: {
      client-proxy: focus.meet.remontti.com.br
    }
    trusted-domains: [ &quot;recorder.meet.remontti.com.br&quot; ]
  }
  bridge: {
    brewery-jid: &quot;JvbBrewery@internal.auth.meet.remontti.com.br&quot;
  }
}</pre>
<p>Reinicie os serviços</p>
<pre class="remontti-code"># systemctl restart prosody jicofo jitsi-videobridge2</pre>
<p>Agora ao criar uma nova reunião<br />
<img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_3.png" alt="" width="1228" height="678" class="alignnone size-full wp-image-6444" srcset="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_3.png 1228w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_3-300x166.png 300w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_3-1024x565.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_3-768x424.png 768w" sizes="auto, (max-width: 1228px) 100vw, 1228px" /><br />
Será necessário autenticar:<br />
<img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_4.png" alt="" width="1104" height="558" class="alignnone size-full wp-image-6445" srcset="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_4.png 1104w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_4-300x152.png 300w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_4-1024x518.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_4-768x388.png 768w" sizes="auto, (max-width: 1104px) 100vw, 1104px" /><br />
Então para criar um usuário (ou mais) administrador faça em seu terminal:</p>
<pre class="remontti-code"># prosodyctl register meuusuario meet.remontti.com.br minhasenha</pre>
<p><img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_5.png" alt="" width="1158" height="506" class="alignnone size-full wp-image-6446" srcset="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_5.png 1158w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_5-300x131.png 300w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_5-1024x447.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_5-768x336.png 768w" sizes="auto, (max-width: 1158px) 100vw, 1158px" /><br />
Para deletar um usuário:</p>
<pre class="remontti-code"># prosodyctl deluser meuusuario@meet.remontti.com.br</pre>
<p>Com sua sala de reunião pronta você pode desejar fazer alguns ajustes em mais configurações <strong>[&#8230;]</strong><br />
<img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_6.png" alt="" width="655" height="110" class="alignnone size-full wp-image-6447" srcset="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_6.png 655w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_6-300x50.png 300w" sizes="auto, (max-width: 655px) 100vw, 655px" /><br />
Ajuste seus dados<br />
<img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_7.png" alt="" width="715" height="771" class="alignnone size-full wp-image-6448" srcset="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_7.png 715w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_7-278x300.png 278w" sizes="auto, (max-width: 715px) 100vw, 715px" /><br />
Informe seu nome e e-mail se desejar<br />
<img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_8.png" alt="" width="861" height="474" class="alignnone size-full wp-image-6449" srcset="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_8.png 861w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_8-300x165.png 300w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_8-768x423.png 768w" sizes="auto, (max-width: 861px) 100vw, 861px" /><br />
Você pode ainda fazer outros ajustes como:<br />
<img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_9.png" alt="" width="791" height="419" class="alignnone size-full wp-image-6450" srcset="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_9.png 791w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_9-300x159.png 300w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_9-768x407.png 768w" sizes="auto, (max-width: 791px) 100vw, 791px" /></p>
<p><img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_10.png" alt="" width="815" height="525" class="alignnone size-full wp-image-6451" srcset="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_10.png 815w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_10-300x193.png 300w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_10-768x495.png 768w" sizes="auto, (max-width: 815px) 100vw, 815px" /><br />
Clique em OK para aplicar.<br />
Outro ajuste que é interessante são as opções de segurança:<br />
<img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_11.png" alt="" width="883" height="756" class="alignnone size-full wp-image-6453" srcset="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_11.png 883w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_11-300x257.png 300w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_11-768x658.png 768w" sizes="auto, (max-width: 883px) 100vw, 883px" /><br />
É interessante você Habilitar sala de espera, assim novos usuários terão que informar seu nome e você precisará aprovar sua entrada.<br />
<img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_12.png" alt="" width="907" height="615" class="alignnone size-full wp-image-6454" srcset="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_12.png 907w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_12-300x203.png 300w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_12-768x521.png 768w" sizes="auto, (max-width: 907px) 100vw, 907px" /><br />
Agora quando alguém entrar na sala ira aparecer a seguinte tela:<br />
<img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_13.png" alt="" width="1057" height="534" class="alignnone size-full wp-image-6455" srcset="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_13.png 1057w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_13-300x152.png 300w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_13-1024x517.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_13-768x388.png 768w" sizes="auto, (max-width: 1057px) 100vw, 1057px" /><br />
<img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_14.png" alt="" width="1057" height="534" class="alignnone size-full wp-image-6456" srcset="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_14.png 1057w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_14-300x152.png 300w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_14-1024x517.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_14-768x388.png 768w" sizes="auto, (max-width: 1057px) 100vw, 1057px" /><br />
O administrador ira autoriza-lo:<br />
<img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_15.png" alt="" width="1063" height="565" class="alignnone size-full wp-image-6457" srcset="https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_15.png 1063w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_15-300x159.png 300w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_15-1024x544.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2022/03/Jitsi_Debian_11_15-768x408.png 768w" sizes="auto, (max-width: 1063px) 100vw, 1063px" /></p>
<p>Bom a interface é bem intuitiva então acredito que não terá dificuldas. E não deixe de ler as <a href="https://jitsi.github.io/handbook/docs/dev-guide/dev-guide-web-integrations" rel="noopener" target="_blank">integrações</a>, bem como o restante da documentação, pois o projeto tem muita coisa que não foi mostrada aqui.</p>
<p>Gostou?</p>
<p><strong>Se quiser fazer uma doação para o café ficarei muito feliz pelo seu reconhecimento!</strong><br />
<a href="https://blog.remontti.com.br/doar"><img decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2019/07/quero-doar-remontti.png" /></a><br />
Se não puder doar pode deixar seu agradecimento nos comentário também ficarei feliz em saber que ajudei. Se tiver qualquer pergunta deixe-a também. Se preferir entrar em Contato <a href="https://blog.remontti.com.br/meucontato" rel="noopener noreferrer" target="_blank">clique aqui.</a></p>
<p><strong>Fonte:</strong> <a href="https://jitsi.github.io/handbook/docs/intro" rel="noopener" target="_blank">https://jitsi.github.io/handbook/docs/intro</a></p>
<p>O post <a href="https://blog.remontti.com.br/6432">Aprenda instalar o Jitsi Meet, uma ferramenta de videoconferências de código aberto</a> apareceu primeiro em <a href="https://blog.remontti.com.br">Remontti</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.remontti.com.br/6432/feed</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Como é meu desktop #2? Debian 10 + KDE Plasma Minimalista + Extras</title>
		<link>https://blog.remontti.com.br/3322</link>
					<comments>https://blog.remontti.com.br/3322#comments</comments>
		
		<dc:creator><![CDATA[Rudimar Remontti]]></dc:creator>
		<pubDate>Tue, 13 Aug 2019 15:02:47 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutoriais]]></category>
		<category><![CDATA[Angry IP Scan]]></category>
		<category><![CDATA[buster]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Chromium]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[debian10]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[Etcher]]></category>
		<category><![CDATA[Filezilla]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Gimp]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[googleearth]]></category>
		<category><![CDATA[impressora]]></category>
		<category><![CDATA[Kdenlive]]></category>
		<category><![CDATA[nextcloud]]></category>
		<category><![CDATA[playonlinuyx]]></category>
		<category><![CDATA[rdesktop]]></category>
		<category><![CDATA[spotify]]></category>
		<category><![CDATA[Sublime Text]]></category>
		<category><![CDATA[Teamviewer]]></category>
		<category><![CDATA[telegram]]></category>
		<category><![CDATA[Thunderbird]]></category>
		<category><![CDATA[Torrent]]></category>
		<guid isPermaLink="false">https://blog.remontti.com.br/?p=3322</guid>

					<description><![CDATA[<p>Antes de começar se você é iniciante e achar que é muito complexo instalar desta forma, você pode fazer a instalação selecionando a interface que deseja. Este formato é um meio de instalar apenas&#46;&#46;&#46;</p>
<p>O post <a href="https://blog.remontti.com.br/3322">Como é meu desktop #2? Debian 10 + KDE Plasma Minimalista + Extras</a> apareceu primeiro em <a href="https://blog.remontti.com.br">Remontti</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Antes de começar se você é iniciante e achar que é muito complexo instalar desta forma, você pode fazer a instalação selecionando a interface que deseja. Este formato é um meio de instalar apenas os pacotes que você realmente usa e consequentemente deixará muito mais leve seu sistema.</p>
<p><a href="https://blog.remontti.com.br/wp-content/uploads/2019/08/meudesktop-debian10.png" data-rel="lightbox-gallery-9DdwLwQi" data-rl_title="" data-rl_caption="" title=""><img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2019/08/meudesktop-debian10-1024x640.png" alt="" width="1024" height="640" class="alignnone size-large wp-image-3363" srcset="https://blog.remontti.com.br/wp-content/uploads/2019/08/meudesktop-debian10-1024x640.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2019/08/meudesktop-debian10-300x188.png 300w, https://blog.remontti.com.br/wp-content/uploads/2019/08/meudesktop-debian10-768x480.png 768w, https://blog.remontti.com.br/wp-content/uploads/2019/08/meudesktop-debian10.png 1680w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></p>
<p><strong>Download</strong><br />
Vamos usar a ISO incluído Non-free + Firmware. Pq non-free e Firmware? A instalação Debian padrão é configurada para instalar apenas o Software Livre e drives não proprietários. Como muita pessoas tem dificuldade de carregar drives e instalar pacotes ex “flash-player” recomendo baixar esta iso, vou deixar dois links oficiais:<br />
<a href="https://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/" rel="noopener noreferrer" target="_blank">https://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/</a></p>
<p><strong>Instalação</strong><br />
Para instalação você pode seguir o tutorial: <a href="https://blog.remontti.com.br/2966" rel="noopener noreferrer" target="_blank">Instalação do Debian 10 Limpa</a> passo-a-passo a parte mais importante para nossa instalação minimalista é  na hora de <strong>Escolha o software a ser instalado</strong> <strong>NÃO</strong> marcar nenhuma opção.<br />
<a href="https://blog.remontti.com.br/wp-content/uploads/2019/08/debian10.png" data-rel="lightbox-gallery-9DdwLwQi" data-rl_title="" data-rl_caption="" title=""><img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2019/08/debian10-300x225.png" alt="" width="300" height="225" class="alignnone size-medium wp-image-3350" srcset="https://blog.remontti.com.br/wp-content/uploads/2019/08/debian10-300x225.png 300w, https://blog.remontti.com.br/wp-content/uploads/2019/08/debian10-768x576.png 768w, https://blog.remontti.com.br/wp-content/uploads/2019/08/debian10.png 800w" sizes="auto, (max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>Repositório contrib non-free</strong></p>
<pre class="remontti-code">#  vim /etc/apt/sources.list</pre>
<p>Certifique-se de que ao final de cada repositório tenha <strong>contrib non-free</strong>, se não tiver adicione.</p>
<pre class="remontti-code">deb http://deb.debian.org/debian/ buster main contrib non-free
deb-src http://deb.debian.org/debian/ buster main contrib non-free

deb http://security.debian.org/debian-security buster/updates main contrib non-free
deb-src http://security.debian.org/debian-security buster/updates main contrib non-free

# buster-updates, previously known as &#039;volatile&#039;
deb http://deb.debian.org/debian/ buster-updates main contrib non-free
deb-src http://deb.debian.org/debian/ buster-updates main contrib non-free</pre>
<p>Tenha tudo atualizado!</p>
<pre class="remontti-code"># apt update ; apt upgrade</pre>
<p>Agora vamos instalar apenas os pacotes básicos (para mim) do nosso desktop minimalista.</p>
<pre class="remontti-code">
# su -
# apt install sddm kde-plasma-desktop kde-l10n-ptbr plasma-nm\
  bash-completion vim wget sudo curl unrar-free ark kcalc\
  okular gwenview kolourpaint4 vlc ksnapshot polkit-kde-1\
  htop iotop nethogs iftop locate traceroute mtr whois\
  nmap sddm-theme-debian-breeze gtk3-engines-breeze wireless-tools\
  dirmngr net-tools dnsutils apt-transport-https python-ipaddr\
  usermode firmware-linux-free network-manager-dev network-manager-pptp\
  network-manager-vpnc network-manager-ssh network-manager-openvpn\
  network-manager-pptp net-tools libavcodec-extra ffmpeg synaptic\
  lm-sensors msttcorefonts partitionmanager dialog firmware-linux\
  firmware-linux-free firmware-linux-nonfree firmware-misc-nonfree</pre>
<p>Adicione seu usuário ao grupo sudo</p>
<pre class="remontti-code"># usermod -G sudo SEU_USUARIO</pre>
<p>Ajustes de idioma</p>
<pre class="remontti-code"># dpkg-reconfigure locales</pre>
<p>Marque as opções:<br />
<em>[*] pt_BR ISO-8859-1<br />
[*] pt_BR.UTF-8 UTF-8</em><br />
Selecione:<br />
<em>pt_BR.UTF-8 UTF-8</em><br />
Já vamos aproveitar para otimizar a parametrização do kernel.</p>
<pre class="remontti-code"># echo &quot;# Reduz o uso de SWAP&quot; &gt;&gt; /etc/sysctl.conf
# echo &quot;vm.swappiness=10&quot; &gt;&gt; /etc/sysctl.conf
# echo &quot;# Melhora a gestão de cache&quot; &gt;&gt; /etc/sysctl.conf
# echo &quot;vm.vfs_cache_pressure=50&quot; &gt;&gt; /etc/sysctl.conf
# echo &quot;vm.dirty_background_ratio = 5&quot; &gt;&gt; /etc/sysctl.conf</pre>
<p>Reinicie e sua interface desktop já deve estar pronta!</p>
<pre class="remontti-code"># systemctl reboot</pre>
<p><strong>Drive de vídeo</strong><br />
Em grande parte os drives são reconhecidos e instalado, mas caso tenha problema consulte:</p>
<p><a href="https://wiki.debian.org/GraphicsCard" rel="noopener noreferrer" target="_blank">https://wiki.debian.org/GraphicsCard</a><br />
<a href="https://wiki.debian.org/AtiHowTo" rel="noopener noreferrer" target="_blank">https://wiki.debian.org/AtiHowTo</a><br />
<a href="https://wiki.debian.org/ATIProprietary" rel="noopener noreferrer" target="_blank">https://wiki.debian.org/ATIProprietary</a><br />
<a href="https://wiki.debian.org/NvidiaGraphicsDrivers" rel="noopener noreferrer" target="_blank">https://wiki.debian.org/NvidiaGraphicsDrivers</a></p>
<h3>APLICATIVOS</h3>
<p>:: <a href="https://www.mozilla.org/pt-BR/firefox/" rel="noopener noreferrer" target="_blank"><strong>Firefox</strong></a> :: (Navegador)</p>
<pre class="remontti-code">$ sudo apt install firefox-esr firefox-esr-l10n-pt-br</pre>
<p>:: <strong><a href="https://www.chromium.org/">Chromium</a></strong> :: (Navegador)</p>
<pre class="remontti-code">$ sudo apt install chromium chromium-l10n</pre>
<p>:: <a href="https://www.google.com/intl/pt-BR/chrome/" rel="noopener noreferrer" target="_blank"><strong>Chrome</strong></a> :: (Navegador)</p>
<pre class="remontti-code">$ cd /tmp/
$ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
$ sudo apt install ./google-chrome-stable_current_amd64.deb</pre>
<p>:: <a href="https://www.google.com.br/intl/pt-BR/earth/" rel="noopener noreferrer" target="_blank"><strong>Google Earth</strong></a> :: (Mapas)</p>
<pre class="remontti-code">$ cd /tmp/
$ wget https://dl.google.com/dl/earth/client/current/google-earth-pro-stable_current_amd64.deb
$ sudo apt install ./google-earth-pro-stable_current_amd64.deb</pre>
<p>:: <a href="https://www.libreoffice.org/" rel="noopener noreferrer" target="_blank"><strong>LibreOffice</strong></a> :: (Suite office)</p>
<pre class="remontti-code">$ sudo apt install libreoffice libreoffice-style-breeze libreoffice-l10n-pt-br</pre>
<p>:: <a href="https://www.thunderbird.net/pt-BR/" rel="noopener noreferrer" target="_blank"><strong>Thunderbird</strong></a> :: (Cliente E-mails)</p>
<pre class="remontti-code">$ sudo apt install thunderbird thunderbird-l10n-pt-br lightning-l10n-pt-br</pre>
<p>:: <a href="https://filezilla-project.org/" rel="noopener noreferrer" target="_blank"><strong>Filezilla</strong></a> :: (Cliente FTP +SFTP)</p>
<pre class="remontti-code">$ sudo apt install filezilla</pre>
<p>:: <strong><a href="https://github.com/GNOME/vinagre" rel="noopener noreferrer" target="_blank">Vinagre</a></strong> :: (Visualizador de área de trabalho remota)</p>
<pre class="remontti-code">$ sudo apt install vinagre</pre>
<p>:: <a href="https://www.rdesktop.org/" rel="noopener noreferrer" target="_blank"><strong>Rdesktop</strong></a> :: (Cliente RDP para o Terminal Server do Windows modo texto)</p>
<pre class="remontti-code">$ sudo apt install rdesktop</pre>
<p>:: <a href="https://kdenlive.org/" rel="noopener noreferrer" target="_blank"><strong>Kdenlive</strong></a>:: (Editor video)</p>
<pre class="remontti-code">$ sudo apt install kdenlive</pre>
<p>:: <a href="https://www.gimp.org/" rel="noopener noreferrer" target="_blank"><strong>Gimp</strong></a> :: (Editor imagem)</p>
<pre class="remontti-code">$ sudo apt install gimp</pre>
<p>:: <a href="https://www.playonlinux.com/" rel="noopener noreferrer" target="_blank"><strong>Playonlinux</strong></a> :: (Gerenciamento Wine para rodar aplicativos do Windows)</p>
<pre class="remontti-code">$ sudo dpkg --add-architecture i386 ; sudo apt update ; sudo apt upgrade
$ sudo apt install playonlinux</pre>
<p>Inclua as fontes da MS.</p>
<pre class="remontti-code">$ cp /usr/share/fonts/truetype/msttcorefonts/* ~/PlayOnLinux\&#039;s\ virtual\ drives/default/drive_c/windows/Fonts/</pre>
<p>:: <strong><a href="https://desktop.telegram.org" rel="noopener noreferrer" target="_blank">Telegram</a></strong> ::<br />
A versão via apt não é a mais recente, a instalação manual é mais recomendada se você quiser ter a versão mais atual.<br />
Acesse: <a href="https://github.com/telegramdesktop/tdesktop/releases/latest" rel="noopener noreferrer" target="_blank">https://github.com/telegramdesktop/tdesktop/releases/latest</a> e baixe a ultima versão &#8220;Linux 64 bit: Binary&#8221; ou 32 se for o seu caso. </p>
<pre class="remontti-code">$ cd /tmp/
$ wget https://telegram.org/dl/desktop/linux -O tsetup.tar.xz
$ tar xvf tsetup.tar.xz
$ sudo mv Telegram/ /opt/
$ sudo chown $USER. /opt/Telegram/ -R
$ sudo ln -sf /opt/Telegram/Telegram /usr/bin/telegram
$ telegram &amp;</pre>
<p>:: <a href="https://www.spotify.com/br/download/linux/" rel="noopener noreferrer" target="_blank"><strong>Spotify</strong></a> :: </p>
<pre class="remontti-code">$ sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 931FF8E79F0876134EDDBDCCA87FF9DF48BF1C90
$ echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list
$ sudo apt update
$ sudo apt install spotify-client</pre>
<p>:: <strong><a href="https://www.skype.com/pt-br/get-skype/" rel="noopener noreferrer" target="_blank">Skype</a></strong> ::</p>
<pre class="remontti-code">$ cd /tmp/
$ wget https://repo.skype.com/latest/skypeforlinux-64.deb
$ sudo apt install ./skypeforlinux-64.deb</pre>
<p>:: <strong><a href="https://wiki.debian.org/Java/" rel="noopener noreferrer" target="_blank">Java</a></strong> :: </p>
<pre class="remontti-code">$ sudo apt install icedtea-netx default-jre</pre>
<p>:: <strong><a href="http://angryip.org/download/#linux" rel="noopener noreferrer" target="_blank">Angry IP Scan</a></strong>:: (Scaner Redes)</p>
<pre class="remontti-code">$ cd /tmp/
$ wget https://github.com/angryip/ipscan/releases/download/3.6.2/ipscan_3.6.2_amd64.deb
$ sudo apt install ./ipscan_3.6.2_amd64.deb</pre>
<p>:: <strong><a href="https://www.sublimetext.com/docs/3/linux_repositories.html" rel="noopener noreferrer" target="_blank">Sublime Text</a></strong> :: (Editor de texto)</p>
<pre class="remontti-code">$ wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
$ echo &quot;deb https://download.sublimetext.com/ apt/stable/&quot; | sudo tee /etc/apt/sources.list.d/sublime-text.list
$ sudo apt update ; sudo apt install sublime-text</pre>
<p>:: <strong><a href="https://etcher.io" rel="noopener noreferrer" target="_blank">Etcher</a></strong> :: (Flash USB bootaveis)</p>
<pre class="remontti-code">$ echo &quot;deb https://deb.etcher.io stable etcher&quot; | sudo tee /etc/apt/sources.list.d/balena-etcher.list
$ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 379CE192D401AB61
$ sudo apt update
$ sudo apt install balena-etcher-electron</pre>
<p>:: <strong><a href="https://www.teamviewer.com/pt-br/download/linux/" rel="noopener noreferrer" target="_blank">Teamviewer</a></strong> ::</p>
<pre class="remontti-code">$ cd /tmp/
$ wget https://download.teamviewer.com/download/linux/teamviewer_amd64.deb
$ sudo apt install ./teamviewer_amd64.deb</pre>
<p>:: <strong><a href="https://www.dropbox.com/install" rel="noopener noreferrer" target="_blank">Dropbox</a></strong> :: (Cloud)</p>
<pre class="remontti-code">$ cd /tmp/
$ sudo apt install python3-gpg python-gpg
$ wget https://www.dropbox.com/download?dl=packages/ubuntu/dropbox_2019.02.14_amd64.deb -O dropbox.deb
$ sudo apt install ./dropbox.deb</pre>
<p>:: <strong><a href="https://nextcloud.com/install/#install-clients" rel="noopener noreferrer" target="_blank">Nextcloud</a></strong> :: (Cloud)</p>
<pre class="remontti-code">$ cd /tmp/
$ wget https://download.nextcloud.com/desktop/releases/Linux/Nextcloud-2.6.3-x86_64.AppImage -O Nextcloud.AppImage
$ chmod a+x Nextcloud.AppImage
$ sudo mkdir /opt/Nextcloud
$ sudo chown $USER. /opt/Nextcloud/ -R
$ mv Nextcloud.AppImage /opt/Nextcloud/</pre>
<p>Atalho (pesquise um ícone na internet)</p>
<pre class="remontti-code">$ wget http://www.iconarchive.com/download/i106074/papirus-team/papirus-apps/nextcloud.ico -O /opt/Nextcloud/nextcloud.ico
$ sudo vim /usr/share/applications/nextcloud.desktop</pre>
<p>Crie um atalho em seus aplicativos</p>
<pre class="remontti-code">[Desktop Entry]
Version=2.6.3
Name=NextCloud
Comment=NextCloud Desktop
TryExec=/opt/Nextcloud/Nextcloud.AppImage
Exec=/opt/Nextcloud/Nextcloud.AppImage
Icon=/opt/Nextcloud/nextcloud.ico
Terminal=false
StartupWMClass=NextcloudDesktop
Type=Application
Categories=Network;</pre>
<p>Para colocar inicializar com o sistema vá nas configurações do aplicativo.<br />
<strong>:: Torrent::</strong><br />
Eu gosto do <strong><a href="https://github.com/rakshasa/rtorrent" rel="noopener noreferrer" target="_blank">rtorrent</a></strong> via terminal</p>
<pre class="remontti-code">$ sudo apt install rtorrent</pre>
<p>Mas para interface prefiro <strong><a href="https://www.qbittorrent.org/" rel="noopener noreferrer" target="_blank">qBittorrent</a></strong></p>
<pre class="remontti-code">$ sudo apt install qbittorrent</pre>
<p>:: <strong><a href="https://www.virtualbox.org/wiki/Linux_Downloads" rel="noopener noreferrer" target="_blank">Virtualbox</a></strong> :: </p>
<pre class="remontti-code">$ echo &quot;deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian buster contrib&quot; | sudo tee /etc/apt/sources.list.d/virtualbox.list
$ wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
$ wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
$ sudo apt update
$ sudo apt install virtualbox-6.1
$ sudo usermod -a -G vboxusers $USER</pre>
<pre class="remontti-code">$ cd /tmp/
$ wget --no-check-certificate https://download.virtualbox.org/virtualbox/6.1.0/Oracle_VM_VirtualBox_Extension_Pack-6.1.0.vbox-extpack
$ sudo VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-6.1.0.vbox-extpack</pre>
<p><strong>:: Iniciar Nun Lok ativo e corrigir problema do ponto no Wine ::</strong></p>
<pre class="remontti-code">$ sudo apt install numlockx</pre>
<p>Crie um arquivo com:</p>
<pre class="remontti-code">$ vim ~/.config/autostart-scripts/inicializar.sh</pre>
<p>Adicione</p>
<pre class="remontti-code">#!/bin/bash
# Liga o nunlok
/usr/bin/numlockx on
# Corrige ponto do teclado numerico
/usr/bin/xmodmap -e &#039;keycode 129 = period&#039;</pre>
<pre class="remontti-code">$ chmod +x ~/.config/autostart-scripts/inicializar.sh</pre>
<p>Pronto na próxima inicialização ele já vai executar seu script.<br />
<strong>:: Possíveis Dificuldades ::</strong><br />
<strong>Ajuste na rede</strong></p>
<pre class="remontti-code">$ sudo sed -i &#039;s/plugins=ifupdown,keyfile/plugins=keyfile/&#039; /etc/NetworkManager/NetworkManager.conf
$ sudo addgroup $USER netdev
$ sudo /etc/init.d/network-manager restart</pre>
<p><strong>Impressora</strong></p>
<pre class="remontti-code">$ sudo tasksel
$ sudo apt install printer-driver-hpijs printer-driver-hplip hpcups system-config-printer printer-driver-all</pre>
<p><strong>Solução para o volume que fica indo para 100% sozinho.</strong></p>
<pre class="remontti-code">$ echo &#039;flat-volumes = no&#039; &gt;&gt; ~/.config/pulse/daemon.conf
$ sudo sed -i &#039;s/; flat-volumes = yes/flat-volumes = no/&#039; /etc/pulse/daemon.conf
$ pulseaudio -k ; pulseaudio --start</pre>
<p>Parabéns! Você concluiu! Gostou?</p>
<p><center><strong>Se quiser fazer uma doação para o café ficarei muito feliz pelo seu reconhecimento!</strong><br />
<a href="https://blog.remontti.com.br/doar"><img decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2019/07/quero-doar-remontti.png" /></a></center></p>
<p>Se não puder doar pode deixar seu agradecimento nos comentário também ficarei feliz em saber que ajudei. Se tiver qualquer pergunta deixe-a também. Se preferir entrar em Contato <a href="https://blog.remontti.com.br/meucontato" rel="noopener noreferrer" target="_blank">clique aqui.</a></p>
<p>Abraço!</p>
<p>O post <a href="https://blog.remontti.com.br/3322">Como é meu desktop #2? Debian 10 + KDE Plasma Minimalista + Extras</a> apareceu primeiro em <a href="https://blog.remontti.com.br">Remontti</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.remontti.com.br/3322/feed</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
	</channel>
</rss>
