sábado, 1 de dezembro de 2018

Manjaro (Arch Linux) doesn't recognize 3.0 USB devices. How to Solve?

After a kernel update in my manjaro deepin, my USB 3.0 external storage device stopped working, only working in a 2.0 USB. This is related with the idle discovery configuration in tlp, i really don't know why but here's how to solve it.


Connect your device and run the command lsusb in terminal to list the usb devices. Copy your device ID.

Save your device ID somewhere
Open tlp configuration with your prefered text editor, in this example i'll use gedit. Run in terminal:

sudo gedit /etc/default/tlp

Add the line with your device ID like:

USB_BLACKLIST="YOURDEVICEID"

In my case:


Reboot your PC and your device should be properly working.







domingo, 30 de setembro de 2018

How to use Xiaomi MI Router 3 USB storage on linux and Windows without softwares

Xiaomi released some routers with USB interfaces that can be used with external storage devices for accessing files remotely on your network. It works, but needs a software to access those files. Xiaomi's software doesn't work well on Windows and doesn't work at all on linux, but there's a way to trick it and use with SMB protocol in any device.


Plug your USB Drive on the router USB and wait a couple seconds to the router create it's files.

Remove the drive and plug it in your pc. Use your text editor (gedit, nano, notepad) to access the file "xiaomi_config/xiaomi_extSharePath.cfg" on the root of the USB.

Insert the folder name that you want to share. If you want to share everything, add "/" like in the image below:

On windows, you can access your files on \\YOURROUTERIP, in Linux SMB://YOURROUTERIP and connect anonymously to the folder.

Connecting to the router

Root of the router


Root of the USB storage device

terça-feira, 31 de julho de 2018

Como usar o Remote Play em qualquer celular Android - Método garantido

Deprecado - Hoje você pode baixar o PS4 Remote play na Playstore e usar normalmente, não é necessário os passos abaixo.

Remote play é uma funcionalidade que permite aos usuários do sistema PS4 utilizarem-o sem necessariamente estar no mesmo quarto que o console ou que a tv do console esteja, fazendo streaming dos jogos para o seu PC, Mac ou android. Porém no android a Sony limitou essa funcionalidade à somente alguns de seus dispotivos (Xperia Z3, Xperia Z4, etc.), ou seja, você não pode instalar o aplicativo no seu android e usufruir dessa funcionalidade. Entretanto os developers, que não descansam nunca, conseguiram uma forma de fazer o Remote play funcionar em qualquer smartphone, mas o processo é um pouco complicado então por isso estou fazendo esse tutorial.

O intuito desse tutorial é instalar o Magisk/Magisk Manager, que com a utilização de alguns módulos irá permitir usar o Remote Play.

Porém para instalar o Magisk, é necessário ter uma custom recovery e para ter uma custom recovery é necessário ter o bootloader desbloqueado e isso, dependendo do modelo do seu celular, irá acarretar na perda de garantia, então leia o tutorial antes de começar o processo e veja se é viável para você.

O desbloqueio de bootloader é único para cada celular então não tem como eu explicar de uma forma genérica para todos os modelos de celular, logo o que você deve fazer é pesquisar pelo modelo do seu celular + desbloqueio de bootloader + custom recovery, ou root + custom recovery, não é algo extremamente difícil. Se voce seguir todos os passos deve dar certo, e qualquer duvida voce pode deixar um comentário que eu irei ajudar.



Então vamos começar agora imaginando que você já tenha uma custom recovery. Lembrando que vou deixar o link para todos os arquivos na descrição

Downloads
Magisk e Magisk Manager
PS4 Remote Play

1# - Baixe o arquivo Magisk*.zip e copie para memoria interna do seu celular.

2# - Desligue o celular e inicie-o na custom recovery. Nós celulares motorola por exemplo, você segura o botão "power" junto ao botão "volume -" pra entrar no bootloader e, então, usa as teclas de volume e power para navegar até a opção "recovery". Ele irá reiniciar na TWRP, que é a minha custom recovery.

3# - Clique em "Install" e selecione o arquivo Magisk*.zip que você copiou para o seu celular anteriormente (passo #1). Após o fim do processo reinicie o celular.

3.1# - Se o app do Magisk manager não aparecer nos seus aplicativos, instale-o manualmente (MagiskManager*.apk).

4# - Abra o Magisk e verifique se está tudo funcionando. As vezes é necessário reinstalar o Magisk*.zip (passo 3#)

5# - No menu lateral do Magisk, selecione downloads e instale o módulo "Sony Framework". Quando terminado reinicie o celular.




6# - Instale o Apk do Remote play - Ele irá receber atualizações da Playstore normalmente.

7# - Abra o Magisk. No menu lateral selecione Magisk hide e marque o app do Remote Play (Serve para "esconder" o root do remote play.



8# - No seu PS4 vá em "Configurações" > "Configurações de conexão para o Uso remoto" e habilite o acesso remoto.


9# - Abra o App do Remote play e logue na sua conta.

Logo após esses passos o seu Remote Play já deve estar funcionando normalmente, uma dica é não ficar muito longe do roteador para receber uma transmissão melhor.



domingo, 20 de maio de 2018

Force update Kubuntu and KDE Neon to the newest Plasma

This was originally to the 5.13 plasma, but it will update to the latest version whatever it is.

Plasma 5.13 brought a lot of innovations, including transparent in-program background.



To force the latest update in ubuntu based distros like KDE Neon/ Kubuntu you just have to add the KDE ppa to unstable releases. Remember that this can broke your system, so be carefull.

Use this command to add the ppa:

sudo apt-add-repository ppa:kubuntu-ci/unstable

Update your repo and upgrade your packages:

sudo apt update && sudo apt upgrade

I also recommend you to also install the ppa purge to remove the ppa if it's needed.

sudo apt install ppa-purge



If you want to remove the ppa run:

sudo ppa-purge ppa:kubuntu-ci/unstable


sábado, 19 de maio de 2018

Fix KDE Plasma no touchpad Settings (Unchangeable Gray options) on Ubuntu And Arch Linux Based distros

After fresh installing the system, the touchpad settings aren’t available for adjusting, all the options are gray. i’ve noticed that in Kubuntu and manjaro, so probably can happen in KDE Neon also. This is a bug in the touchpad driver integration with system, so to solve you just have to install another touchpad driver.





In a Debian-based distro use the next command for searching for drivers:

apt-cache search synaptics

This is the driver that worked better on my pc, but you can try any of these.


In Arch-based distros you can use yaourt or pacaur to search for it.

Copy the package name and use the command:

sudo apt install 

and paste the package name. in my case:

sudo apt install xserver-xorg-input-synaptics

Hit enter, input your password and confirm the installation.

After the installation finishes, reboot your system and that’s it. your touchpad should work properly.