Thursday, August 22, 2019

Install .deb package and dependencies

 Example:

wget http://ftp.jp.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.6_all.deb
dpkg -i ttf-mscorefonts-installer_3.6_all.deb
apt -f install
apt install fontconfig

Tuesday, August 13, 2019

Create read only user on Postgres

GRANT SELECT ON ALL TABLES IN SCHEMA public TO username;

ALTER DEFAULT PRIVILEGES IN SCHEMA public
GRANT SELECT ON TABLES TO username;

Monday, August 12, 2019

pgAdmin 4 bug when install Python 3

pgAdmin 4 has bug table_oid on query check it https://stackoverflow.com/questions/57226520/select-does-not-return-values-postgres-11-4

Saturday, July 13, 2019

insufficient permissions for device

retrieving device properties for ro.product.cpu.abi:
error: insufficient permissions for device: user in plugdev group; are your udev rules wrong?

--> change Charge devic to PTP on USB config of Phone

Friday, July 12, 2019

Monday, May 6, 2019

Oracl basics

source /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.sh

/etc/init.d/oracle-xe start

/etc/init.d/oracle-xe stop

sqlplus / as sysdba

Thursday, October 25, 2018

Scale Firefox and Chrome on HIDPI

Firefox:
about:config
layout.css.devPixelsPerPx --> change value from 1.5 to 3

Chrome
Open a terminal 

sudo gedit /usr/share/applications/google-chrome.desktop

Find this line:
Exec=/usr/bin/google-chrome-stable %U
Change n into 1.5 to 3:
Exec=/usr/bin/google-chrome-stable --force-device-scale-factor=n %U

Save/close, relaunch Chrome.