Power & Source of Big Ideas

when not using the network manager = using /etc/network/interfaces you can configure the ethernet address via this interfaces file like eth0 in the following sample: auto lo iface lo inet loopback auto eth0 iface eth0 inet dhcp # clone mac address so we can get in net as instructed by IT hwaddress e...
normally fa is the password for root:

Ubuntu-Core User Accounts:

Non-root User:
User Name: pi
Password: pi

Root:
User Name: root
Password: fa
if you got the right distribution script.bin should be in /boot and not in /root
1 & 2 = YES 3 = NO :) when the board does start it will - like any Pi Board - send startup-messages (boot) to the serial port (ttyS0). After the boot-messages you will get a login-prompt. After login you could use the normal commands like on a SSH-session, but because you are DIRECTLY connected ...
If I take a look at the picture http://wiki.friendlyarm.com/wiki/index.php/File:Mini_Shield_for_NanoPi_Duo3.jpg I personally would think so....but I didnt really know it :( In the schematic at http://wiki.friendlyarm.com/wiki/images/9/9a/Schematic_NanoPi_Duo-V1.0_1706.pdf there are only 2 Pins for P...
search on the page
http://wiki.friendlyarm.com/wiki/index.php/NanoPi_Duo
for PWM and you will find the following:

Pin silk screen Name Linux gpio
DRX DEBUG_RX(UART_RXD0)/GPIOA5/PWM0 5
GPIOL3 doesnt seems to be readable via WiringNP :( root@NanoPiDuo:/home/guido# gpio readall +-----+-----+----------+------+---+-NanoPi-Duo--+------+----------+-----+-----+ | BCM | wPi | Name | Mode | V | Physical | V | Mode | Name | wPi | BCM | +-----+-----+----------+------+---+----++----+---+-----...
You could also use WiringNP for the GPIOs - according to the NanoPi Duo Wiki: http://wiki.friendlyarm.com/wiki/index.php/NanoPi_Duo#Access_GPIO_Pins.2FWirings_with_WiringNP Make a shell script: vi test.sh Type the following lines: LED=8 gpio mode $LED out while true; do gpio write $LED 1 sleep 0.5 g...
You could try to disable the Network Manager and configure manually like on the NanoPi Duo:
http://wiki.friendlyarm.com/wiki/index. ... _Static_IP
Looks like a bad or really slow MicroSD-Card. Which card you you use? Brand? Speed? Iam using a Sandisk Ultra 16GB , Speed: Class 10, 80MB/sec (grey/red - the white/red has only 48MB/sec) [EDIT]: Now I also see what you mean - I got this also showing up via dmesg: [290602.875821] sd 0:0:0:0: timing ...
I used the cpu_freq command and got the following: sudo cpu_freq INFO: HARDWARE=sun8i CPU0 online=1 temp=40822 governor=ondemand cur_freq=120000 CPU1 online=1 temp=41186 governor=ondemand cur_freq=240000 CPU2 online=1 temp=41186 governor=ondemand cur_freq=240000 CPU3 online=1 temp=41186 governor=on...
Hmm - after getting the script.bin from my Orange Pi PC and installing the needed things: apt-get -f -qq -y install sunxi-tools (this for bin2fex) apt-get install links hddtemp smartmontools I could start the rpimonitor-helper manually: /etc/init.d/rpimonitor-helper start but get some error (but it ...
I think the easiest way to check the actual cpu speed is using /usr/bin/armbianmonitor -m root@NanoPiDuo:~# /usr/bin/armbianmonitor -m Paketlisten werden gelesen... Fertig Abhaengigkeitsbaum wird aufgebaut. Statusinformationen werden eingelesen.... Fertig fping is already the newest version (3.13-1)...
Hi Frank, maybe you need a Virtual-Framebuffer (because without GFX-Card you didnt got a Framebuffer where the XServer can start with) - thats what I think personally. I googled a little around and did found this page: Headless VNC-Server using xvfb https://www.kaltpost.de/?page_id=84 You could chec...
Hi, the name of the blue LED "led_blue" could depend on the Operating System you do use. Today I installed my new NanoPi Duo and when I list the names of the LEDs I did get this: root@NanoPiDuo:/# ls /sys/class/leds nanopi:blue:status nanopi:green:pwr So with the ls-command you have to che...
Today I received my "Complete Starter Kit Neo2" with OLED-Hat. I got scared that the screen can burn in - so is there any chance to set a timeout for the display after pressing a key? I want to get the screen completly black after a special amount of time. And how can I change the content ...