Opslag

OpenSUSE - Install codecs for H.264

First add Packman repository: Version: TumbleweedAll of Packman zypper ar -f -c http://ftp.gwdg.de/pub/linux/misc/packman/suse/openSUSE_Tumbleweed/ packman Version: Leap 15.0All of Packman zypper ar -f -c http://ftp.gwdg.de/pub/linux/misc/packman/suse/openSUSE_Leap_15.0/ packman Version: Leap 42.3All of Packman zypper ar -f -c http://ftp.gwdg.de/pub/linux/misc/packman/suse/openSUSE_Leap_42.3/ packman zypper dup --from packman To do to do ...  Sources: https://en.opensuse.org/Additional_package_repositories

OpenSUSE install RVM

https://rvm.io/ gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB \curl -sSL https://get.rvm.io | bash -s stable rvm get head rvm install ruby-2.5.0   Ruby header files: sudo zypper install ruby - devel

Ports for printerservices

I'm not sure which ports are exactly required, but here are a list of often used ones: TCP 80 (HTTP) TCP 443 (HTTPS) UDP 137 (WINS) UDP 161 (SNMP) UDP 162 (SNMP Traps) TCP 515 (LPR/LPD) TCP 631 (IPP) TCP 5000 (XML) TCP 5001 (IPDS) UDP 5353 (MDNS) TCP 8000 (HTTP) TCP 9000 (Telnet) TCP 9100 (Raw Print) TCP 9200 (IR Alerts) UDP 9200 (Discovery) UDP 9300 (NPAP) TCP 9400 (Lexmark Print Port) TCP 9500 (NPAP) TCP 9600 (IPDS) UDP 9700 (Plug-n-Print)   Normally just 9100 for RAW printing and 515 for LPD spooling. However, I know Windows clients (and I think Linux as well?) want to use SNMP to the printer to check on status, so consider 161 and 162 UDP as well. If you need to remotely administer the printer's network interface card, you might need 80 and/or 443 as well to pull up the Web management interface. https://ubuntuforums.org/showthread.php?t=1322110

SDDM / KDE white login screen problem

Update your system first. Remove your $HOME/.cache/ folder. Log in as root and cd to /var/lib/sddm and continue to remove the .cache folder in there as well. Source: https://www.reddit.com/r/openSUSE/comments/7vzuyh/tumbleweed_rebooted_with_no_upgraddes_clean_and/

Ruby gem: mysql2 . ERROR: Failed to build gem native extension.

I was getting: mysql client is missing. You may need to 'apt-get install libmysqlclient-dev' or 'yum install mysql-devel', and try again. This error can be resolved on OpenSUSE by installing the following: sudo zypper install libmysqld-devel

Installing pg gem - Can't find the 'libpq-fe.h header

Make sure PostgreSQL is installed. Find the pg_config file: find / -name pg_config 2>/dev/null gem install pg --version '0.18.4' -- --with-pg_config=PATH_TO_PG_CONFIG In my case: gem install pg --version '0.18.4' -- --with-pg_config=/usr/lib/postgresql96/bin/pg_config