Zum Inhalt springen

Kategorie: Software

Themen rund um Software


Kategorien:

Ubuntu 16.04 – auto mount smb share

Beitrags Datum:
Autor:
Schlagwörter:
Anzahl Kommentare: keine Kommentare

Create a file where your smb credentials are stored. e.g. touch /etc/samba/user sudo gedit /etc/samba/user Enter your credentials like this: username=samba_user password=samba_user_password create the directory where you want your smb share should be mounted sudo mkdir /media/smb_share edit your fstab to auto-mount your smb share sudo gedit /etc/fstab add a line like this: //myserver_ip_address/folderToShare/ /media/smb_share/ […]

Kategorien:

Outlook 2016 – Posteingang IMAP keine Mails

Beitrags Datum:
Autor:
Schlagwörter:
Anzahl Kommentare: keine Kommentare

Lösung – der Stammordnerpfad mus bei den Kontoeinstellungen angegeben werden: Datei -> Kontoeinstellungen -> Kontoeinstellungen -> Reiter „E-Mail“ wählen -> Konto auswählen -> auf „Ändern“ klicken -> auf „Weitere Einstellungen“ klicken -> Reiter „Erweitert“ wählen -> Im Feld „Stammordnerpfad“ wird INBOX eingetragen -> „OK“ klicken -> „Weiter“ klicken -> „Schließen“ klicken -> „Fertig stellen“ klicken […]

Kategorien:

BananaPI + Raspbian + fhem + 7″ Touch panel

Beitrags Datum:
Autor:
Anzahl Kommentare: keine Kommentare

Last week i installed fhem and the 7″ Touch panel from www.pollin.de on my BananaPI running the Beta 1 Raspbian with Kernel. Here’s the setup: BananaPI + Case + Powersupply 8 GB SD Card (Class 10) Touchscreen (LS-7T from www.pollin.de) + Powersupply HDMI cabel First you have to put the Raspbian Image (downloaded from bananapi.com […]

Kategorien:

Case for 7″ touch display LS-7T + Use it with 5V DC

Beitrags Datum:
Autor:
Schlagwörter:
Anzahl Kommentare: keine Kommentare

Case for 7″ touch display LS-7T Get the display from www.pollin.de The Display can be used from 9V – 18V. If you want to use it with 5V like your Raspberry, have a look at this topic, where there’s a how-to for 5V https://www.mikrocontroller.net/topic/330641

Kategorien:

BananaPi 7″ Touchdisplay direct connect

Beitrags Datum:
Autor:
Schlagwörter:
Anzahl Kommentare: keine Kommentare

Some hints how to connect a 7″ Touch display (the LS-7T from www.pollin.de) to the lvds connector of the BananaPi Modify script.bin http://www.rdklein.eu/rdpiforum/viewtopic.php?f=61&t=2641 Connect Display: http://wiki.lemaker.org/index.php?title=BananaPro/Pi:LCD_Module&curid=124&diff=1971&oldid=1969 Did not work under Raspbian, because it did not contain a script.bin in the /boot folder Did not work under Debian. Replaces 50kb script.bin with the ~5mb script.bin…black display, […]

Kategorien:

Remote desktop on BananaPI

Beitrags Datum:
Autor:
Schlagwörter:
Anzahl Kommentare: keine Kommentare

Tested on Lubuntu 3.1 apt-get install vino lxde xrdp #After installation type the following and do your settings: vino-preferences Edit  /etc/xrdp/startwm.sh (i use nano) and change settings: #!/bin/sh if [ -r /etc/default/locale ]; then . /etc/default/locale export LANG LANGUAGE fi #. /etc/X11/Xsession <----- Type a "#" and insert . /usr/bin/startlxde

Kategorien:

BananaPI route audio over HDMI

Beitrags Datum:
Autor:
Schlagwörter:
Anzahl Kommentare: keine Kommentare

Default, audio comes over audio jack, but i wanted to route over hdmi, because i have an AV-Receiver with a high-quality audio engine which should do the transfer from digital to analog signal. Successfully tested it with Lubuntu 3.1.1 and Bananian. First, install pulseaudio apt-get install pulseaudio Configure your /etc/pulse/default.pa. Add the following line at […]

Kategorien:

Compile kernel on BananaPI

Beitrags Datum:
Autor:
Schlagwörter:
Anzahl Kommentare: keine Kommentare

Requires SD Card with >=4GB: apt-get install git build-essential libncurses5-dev u-boot-tools uboot-mkimage cd ~ git clone https://github.com/LeMaker/linux-bananapi.git --depth 1 cd linux-bananapi make sun7i_defconfig make menuconfig make -j2 uImage modules make modules_install mount /dev/mmcblk0p1 /boot cp arch/arm/boot/uImage /boot reboot