<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>notamental &amp;mdash; archives</title>
    <link>https://blogs.gutocarvalho.net/archives/tag:notamental</link>
    <description></description>
    <pubDate>Wed, 22 Apr 2026 10:02:54 +0000</pubDate>
    <item>
      <title>Criando ubuntu usb installer no MacOS</title>
      <link>https://blogs.gutocarvalho.net/archives/2016-09-07-criando-ubuntu-usb-installer-no-macos.md</link>
      <description>&lt;![CDATA[Post #notamental que ensina como criar um usbstick no MacOS para instalar o Ubuntu 16.04.1.&#xA;&#xA;1. Processo manual&#xA;&#xA;1.1 Download da imagem&#xA;&#xA;Abra seu terminal e crie um diretório tmp&#xA;&#xA;    mkdir tmp; cd tmp/&#xA;&#xA;Faça download da imagem&#xA;&#xA;    wget http://releases.ubuntu.com/16.04/ubuntu-16.04.1-desktop-amd64.iso&#xA;&#xA;1.2 Convertendo imagem&#xA;&#xA;Precisamos converter essa imagem para conseguir criar o usb installer&#xA;&#xA;    hdiutil convert -format UDRW -o ubuntu-16.04.1-desktop-amd64.img ubuntu-16.04.1-desktop-amd64.iso&#xA;&#xA;1.3 Detectando dispositivo usb&#xA;&#xA;Insira o usb stick que você pretende usar e logo após faça a detecção de discos&#xA;&#xA;    diskutil list&#xA;&#xA;Você verá uma saída como esta&#xA;&#xA;/dev/disk0 (internal, physical):&#xA;   #:                       TYPE NAME                    SIZE       IDENTIFIER&#xA;   0:      GUIDpartitionscheme                        500.3 GB   disk0&#xA;   1:                        EFI EFI                     209.7 MB   disk0s1&#xA;   2:          AppleCoreStorage Macross                 499.4 GB   disk0s2&#xA;   3:                 AppleBoot Recovery HD             650.0 MB   disk0s3&#xA;/dev/disk1 (internal, virtual):&#xA;   #:                       TYPE NAME                    SIZE       IDENTIFIER&#xA;   0:                  AppleHFS Macross                +499.0 GB   disk1&#xA;                                 Logical Volume on disk0s2&#xA;                                 9FE0CB11-FC20-4BB4-9353-E115CB1FBF94&#xA;                                 Unencrypted&#xA;/dev/disk2 (external, physical):&#xA;   #:                       TYPE NAME                    SIZE       IDENTIFIER&#xA;   0:      GUIDpartitionscheme                        1.0 TB     disk2&#xA;   1:                        EFI EFI                     209.7 MB   disk2s1&#xA;   2:                  AppleHFS WD1TB                   999.8 GB   disk2s2&#xA;/dev/disk3 (external, physical):&#xA;   #:                       TYPE NAME                    SIZE       IDENTIFIER&#xA;   0:     FDiskpartitionscheme                        *7.9 GB     disk3&#xA;   1:               WindowsNTFS GUTO                    7.9 GB     disk3s1&#xA;/dev/disk4 (disk image):&#xA;   #:                       TYPE NAME                    SIZE       IDENTIFIER&#xA;   0:      GUIDpartitionscheme                        +29.2 MB    disk4&#xA;   1:                  AppleHFS UNetbootin              29.1 MB    disk4s1    &#xA;&#xA;No meu caso vou usar o dispositivo /dev/disk3 de 8GB.&#xA;&#xA;1.4 Desmontando dispositivo&#xA;&#xA;Precisamos desmontar para gravar a imagem no dispositivo&#xA;&#xA;    diskutil unmountDisk /dev/disk3&#xA;&#xA;1.5 Criando o instalador&#xA;&#xA;Agora vamos transferir a imagem para o usb stick usando o dd&#xA;&#xA;    sudo dd if=ubuntu-16.04.1-desktop-amd64.img.dmg of=/dev/disk3 bs=1m&#xA;&#xA;Esse processo pode demorar, dependerá da velocidade do usb stick, no final a saída será similar a esta&#xA;&#xA;    1443+1 records in&#xA;    1443+1 records out&#xA;&#xA;Ignore qualquer popup do finder que aparecer após a conclusão.&#xA;&#xA;1.6 Ejetando o instalador&#xA;&#xA;Ao final do processo ejete o usb stick&#xA;&#xA;    diskutil eject /dev/disk3&#xA;&#xA;Pronto, agora você pode instalar o Ubuntu em qualquer computador com esse USB Stick.&#xA;&#xA;Processo via script&#xA;&#xA;Abaixo um exemplo de script para agilizar.&#xA;&#xA;!/bin/bash&#xA;&#xA;ISONAME=&#34;ubuntu-16.04.1-desktop-amd64&#34;&#xA;DEVICE=&#34;/dev/disk3&#34;&#xA;&#xA;echo &#34;convertendo imagem $ISONAME...&#34;&#xA;&#xA;hdiutil convert -format UDRW -o /Users/gutocarvalho/storage/isos/$ISONAME.img /Users/gutocarvalho/storage/isos/$ISONAME.iso&#xA;&#xA;echo &#34;desmontando dispositivo usb $DEVICE...&#34;&#xA;&#xA;diskutil unmountDisk $DEVICE&#xA;&#xA;echo &#34;Criando instalador usb no dispositivo $DEVICE...&#34;&#xA;&#xA;sudo dd if=/Users/gutocarvalho/storage/isos/$ISONAME.img.dmg of=$DEVICE bs=1m&#xA;&#xA;echo &#34;desmontando dispositivo usb $DEVICE...&#34;&#xA;&#xA;diskutil eject $DEVICE&#xA;&#xA;echo &#34;criacao de disco finalizada.&#34;&#xA;&#xA;Criei um snippet no GitLab para facilitar&#xA;&#xA;    https://gitlab.com/snippets/25673&#xA;&#xA;[s]br&#xA;Guto&#xA;&#xA;hr&#xD;&#xA;Gostou do conteúdo?&#xD;&#xA;&#xD;&#xA;Você também me encontra nessas redes!&#xD;&#xA;&#xD;&#xA;Mastodon&#xD;&#xA;@gutocarvalho@bolha.us&#xD;&#xA;&#xD;&#xA;PixelFed&#xD;&#xA;@gutocarvalho@bolha.photos&#xD;&#xA;&#xD;&#xA;Lemmy&#xD;&#xA;@gutocarvalho@bolha.forum&#xD;&#xA;&#xD;&#xA;WriteFreely&#xD;&#xA;@gutocarvalho@bolha.blog&#xD;&#xA;@notamental@bolha.blog&#xD;&#xA;@poesias@bolha.blog&#xD;&#xA;@contos@bolha.blog&#xD;&#xA;&#xD;&#xA;Bookwyrm&#xD;&#xA;@gutocarvalho@bolha.review&#xD;&#xA;&#xD;&#xA;Peertube&#xD;&#xA;@gutocarvalho@bolha.tube&#xD;&#xA;&#xD;&#xA;Friendica&#xD;&#xA;@gutocarvalho@bolha.network&#xD;&#xA;&#xD;&#xA;Quer saber mais sobre mim? &#xD;&#xA;&#xD;&#xA;Visite meus sites!&#xD;&#xA;&#xD;&#xA;https://gutocarvalho.net&#xD;&#xA;  https://curriculo.gutocarvalho.net&#xD;&#xA;  https://resume.gutocarvalho.net&#xD;&#xA; &#xD;&#xA;E meus blogs:&#xD;&#xA;&#xD;&#xA; https://blogs.gutocarvalho.net&#xD;&#xA; https://blogs.gutocarvalho.net/falagutera&#xD;&#xA; https://blogs.gutocarvalho.net/infra&#xD;&#xA; https://blogs.gutocarvalho.net/opiniao&#xD;&#xA; https://blogs.gutocarvalho.net/contos&#xD;&#xA; https://blogs.gutocarvalho.net/poesias&#xD;&#xA; https://blogs.gutocarvalho.net/lives&#xD;&#xA; https://blogs.gutocarvalho.net/orixas&#xD;&#xA; https://blogs.gutocarvalho.net/archives&#xD;&#xA;&#xD;&#xA;Conhece o Coletivo Bolha?&#xD;&#xA;&#xD;&#xA;Então vem conhecer o bolha.io ou bolhaverso!&#xD;&#xA;&#xD;&#xA;fediverso&#xD;&#xA;    mastodon, https://bolha.us&#xD;&#xA;    pixelfed, https://bolha.photos&#xD;&#xA;    lemmy, https://bolha.forum&#xD;&#xA;    bookwyrnm, https://bolha.review&#xD;&#xA;    writefreely, https://bolha.blog&#xD;&#xA;    peertube, https://bolha.tube&#xD;&#xA;    castopod, https://bolha.studio&#xD;&#xA;    owncast, https://bolha.stream&#xD;&#xA;    friendica, https://bolha.network  &#xD;&#xA;chat&#xD;&#xA;    mattermost, https://mattermost.bolha.chat&#xD;&#xA;    zulip, https://zulip.bolha.chat&#xD;&#xA;vídeo&#xD;&#xA;    jitsi, https://bolha.video   &#xD;&#xA;frontends&#xD;&#xA;    lingva, https://translate.bolha.tools&#xD;&#xA;    libremdb, https://libremdb.bolha.tools&#xD;&#xA;translations&#xD;&#xA;    libretranslate, https://libretranslate.bolha.tools&#xD;&#xA;editors&#xD;&#xA;    hedgedoc, https://notes.bolha.tools&#xD;&#xA;    draw.io, https://draw.bolha.tools&#xD;&#xA;    excalidraw, https://excalidraw.bolha.tools&#xD;&#xA;    pdf stirling, https://spdf.bolha.tools &#xD;&#xA;    wisemaping, https://mindmap.bolha.tools&#xD;&#xA;    mermaid, https://mermaid.bolha.tools&#xD;&#xA;    cryptpad, https://cryptad.bolha.tools&#xD;&#xA;secrets sharing&#xD;&#xA;    yopass, https://yopass.bolha.tools&#xD;&#xA;    password pusher, https://pusher.bolha.tools&#xD;&#xA;pastbin&#xD;&#xA;    yabin, https://yabin.bolha.tools&#xD;&#xA;terminal recorder&#xD;&#xA;    ascinnema, https://ascinemma.bolha.tools&#xD;&#xA;anti paywall&#xD;&#xA;    13ft, https://open.bolha.tools&#xD;&#xA;&#xD;&#xA;Nós temos muito mais para compartilhar contigo!&#xD;&#xA;&#xD;&#xA;Quer apoiar nosso trabalho? Você pode!&#xD;&#xA;&#xD;&#xA;https://www.patreon.com/bolha&#xD;&#xA;https://apoia.se/bolha&#xD;&#xA;pix@bolha.us&#xD;&#xA;&#xD;&#xA;Te vejo no mastodon da bolha.us!&#xD;&#xA;&#xD;&#xA;[s]]]&gt;</description>
      <content:encoded><![CDATA[<p>Post <a href="/archives/tag:notamental" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">notamental</span></a> que ensina como criar um usbstick no MacOS para instalar o Ubuntu 16.04.1.</p>

<h2 id="1-processo-manual">1. Processo manual</h2>

<h3 id="1-1-download-da-imagem">1.1 Download da imagem</h3>

<p>Abra seu terminal e crie um diretório tmp</p>

<p>    mkdir tmp; cd tmp/</p>

<p>Faça download da imagem</p>

<p>    wget <a href="http://releases.ubuntu.com/16.04/ubuntu-16.04.1-desktop-amd64.iso" rel="nofollow">http://releases.ubuntu.com/16.04/ubuntu-16.04.1-desktop-amd64.iso</a></p>

<h3 id="1-2-convertendo-imagem">1.2 Convertendo imagem</h3>

<p>Precisamos converter essa imagem para conseguir criar o usb installer</p>

<p>    hdiutil convert -format UDRW -o ubuntu-16.04.1-desktop-amd64.img ubuntu-16.04.1-desktop-amd64.iso</p>

<h3 id="1-3-detectando-dispositivo-usb">1.3 Detectando dispositivo usb</h3>

<p>Insira o usb stick que você pretende usar e logo após faça a detecção de discos</p>

<p>    diskutil list</p>

<p>Você verá uma saída como esta</p>

<pre><code>/dev/disk0 (internal, physical):
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                        *500.3 GB   disk0
   1:                        EFI EFI                     209.7 MB   disk0s1
   2:          Apple_CoreStorage Macross                 499.4 GB   disk0s2
   3:                 Apple_Boot Recovery HD             650.0 MB   disk0s3
/dev/disk1 (internal, virtual):
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:                  Apple_HFS Macross                +499.0 GB   disk1
                                 Logical Volume on disk0s2
                                 9FE0CB11-FC20-4BB4-9353-E115CB1FBF94
                                 Unencrypted
/dev/disk2 (external, physical):
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                        *1.0 TB     disk2
   1:                        EFI EFI                     209.7 MB   disk2s1
   2:                  Apple_HFS WD1TB                   999.8 GB   disk2s2
/dev/disk3 (external, physical):
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:     FDisk_partition_scheme                        *7.9 GB     disk3
   1:               Windows_NTFS GUTO                    7.9 GB     disk3s1
/dev/disk4 (disk image):
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                        +29.2 MB    disk4
   1:                  Apple_HFS UNetbootin              29.1 MB    disk4s1    
</code></pre>

<p>No meu caso vou usar o dispositivo /dev/disk3 de 8GB.</p>

<h3 id="1-4-desmontando-dispositivo">1.4 Desmontando dispositivo</h3>

<p>Precisamos desmontar para gravar a imagem no dispositivo</p>

<p>    diskutil unmountDisk /dev/disk3</p>

<h3 id="1-5-criando-o-instalador">1.5 Criando o instalador</h3>

<p>Agora vamos transferir a imagem para o usb stick usando o dd</p>

<p>    sudo dd if=ubuntu-16.04.1-desktop-amd64.img.dmg of=/dev/disk3 bs=1m</p>

<p>Esse processo pode demorar, dependerá da velocidade do usb stick, no final a saída será similar a esta</p>

<p>    1443+1 records in
    1443+1 records out</p>

<p>Ignore qualquer popup do finder que aparecer após a conclusão.</p>

<h3 id="1-6-ejetando-o-instalador">1.6 Ejetando o instalador</h3>

<p>Ao final do processo ejete o usb stick</p>

<p>    diskutil eject /dev/disk3</p>

<p>Pronto, agora você pode instalar o Ubuntu em qualquer computador com esse USB Stick.</p>

<h2 id="processo-via-script">Processo via script</h2>

<p>Abaixo um exemplo de script para agilizar.</p>

<pre><code>#!/bin/bash

ISONAME=&#34;ubuntu-16.04.1-desktop-amd64&#34;
DEVICE=&#34;/dev/disk3&#34;

echo &#34;convertendo imagem $ISONAME...&#34;

hdiutil convert -format UDRW -o /Users/gutocarvalho/storage/isos/$ISONAME.img /Users/gutocarvalho/storage/isos/$ISONAME.iso

echo &#34;desmontando dispositivo usb $DEVICE...&#34;

diskutil unmountDisk $DEVICE

echo &#34;Criando instalador usb no dispositivo $DEVICE...&#34;

sudo dd if=/Users/gutocarvalho/storage/isos/$ISONAME.img.dmg of=$DEVICE bs=1m

echo &#34;desmontando dispositivo usb $DEVICE...&#34;

diskutil eject $DEVICE

echo &#34;criacao de disco finalizada.&#34;
</code></pre>

<p>Criei um snippet no GitLab para facilitar</p>

<p>    <a href="https://gitlab.com/snippets/25673" rel="nofollow">https://gitlab.com/snippets/25673</a></p>

<p>[s]<br>
Guto</p>

<hr>

<h3 id="gostou-do-conteúdo">Gostou do conteúdo?</h3>

<p>Você também me encontra nessas redes!</p>

<h4 id="mastodon">Mastodon</h4>

<p><a href="https://blogs.gutocarvalho.net/@/gutocarvalho@bolha.us" class="u-url mention" rel="nofollow">@<span>gutocarvalho@bolha.us</span></a></p>

<h4 id="pixelfed">PixelFed</h4>

<p><a href="https://blogs.gutocarvalho.net/@/gutocarvalho@bolha.photos" class="u-url mention" rel="nofollow">@<span>gutocarvalho@bolha.photos</span></a></p>

<h4 id="lemmy">Lemmy</h4>

<p><a href="https://blogs.gutocarvalho.net/@/gutocarvalho@bolha.forum" class="u-url mention" rel="nofollow">@<span>gutocarvalho@bolha.forum</span></a></p>

<h4 id="writefreely">WriteFreely</h4>

<p><a href="https://blogs.gutocarvalho.net/@/gutocarvalho@bolha.blog" class="u-url mention" rel="nofollow">@<span>gutocarvalho@bolha.blog</span></a>
<a href="https://blogs.gutocarvalho.net/@/notamental@bolha.blog" class="u-url mention" rel="nofollow">@<span>notamental@bolha.blog</span></a>
<a href="https://blogs.gutocarvalho.net/@/poesias@bolha.blog" class="u-url mention" rel="nofollow">@<span>poesias@bolha.blog</span></a>
<a href="https://blogs.gutocarvalho.net/@/contos@bolha.blog" class="u-url mention" rel="nofollow">@<span>contos@bolha.blog</span></a></p>

<h4 id="bookwyrm">Bookwyrm</h4>

<p><a href="https://blogs.gutocarvalho.net/@/gutocarvalho@bolha.review" class="u-url mention" rel="nofollow">@<span>gutocarvalho@bolha.review</span></a></p>

<h4 id="peertube">Peertube</h4>

<p><a href="https://blogs.gutocarvalho.net/@/gutocarvalho@bolha.tube" class="u-url mention" rel="nofollow">@<span>gutocarvalho@bolha.tube</span></a></p>

<h4 id="friendica">Friendica</h4>

<p><a href="https://blogs.gutocarvalho.net/@/gutocarvalho@bolha.network" class="u-url mention" rel="nofollow">@<span>gutocarvalho@bolha.network</span></a></p>

<h2 id="quer-saber-mais-sobre-mim">Quer saber mais sobre mim?</h2>

<p>Visite meus sites!</p>
<ul><li><a href="https://gutocarvalho.net" rel="nofollow">https://gutocarvalho.net</a>
<ul><li><a href="https://curriculo.gutocarvalho.net" rel="nofollow">https://curriculo.gutocarvalho.net</a></li>
<li><a href="https://resume.gutocarvalho.net" rel="nofollow">https://resume.gutocarvalho.net</a></li></ul></li></ul>

<p>E meus blogs:</p>
<ul><li><a href="https://blogs.gutocarvalho.net" rel="nofollow">https://blogs.gutocarvalho.net</a></li>
<li><a href="https://blogs.gutocarvalho.net/falagutera" rel="nofollow">https://blogs.gutocarvalho.net/falagutera</a></li>
<li><a href="https://blogs.gutocarvalho.net/infra" rel="nofollow">https://blogs.gutocarvalho.net/infra</a></li>
<li><a href="https://blogs.gutocarvalho.net/opiniao" rel="nofollow">https://blogs.gutocarvalho.net/opiniao</a></li>
<li><a href="https://blogs.gutocarvalho.net/contos" rel="nofollow">https://blogs.gutocarvalho.net/contos</a></li>
<li><a href="https://blogs.gutocarvalho.net/poesias" rel="nofollow">https://blogs.gutocarvalho.net/poesias</a></li>
<li><a href="https://blogs.gutocarvalho.net/lives" rel="nofollow">https://blogs.gutocarvalho.net/lives</a></li>
<li><a href="https://blogs.gutocarvalho.net/orixas" rel="nofollow">https://blogs.gutocarvalho.net/orixas</a></li>
<li><a href="https://blogs.gutocarvalho.net/archives" rel="nofollow">https://blogs.gutocarvalho.net/archives</a></li></ul>

<h2 id="conhece-o-coletivo-bolha">Conhece o Coletivo Bolha?</h2>

<p>Então vem conhecer o bolha.io ou bolhaverso!</p>
<ul><li>fediverso
<ul><li>mastodon, <a href="https://bolha.us" rel="nofollow">https://bolha.us</a></li>
<li>pixelfed, <a href="https://bolha.photos" rel="nofollow">https://bolha.photos</a></li>
<li>lemmy, <a href="https://bolha.forum" rel="nofollow">https://bolha.forum</a></li>
<li>bookwyrnm, <a href="https://bolha.review" rel="nofollow">https://bolha.review</a></li>
<li>writefreely, <a href="https://bolha.blog" rel="nofollow">https://bolha.blog</a></li>
<li>peertube, <a href="https://bolha.tube" rel="nofollow">https://bolha.tube</a></li>
<li>castopod, <a href="https://bolha.studio" rel="nofollow">https://bolha.studio</a></li>
<li>owncast, <a href="https://bolha.stream" rel="nofollow">https://bolha.stream</a></li>
<li>friendica, <a href="https://bolha.network" rel="nofollow">https://bolha.network</a><br></li></ul></li>
<li>chat
<ul><li>mattermost, <a href="https://mattermost.bolha.chat" rel="nofollow">https://mattermost.bolha.chat</a></li>
<li>zulip, <a href="https://zulip.bolha.chat" rel="nofollow">https://zulip.bolha.chat</a></li></ul></li>
<li>vídeo
<ul><li>jitsi, <a href="https://bolha.video" rel="nofollow">https://bolha.video</a><br></li></ul></li>
<li>frontends
<ul><li>lingva, <a href="https://translate.bolha.tools" rel="nofollow">https://translate.bolha.tools</a></li>
<li>libremdb, <a href="https://libremdb.bolha.tools" rel="nofollow">https://libremdb.bolha.tools</a></li></ul></li>
<li>translations
<ul><li>libretranslate, <a href="https://libretranslate.bolha.tools" rel="nofollow">https://libretranslate.bolha.tools</a></li></ul></li>
<li>editors
<ul><li>hedgedoc, <a href="https://notes.bolha.tools" rel="nofollow">https://notes.bolha.tools</a></li>
<li>draw.io, <a href="https://draw.bolha.tools" rel="nofollow">https://draw.bolha.tools</a></li>
<li>excalidraw, <a href="https://excalidraw.bolha.tools" rel="nofollow">https://excalidraw.bolha.tools</a></li>
<li>pdf stirling, <a href="https://spdf.bolha.tools" rel="nofollow">https://spdf.bolha.tools</a></li>
<li>wisemaping, <a href="https://mindmap.bolha.tools" rel="nofollow">https://mindmap.bolha.tools</a></li>
<li>mermaid, <a href="https://mermaid.bolha.tools" rel="nofollow">https://mermaid.bolha.tools</a></li>
<li>cryptpad, <a href="https://cryptad.bolha.tools" rel="nofollow">https://cryptad.bolha.tools</a></li></ul></li>
<li>secrets sharing
<ul><li>yopass, <a href="https://yopass.bolha.tools" rel="nofollow">https://yopass.bolha.tools</a></li>
<li>password pusher, <a href="https://pusher.bolha.tools" rel="nofollow">https://pusher.bolha.tools</a></li></ul></li>
<li>pastbin
<ul><li>yabin, <a href="https://yabin.bolha.tools" rel="nofollow">https://yabin.bolha.tools</a></li></ul></li>
<li>terminal recorder
<ul><li>ascinnema, <a href="https://ascinemma.bolha.tools" rel="nofollow">https://ascinemma.bolha.tools</a></li></ul></li>
<li>anti paywall
<ul><li>13ft, <a href="https://open.bolha.tools" rel="nofollow">https://open.bolha.tools</a></li></ul></li></ul>

<p>Nós temos muito mais para compartilhar contigo!</p>

<h3 id="quer-apoiar-nosso-trabalho-você-pode">Quer apoiar nosso trabalho? Você pode!</h3>
<ul><li><a href="https://www.patreon.com/bolha" rel="nofollow">https://www.patreon.com/bolha</a></li>
<li><a href="https://apoia.se/bolha" rel="nofollow">https://apoia.se/bolha</a></li>
<li>pix@bolha.us</li></ul>

<p>Te vejo no mastodon da bolha.us!</p>

<p>[s]</p>
]]></content:encoded>
      <guid>https://blogs.gutocarvalho.net/archives/2016-09-07-criando-ubuntu-usb-installer-no-macos.md</guid>
      <pubDate>Wed, 07 Sep 2016 08:37:02 +0000</pubDate>
    </item>
    <item>
      <title>Meus dotfiles para osx</title>
      <link>https://blogs.gutocarvalho.net/archives/2016-09-05-dotfiles-osx</link>
      <description>&lt;![CDATA[Post #notamental, segue abaixo meu repo dotfiles!&#xA;&#xA;    https://gitlab.com/gutocarvalho/dotfiles&#xA;&#xA;.bashprofile&#xA;&#xA;    https://gitlab.com/gutocarvalho/dotfiles/blob/master/bashprofile.sh&#xA;&#xA;.gitconfig&#xA;&#xA;    https://gitlab.com/gutocarvalho/dotfiles/blob/master/gitconfig&#xA;&#xA;.vimrc&#xA;&#xA;    https://gitlab.com/gutocarvalho/dotfiles/blob/master/vimrc&#xA;&#xA;[s]br&#xA;Guto&#xA;&#xA;hr&#xD;&#xA;Gostou do conteúdo?&#xD;&#xA;&#xD;&#xA;Você também me encontra nessas redes!&#xD;&#xA;&#xD;&#xA;Mastodon&#xD;&#xA;@gutocarvalho@bolha.us&#xD;&#xA;&#xD;&#xA;PixelFed&#xD;&#xA;@gutocarvalho@bolha.photos&#xD;&#xA;&#xD;&#xA;Lemmy&#xD;&#xA;@gutocarvalho@bolha.forum&#xD;&#xA;&#xD;&#xA;WriteFreely&#xD;&#xA;@gutocarvalho@bolha.blog&#xD;&#xA;@notamental@bolha.blog&#xD;&#xA;@poesias@bolha.blog&#xD;&#xA;@contos@bolha.blog&#xD;&#xA;&#xD;&#xA;Bookwyrm&#xD;&#xA;@gutocarvalho@bolha.review&#xD;&#xA;&#xD;&#xA;Peertube&#xD;&#xA;@gutocarvalho@bolha.tube&#xD;&#xA;&#xD;&#xA;Friendica&#xD;&#xA;@gutocarvalho@bolha.network&#xD;&#xA;&#xD;&#xA;Quer saber mais sobre mim? &#xD;&#xA;&#xD;&#xA;Visite meus sites!&#xD;&#xA;&#xD;&#xA;https://gutocarvalho.net&#xD;&#xA;  https://curriculo.gutocarvalho.net&#xD;&#xA;  https://resume.gutocarvalho.net&#xD;&#xA; &#xD;&#xA;E meus blogs:&#xD;&#xA;&#xD;&#xA; https://blogs.gutocarvalho.net&#xD;&#xA; https://blogs.gutocarvalho.net/falagutera&#xD;&#xA; https://blogs.gutocarvalho.net/infra&#xD;&#xA; https://blogs.gutocarvalho.net/opiniao&#xD;&#xA; https://blogs.gutocarvalho.net/contos&#xD;&#xA; https://blogs.gutocarvalho.net/poesias&#xD;&#xA; https://blogs.gutocarvalho.net/lives&#xD;&#xA; https://blogs.gutocarvalho.net/orixas&#xD;&#xA; https://blogs.gutocarvalho.net/archives&#xD;&#xA;&#xD;&#xA;Conhece o Coletivo Bolha?&#xD;&#xA;&#xD;&#xA;Então vem conhecer o bolha.io ou bolhaverso!&#xD;&#xA;&#xD;&#xA;fediverso&#xD;&#xA;    mastodon, https://bolha.us&#xD;&#xA;    pixelfed, https://bolha.photos&#xD;&#xA;    lemmy, https://bolha.forum&#xD;&#xA;    bookwyrnm, https://bolha.review&#xD;&#xA;    writefreely, https://bolha.blog&#xD;&#xA;    peertube, https://bolha.tube&#xD;&#xA;    castopod, https://bolha.studio&#xD;&#xA;    owncast, https://bolha.stream&#xD;&#xA;    friendica, https://bolha.network  &#xD;&#xA;chat&#xD;&#xA;    mattermost, https://mattermost.bolha.chat&#xD;&#xA;    zulip, https://zulip.bolha.chat&#xD;&#xA;vídeo&#xD;&#xA;    jitsi, https://bolha.video   &#xD;&#xA;frontends&#xD;&#xA;    lingva, https://translate.bolha.tools&#xD;&#xA;    libremdb, https://libremdb.bolha.tools&#xD;&#xA;translations&#xD;&#xA;    libretranslate, https://libretranslate.bolha.tools&#xD;&#xA;editors&#xD;&#xA;    hedgedoc, https://notes.bolha.tools&#xD;&#xA;    draw.io, https://draw.bolha.tools&#xD;&#xA;    excalidraw, https://excalidraw.bolha.tools&#xD;&#xA;    pdf stirling, https://spdf.bolha.tools &#xD;&#xA;    wisemaping, https://mindmap.bolha.tools&#xD;&#xA;    mermaid, https://mermaid.bolha.tools&#xD;&#xA;    cryptpad, https://cryptad.bolha.tools&#xD;&#xA;secrets sharing&#xD;&#xA;    yopass, https://yopass.bolha.tools&#xD;&#xA;    password pusher, https://pusher.bolha.tools&#xD;&#xA;pastbin&#xD;&#xA;    yabin, https://yabin.bolha.tools&#xD;&#xA;terminal recorder&#xD;&#xA;    ascinnema, https://ascinemma.bolha.tools&#xD;&#xA;anti paywall&#xD;&#xA;    13ft, https://open.bolha.tools&#xD;&#xA;&#xD;&#xA;Nós temos muito mais para compartilhar contigo!&#xD;&#xA;&#xD;&#xA;Quer apoiar nosso trabalho? Você pode!&#xD;&#xA;&#xD;&#xA;https://www.patreon.com/bolha&#xD;&#xA;https://apoia.se/bolha&#xD;&#xA;pix@bolha.us&#xD;&#xA;&#xD;&#xA;Te vejo no mastodon da bolha.us!&#xD;&#xA;&#xD;&#xA;[s]]]&gt;</description>
      <content:encoded><![CDATA[<p>Post <a href="/archives/tag:notamental" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">notamental</span></a>, segue abaixo meu repo dotfiles!</p>

<p>    <a href="https://gitlab.com/gutocarvalho/dotfiles" rel="nofollow">https://gitlab.com/gutocarvalho/dotfiles</a></p>

<p>.bash_profile</p>

<p>    <a href="https://gitlab.com/gutocarvalho/dotfiles/blob/master/bash_profile.sh" rel="nofollow">https://gitlab.com/gutocarvalho/dotfiles/blob/master/bash_profile.sh</a></p>

<p>.gitconfig</p>

<p>    <a href="https://gitlab.com/gutocarvalho/dotfiles/blob/master/gitconfig" rel="nofollow">https://gitlab.com/gutocarvalho/dotfiles/blob/master/gitconfig</a></p>

<p>.vimrc</p>

<p>    <a href="https://gitlab.com/gutocarvalho/dotfiles/blob/master/vimrc" rel="nofollow">https://gitlab.com/gutocarvalho/dotfiles/blob/master/vimrc</a></p>

<p>[s]<br>
Guto</p>

<hr>

<h3 id="gostou-do-conteúdo">Gostou do conteúdo?</h3>

<p>Você também me encontra nessas redes!</p>

<h4 id="mastodon">Mastodon</h4>

<p><a href="https://blogs.gutocarvalho.net/@/gutocarvalho@bolha.us" class="u-url mention" rel="nofollow">@<span>gutocarvalho@bolha.us</span></a></p>

<h4 id="pixelfed">PixelFed</h4>

<p><a href="https://blogs.gutocarvalho.net/@/gutocarvalho@bolha.photos" class="u-url mention" rel="nofollow">@<span>gutocarvalho@bolha.photos</span></a></p>

<h4 id="lemmy">Lemmy</h4>

<p><a href="https://blogs.gutocarvalho.net/@/gutocarvalho@bolha.forum" class="u-url mention" rel="nofollow">@<span>gutocarvalho@bolha.forum</span></a></p>

<h4 id="writefreely">WriteFreely</h4>

<p><a href="https://blogs.gutocarvalho.net/@/gutocarvalho@bolha.blog" class="u-url mention" rel="nofollow">@<span>gutocarvalho@bolha.blog</span></a>
<a href="https://blogs.gutocarvalho.net/@/notamental@bolha.blog" class="u-url mention" rel="nofollow">@<span>notamental@bolha.blog</span></a>
<a href="https://blogs.gutocarvalho.net/@/poesias@bolha.blog" class="u-url mention" rel="nofollow">@<span>poesias@bolha.blog</span></a>
<a href="https://blogs.gutocarvalho.net/@/contos@bolha.blog" class="u-url mention" rel="nofollow">@<span>contos@bolha.blog</span></a></p>

<h4 id="bookwyrm">Bookwyrm</h4>

<p><a href="https://blogs.gutocarvalho.net/@/gutocarvalho@bolha.review" class="u-url mention" rel="nofollow">@<span>gutocarvalho@bolha.review</span></a></p>

<h4 id="peertube">Peertube</h4>

<p><a href="https://blogs.gutocarvalho.net/@/gutocarvalho@bolha.tube" class="u-url mention" rel="nofollow">@<span>gutocarvalho@bolha.tube</span></a></p>

<h4 id="friendica">Friendica</h4>

<p><a href="https://blogs.gutocarvalho.net/@/gutocarvalho@bolha.network" class="u-url mention" rel="nofollow">@<span>gutocarvalho@bolha.network</span></a></p>

<h2 id="quer-saber-mais-sobre-mim">Quer saber mais sobre mim?</h2>

<p>Visite meus sites!</p>
<ul><li><a href="https://gutocarvalho.net" rel="nofollow">https://gutocarvalho.net</a>
<ul><li><a href="https://curriculo.gutocarvalho.net" rel="nofollow">https://curriculo.gutocarvalho.net</a></li>
<li><a href="https://resume.gutocarvalho.net" rel="nofollow">https://resume.gutocarvalho.net</a></li></ul></li></ul>

<p>E meus blogs:</p>
<ul><li><a href="https://blogs.gutocarvalho.net" rel="nofollow">https://blogs.gutocarvalho.net</a></li>
<li><a href="https://blogs.gutocarvalho.net/falagutera" rel="nofollow">https://blogs.gutocarvalho.net/falagutera</a></li>
<li><a href="https://blogs.gutocarvalho.net/infra" rel="nofollow">https://blogs.gutocarvalho.net/infra</a></li>
<li><a href="https://blogs.gutocarvalho.net/opiniao" rel="nofollow">https://blogs.gutocarvalho.net/opiniao</a></li>
<li><a href="https://blogs.gutocarvalho.net/contos" rel="nofollow">https://blogs.gutocarvalho.net/contos</a></li>
<li><a href="https://blogs.gutocarvalho.net/poesias" rel="nofollow">https://blogs.gutocarvalho.net/poesias</a></li>
<li><a href="https://blogs.gutocarvalho.net/lives" rel="nofollow">https://blogs.gutocarvalho.net/lives</a></li>
<li><a href="https://blogs.gutocarvalho.net/orixas" rel="nofollow">https://blogs.gutocarvalho.net/orixas</a></li>
<li><a href="https://blogs.gutocarvalho.net/archives" rel="nofollow">https://blogs.gutocarvalho.net/archives</a></li></ul>

<h2 id="conhece-o-coletivo-bolha">Conhece o Coletivo Bolha?</h2>

<p>Então vem conhecer o bolha.io ou bolhaverso!</p>
<ul><li>fediverso
<ul><li>mastodon, <a href="https://bolha.us" rel="nofollow">https://bolha.us</a></li>
<li>pixelfed, <a href="https://bolha.photos" rel="nofollow">https://bolha.photos</a></li>
<li>lemmy, <a href="https://bolha.forum" rel="nofollow">https://bolha.forum</a></li>
<li>bookwyrnm, <a href="https://bolha.review" rel="nofollow">https://bolha.review</a></li>
<li>writefreely, <a href="https://bolha.blog" rel="nofollow">https://bolha.blog</a></li>
<li>peertube, <a href="https://bolha.tube" rel="nofollow">https://bolha.tube</a></li>
<li>castopod, <a href="https://bolha.studio" rel="nofollow">https://bolha.studio</a></li>
<li>owncast, <a href="https://bolha.stream" rel="nofollow">https://bolha.stream</a></li>
<li>friendica, <a href="https://bolha.network" rel="nofollow">https://bolha.network</a><br></li></ul></li>
<li>chat
<ul><li>mattermost, <a href="https://mattermost.bolha.chat" rel="nofollow">https://mattermost.bolha.chat</a></li>
<li>zulip, <a href="https://zulip.bolha.chat" rel="nofollow">https://zulip.bolha.chat</a></li></ul></li>
<li>vídeo
<ul><li>jitsi, <a href="https://bolha.video" rel="nofollow">https://bolha.video</a><br></li></ul></li>
<li>frontends
<ul><li>lingva, <a href="https://translate.bolha.tools" rel="nofollow">https://translate.bolha.tools</a></li>
<li>libremdb, <a href="https://libremdb.bolha.tools" rel="nofollow">https://libremdb.bolha.tools</a></li></ul></li>
<li>translations
<ul><li>libretranslate, <a href="https://libretranslate.bolha.tools" rel="nofollow">https://libretranslate.bolha.tools</a></li></ul></li>
<li>editors
<ul><li>hedgedoc, <a href="https://notes.bolha.tools" rel="nofollow">https://notes.bolha.tools</a></li>
<li>draw.io, <a href="https://draw.bolha.tools" rel="nofollow">https://draw.bolha.tools</a></li>
<li>excalidraw, <a href="https://excalidraw.bolha.tools" rel="nofollow">https://excalidraw.bolha.tools</a></li>
<li>pdf stirling, <a href="https://spdf.bolha.tools" rel="nofollow">https://spdf.bolha.tools</a></li>
<li>wisemaping, <a href="https://mindmap.bolha.tools" rel="nofollow">https://mindmap.bolha.tools</a></li>
<li>mermaid, <a href="https://mermaid.bolha.tools" rel="nofollow">https://mermaid.bolha.tools</a></li>
<li>cryptpad, <a href="https://cryptad.bolha.tools" rel="nofollow">https://cryptad.bolha.tools</a></li></ul></li>
<li>secrets sharing
<ul><li>yopass, <a href="https://yopass.bolha.tools" rel="nofollow">https://yopass.bolha.tools</a></li>
<li>password pusher, <a href="https://pusher.bolha.tools" rel="nofollow">https://pusher.bolha.tools</a></li></ul></li>
<li>pastbin
<ul><li>yabin, <a href="https://yabin.bolha.tools" rel="nofollow">https://yabin.bolha.tools</a></li></ul></li>
<li>terminal recorder
<ul><li>ascinnema, <a href="https://ascinemma.bolha.tools" rel="nofollow">https://ascinemma.bolha.tools</a></li></ul></li>
<li>anti paywall
<ul><li>13ft, <a href="https://open.bolha.tools" rel="nofollow">https://open.bolha.tools</a></li></ul></li></ul>

<p>Nós temos muito mais para compartilhar contigo!</p>

<h3 id="quer-apoiar-nosso-trabalho-você-pode">Quer apoiar nosso trabalho? Você pode!</h3>
<ul><li><a href="https://www.patreon.com/bolha" rel="nofollow">https://www.patreon.com/bolha</a></li>
<li><a href="https://apoia.se/bolha" rel="nofollow">https://apoia.se/bolha</a></li>
<li>pix@bolha.us</li></ul>

<p>Te vejo no mastodon da bolha.us!</p>

<p>[s]</p>
]]></content:encoded>
      <guid>https://blogs.gutocarvalho.net/archives/2016-09-05-dotfiles-osx</guid>
      <pubDate>Mon, 05 Sep 2016 12:37:56 +0000</pubDate>
    </item>
  </channel>
</rss>