Postagens

Emulando Atary, Nintendo, Gameboy e Supernintendo no Ubuntu

Imagem
 Emulando Atary, Nintendo, Gameboy e Supernintendo no Ubuntu, inclusive com joystick USB: Digite o comando abaixo no terminal, logado como root (#): apt-get install stella higan joystick HIGAN: Accurate Nintendo multi-system emulator  higan is an emulator for Nintendos SNES, NES, Gameboy, Gameboy Color  and Gameboy Advance. It was formerly called bsnes and the SNES  emulation is especially complete and polished. STELLA: Emulador de Atari 2600 para SDL e o X Window System  Stella é um emulador portátil para o antigo console de videogame Atari  2600. Ele suporta a maioria dos jogos do Atari 2600.

Unrar Funcionando Corretamente no Fedora

Para quem não sabe, o unrar é o extrator e compactador de arquivos .rar. Para aqueles que, como eu, enfrentavam problemas com a versão do unrar do repositório desde a verão 22 do Fedora, a adição deste repositório resolveu (digite no terminal e logado com o root): Repositório: dnf install --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm Depois instale: dnf update && dnf install unrar

Atualizando o Fedora 24 para o Fedora 25 via Linha de Comando

Imagem
Digite a sequência de comandos abaixo no Terminal(logado como root): #Logue com o root: su - #Atualize o sistema: dnf upgrade --refresh #Instale o plugin DNF que fará a atualização: dnf install dnf-plugin-system-upgrade #Baixe os pacotes referente a versão 25 (+- 2GB): dnf system-upgrade download --releasever=25 #Reinicie o Computador e conclua a atualização (Deve demorar um pouco): dnf system-upgrade reboot Fonte

CentOS7 - YUM UPDATE: does not match metalink for epel

Se você está pegando a falha abaixo no yum update: One of the configured repositories failed (Extra Packages for Enterprise Linux 7 - x86_64),  and yum doesn't have enough cached data to continue. At this point the only  safe thing yum can do is fail. There are a few ways to work "fix" this:      1. Contact the upstream for the repository and get them to fix the problem.      2. Reconfigure the baseurl/etc. for the repository, to point to a working         upstream. This is most often useful if you are using a newer         distribution release than is supported by the repository (and the         packages for the previous distribution release still work).      3. Disable the repository, so yum won't use it by default. Yum will then         just ignore the repository until you permanently enable it again or use         --enablerepo...

Por que FreeBSD

Um tour rápido da alternativa BSD: https://www.ibm.com/developerworks/br/library/os-freebsd/

Resolvendo problemas ao Conectar com o Openvpn do Fedora

Nesta dica vamos fazer o cliente do openvpn conectar pelo Fedora. Apenas consegui fazer funcionar pelo NetworkManager. O problema está no reconhecimento do certificado do MD5 nesta versão do Fedora; Resolvendo temporariamente: Digite as 2 linhas abaixo no terminal: export NSS_HASH_ALG_SUPPORT=+MD5 export OPENSSL_ENABLE_MD5_VERIFY=1 Resolvendo Definitivamente: Edite o arquivo /usr/lib/systemd/system/NetworkManager.service e adicione logo abaixo da linha [Service] Environment="OPENSSL_ENABLE_MD5_VERIFY=1 NSS_HASH_ALG_SUPPORT=+MD5" Depois um reload: systemctl daemon-reload E um restart no serviço do NetworkManager systemctl restart NetworkManager.service Agora é só importar o aqruivo .ovpn pelo NetworkManager e conectar por ele; https://ask.fedoraproject.org/en/question/80081/fedora-23-unable-to-verify-openvpn-certificate-after-update/ http://software-engineer.gatsbylee.com/centos7openvpn-verify-error-depth0-errorcertificate-signature-fa...

KDEConnect - Integrando o Linux com o seu Celular Android

Imagem
- Integre os alertas do Linux com o seu celular Android; - Comande o mouse e teclado do Linux com o celular; 1) INSTALAÇÃO: 1.1) NO FEDORA: dnf install kde-connect-0.9-7.fc24 1.2) NO UBUNTU: sudo add-apt-repository ppa:vikoadi/ppa -y && sudo apt-get update && sudo apt-get install indicator-kdeconnect kdeconnect -y 2) FIREWALL: Liberar conexões entrantes TCP e UDP para o range de portas:  1714 a 1764 2.1) SE O SEU FIREWALL FOR O UFW (Unbuntu):   sudo ufw allow 1714:1764/udp   sudo ufw allow 1714:1764/tcp   sudo ufw reload 2.2) SE O SEU FIREWALL FOR IPTABLES:   IPTABLES -A INPUT -p tcp --dport 1714:1764 -j ACCEPT   IPTABLES -A INPUT -p udp --dport 1714:1764 -j ACCEPT Mais detalhes: https://community.kde.org/KDEConnect