Jolla Sailfish Schriftgröße ändern

03.03.2016 - Lesezeit: ~1 Minute

Bei together.jolla gefunden:

Per ssh auf dem Jolla anmelden und dann den folgenden Befehl eingeben.

$ dconf write /desktop/jolla/theme/font/sizeMultiplier 1.4

Dabei ist 1.0 der Standardwert.

Tags: Jolla

HP Notebook – 15-ac639ng

24.02.2016 - Lesezeit: 3 Minuten

HP Notebook – 15-ac639ng


Nach dem Upgrade auf Kubuntu 18.04.1 funktioniert das WLAN wieder nicht :-(

Anleitung: Realtek WLAN und Bluetooth unter Linux (RTL8723BE)


HP Notebook – 15-ac639ng

|Seriennummer:|CNDxxx |Produktnummer:|T9P54EA#ABD |Grafik:|AMD Radeon R5 M330 |Boot-Menü|F9

neue Firmware

wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux-firmware/linux-firmware_1.156_all.deb

Literatur

Auf dem Windowsrechner

  • Fastboot deaktivieren

Probleme bei der Inbetriebnahme des WLAN-Adapter rtl8723be

$ lspci -nnk | grep -i net -A2
02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller [10ec:8136] (rev 07)
        Subsystem: Hewlett-Packard Company Device [103c:8136]
        Kernel driver in use: r8169
03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter [10ec:b723]
        Subsystem: Hewlett-Packard Company Device [103c:804c]
        Kernel driver in use: rtl8723be
$ dmesg | grep wlan
[   21.520745] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[  363.944865] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
$ rfkill list
0: hci0: Bluetooth
        Soft blocked: no
        Hard blocked: no
1: phy0: Wireless LAN
        Soft blocked: no
        Hard blocked: no
$ git clone https://github.com/lwfinger/rtlwifi_new
$ cd rtlwifi_new
$ make
$ sudo make install
$ sudo modprobe rtl8723be
Tags: Linux-Hardware

Brother HL-3140CW unter Kubuntu 14.04

23.02.2016 - Lesezeit: ~1 Minute
  • Download des Treiber-Install-Tools
    $ gunzip linux-brprinter-installer-2.0.0-1.gz
    $ sudo sh linux-brprinter-installer-2.0.0-1
    Input model name ->                                                                                        
    HL-3140CW                                                                                                        
    You are going to install following packages.                                                                  
    hl3140cwlpr-1.1.2-1.i386.deb                                                                               
    hl3140cwcupswrapper-1.1.2-1.i386.deb                                                                       
    OK? [y/N] ->
    Y
    ...
    Will you specify the Device URI? [Y/n] ->
    Y
    select the number of destination Device URI. ->
    13
    enter IP address ->
    192.168.1.200
    Test Print? [y/N] ->
    y
    wait 5s.
    lpr -P HL3140CW /usr/share/cups/data/testprint
    Hit Enter/Return key.
Tags: Kubuntu 14.04

VMWare 12.x als Gast KDE-Neon und die Monitorauflösung

02.02.2016 - Lesezeit: ~1 Minute

Nach dieser Beschreibung von axebase.net vorgehen

$ cvt 1920 1200 60
# 1920x1200 59.88 Hz (CVT 2.30MA) hsync: 74.56 kHz; pclk: 193.25 MHz
Modeline "1920x1200_60.00"  193.25  1920 2056 2256 2592  1200 1203 1209 1245 -hsync +vsync
$ sudo nano /etc/X11/Xsession.d/45custom-xrandr-settings

Die folgende Zeile eintragen:

randr --newmode "1920x1200_60.00"  193.25  1920 2056 2256 2592  1200 1203 1209 1245 -hsync +vsync
$ sudo chmod +x /etc/X11/Xsession.d/45custom-xrandr-settings                                                                                                   
$ sudo reboot
Tags: VMWare xrandr

Nfixplayer für (K)ubuntu

02.02.2016 - Lesezeit: ~1 Minute

Erstinstallation

  • Zuerst das [PPA (Personal Package Archive)](http://wiki.ubuntuusers.de/Paketquellen_freischalten/PPA für nfix zur Paketliste hinzufügen)
  • Dann die Paketliste aktualisieren
  • Danach das Programm installieren
    sudo add-apt-repository ppa:i-n8ws-t/ppa 
    sudo apt-get update
    sudo apt-get install nfixplayer
Tags: ppa Nfixplayer

Drupal 7 reparieren

12.01.2016 - Lesezeit: ~1 Minute

Vom Kunden kam eine mit mySQLDumper erzeugte Datensicherung, einer nicht mehr vorhandenen Drupal7-Installation.

Im Root-verzeichnis der Drupal Installation wechseln und dann den hashwert des Passwortes erzeugen:

$ ./scripts/password-hash.sh "123456"

password: 123456   hash: $S$DT8/WxCb4Z76LesMA.f/sA9q3TDNx0p9iOYSyQRbx4qoncyt1zry

Den Hash-Wert des Admin-Passwortes setzen:

UPDATE users SET pass ='$S$DT8/WxCb4Z76LesMA.f/sA9q3TDNx0p9iOYSyQRbx4qoncyt1zry' WHERE uid = 1;

Das Standard-Thema setzen:

UPDATE system SET status=1 WHERE name = 'garland';
UPDATE variable SET value='s:7:"garland"' WHERE name = 'theme_default';

Den Drupal-Cache löschen

TRUNCATE cache;
TRUNCATE cache_bootstrap;
TRUNCATE cache_block;

Für den Admin das Garland Thema einstellen (nur nötig falls ein User Theme benutzt wird):

UPDATE users SET theme='garland' WHERE uid = '1';

Den temporären Pfad neu stellen:

UPDATE 
    variable 
SET 
    variable.value = 's:4:"/tmp";' 
WHERE
    variable.name='file_temporary_path';
Tags: Drupal7