Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 29,329
» Latest member: Pamax9
» Forum threads: 16,153
» Forum posts: 116,703

Full Statistics

Latest Threads
XLibre for Mobian
Forum: Mobian on PinePhone
Last Post: Hiraghm
1 hour ago
» Replies: 0
» Views: 8
Backing up data on Pineph...
Forum: General Discussion of PinePhone Pro
Last Post: biketool
2 hours ago
» Replies: 3
» Views: 52
Full desktop Surfing and ...
Forum: General Discussion of PinePhone Pro
Last Post: biketool
2 hours ago
» Replies: 3
» Views: 52
Printing and scanning doc...
Forum: General Discussion of PinePhone Pro
Last Post: biketool
2 hours ago
» Replies: 4
» Views: 73
Printing and scanning doc...
Forum: General Discussion on Pinebook Pro
Last Post: Www
Yesterday, 01:25 AM
» Replies: 0
» Views: 64
Full desktop Surfing and ...
Forum: General Discussion on Pinebook Pro
Last Post: Www
Yesterday, 01:04 AM
» Replies: 0
» Views: 32
Backing up to bluray/dvd ...
Forum: General Discussion on Pinebook Pro
Last Post: Www
Yesterday, 12:55 AM
» Replies: 0
» Views: 28
Found newer firmware for ...
Forum: Linux on Pinebook Pro
Last Post: reukiodo
06-26-2025, 10:35 PM
» Replies: 3
» Views: 5,218
Unable to install Debian ...
Forum: Linux on Pinebook Pro
Last Post: reukiodo
06-26-2025, 09:20 PM
» Replies: 8
» Views: 7,347
FM? A future new PinePhon...
Forum: General Discussion of PinePhone Pro
Last Post: zetabeta
06-26-2025, 11:47 AM
» Replies: 1
» Views: 94

 
  Wifi/Bluetooth module
Posted by: riahim - 05-07-2016, 11:52 AM - Forum: POT modules - Replies (7)

Will the Wifi/bluetooth module provide both wifi and bluetooth at the same time or is it just one or the other?
Also, is there something I can use in the meantime until the store officially opens up?


  1440x900 via HDMI to VGA converter
Posted by: RaspiBit - 05-07-2016, 08:51 AM - Forum: Remix OS - Replies (3)

Hi, my screen displays image at 1440x900 max but my pine outputs Full HD. I know that it's not a problem because my Raspberry Pi (first one, model B) on the same converter adapts the output to my display resolution. Is there any way to fix it on my pine?


  USB Wifi drivers avail in new kernel (3.10.101-0-pine64-longsleep)
Posted by: rahlquist - 05-07-2016, 07:37 AM - Forum: Wifi/BT Module - Replies (5)

Ok quick guide with some of the basics. I am using longlseeps kernel on debian. 

First make sure you have his latest kernel. To check you can issue;


Code:
uname -a


at a command prompt. If you dont see the kernel version in the subject of this post or higher then run the magic;

Code:
bash <(curl -s https://raw.githubusercontent.com/longsleep/build-pine64-image/master/simpleimage/platform-scripts/pine64_update_uboot.sh)
bash <(curl -s https://raw.githubusercontent.com/longsleep/build-pine64-image/master/simpleimage/platform-scripts/pine64_update_kernel.sh)
Info about this kernel is at http://forum.pine64.org/showthread.php?t...08#pid8808

Ok once you have the latest kernel, power down the pine, insert your USB device and power up.

Once you are able to login you should see if the device was detected either 

Code:
lsusb

or

dmesg
should show you some basic info on your device. If you see it, great lets move on to the next step.

Now try;

Code:
iwconfig
if for wlan0 you see anything other than;

Code:
wlan0      no wireless extensions.
Things are looking up. 

Next I will show you the changes I made to my /etc/network/interfaces and /etc/wpa_supplicant/wpa_supplicant.conf


Ok /etc/network/interfaces first, I added this to the existing file

Code:
auto wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface pine64 inet static
address 192.168.0.165
netmask 255.255.255.0
gateway 192.168.0.1

You can see I manually set the IP of my pine. You can do it with DHCP instead 

Code:
auto wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
iface pine64 inet dhcp

Note the change from wpa-roam to wpa-conf not sure why, but it works.

In the /etc/wpa_supplicant/wpa_supplicant.conf I have this;


Code:
network={
       ssid="dd-wrt_vap"
       psk="1234567890"
       proto=RSN
       key_mgmt=WPA-PSK
       pairwise=CCMP
       group=CCMP
       auth_alg=OPEN
       priority=9
       id_str="pine64"
}
Of course change the SSID to match your network, the psk to match the key for WPA on your network, and the id_str should match the iface in the interfaces file. 

After you have made the changes you can issue


Code:
ifup iwlan0
If it works, you are in business. If not, for giggles reboot. If its still not working then please note any issues and ask away. 

A few things to note. If you leave eth0 set to auto and dhcp your pine may pause while it tries to connect there first it seems. 
If your wifi adapter is a ra-link then you will probably need to dl the firmware, google is the best bet for finding the right instructions for this part. In my case I had to enable non free sources for debian as well. 

As always I am not an expert, merely worked in IS for 23 years and am an enthusiast. I am open to questions suggestions and critique.

One last thing, thanks again to longsleep others for their hard work!

Some Iperf numbers since I know some may wonder, YMMV!
Code:
root@debianpine64:~# iperf -c 192.168.0.45
------------------------------------------------------------
Client connecting to 192.168.0.45, TCP port 5001
TCP window size: 22.5 KByte (default)
------------------------------------------------------------
[  3] local 192.168.0.165 port 43787 connected with 192.168.0.45 port 5001
[ ID] Interval       Transfer     Bandwidth
[  3]  0.0-10.0 sec  46.6 MBytes  39.0 Mbits/sec


  Startx Error
Posted by: jl_678 - 05-07-2016, 07:27 AM - Forum: Ubuntu - Replies (1)

Hi,

I just installed Longsleeps base Ubuntu image and and then used the included script to install Mate desktop.  All went smoothly.  I now want to use Mate to configure Wifi.

I run StartX and the first problem I ran into was 


Code:
(EE) parse_vt_settings: Cannot open /dev/tty0 (No such file or directory)

I think that that was due to the fact that I needed to run startx as root.  (I included that example in case someone searches the forum.)  Anyway, I then ran "sudo startx" and then the system hands with the following error messages.


Code:
modprobe: FATAL: Module g2d_23 not found in directory /lib/modules/3.10.65-7-pine64-longsleep
modprobe: FATAL: Module mali_drm not found in directory /lib/modules/3.10.65-7-pine64-longsleep
modprobe: FATAL: Module sunxi_cedar_mod not found in directory /lib/modules/3.10.65-7-pine64-longsleep
SunxiMaliDRI2_Init: drmOpen failed!

So this brings me to my questions.  Did I do something wrong?  Is there something I can do to fix this?

Finally, is there a simple way to configure wireless via the CLI?  That is my first goal because I am running this headless.

Thank you!


  Howto run Linux with resolution other than 1080p
Posted by: longsleep - 05-07-2016, 06:26 AM - Forum: Linux on Pine A64(+) - Replies (28)

Many people seem to have issues with the fixed 1920x1060@60Hz resolution i ship my U-Boot and Linux images with. Until now you needed to be a developer to change the resultion to anything else.

This has now changed.

I created a tool which can change the resolution. Say hello to sunxi-disp-tool.

I provide a binary package for Ubuntu 16.04 Xenial Xerus (arm64) in my Ubuntu Pine64 Makers PPA.

If you do not run my Ubuntu Xenial image it is now a good time to change that. See the Ubunu 16.04 Xenial Xerus thread for download and instructions.

Other than the tool itself, you need:
- U-Boot v2014.07-4-pine64 or later
- Kernel 3.10.101-0-pine64-longsleep-39 or later

I will eventually release an updated Xenial image which has those - for now update as usual (as root) with:

Code:
bash <(curl -s https://raw.githubusercontent.com/longsleep/build-pine64-image/master/simpleimage/platform-scripts/pine64_update_uboot.sh)
bash <(curl -s https://raw.githubusercontent.com/longsleep/build-pine64-image/master/simpleimage/platform-scripts/pine64_update_kernel.sh)

Then you can just add the desired resolution to /boot/uEnv.txt (eg. as optargs). By default the sunxi-disp-tool looks for a Kernel parameter called disp.screen0_output_mode to be in line with other sunxi boards.

Quick instructions for 720p60 (1280x720p@60Hz):
Code:
sudo apt-get update && sudo apt-get install sunxi-disp-tool
cat <<EOF | sudo tee -a /boot/uEnv.txt
optargs=disp.screen0_output_mode=720p60
EOF
sudo reboot

For a list of supported resolutions see README.md.

I will work on other distributions as well, but you need to install it manually and integrate it manually into the boot system. I strongly advice to use my Ubuntu image.


Your feedback is most welcome.


  pine64 + 2gb is a dead plate.
Posted by: may1791 - 05-07-2016, 06:17 AM - Forum: General Discussion on PINE A64(+) - Replies (3)

You invest your money in a car that you say it works everything, including brakes, knowing that they have not proven manufacturers?.
So difficult was to test the connection to the network, with a minimum operating system.
They do not respond because manufacturers and designers, and tell the truth, they screwed up and do not know how to solve the monumental failure of the plates 2GB.
I'm disillusioned and fustrado after investing in the project pine64 kickstarter and ignore users.
A greeting.


  Connect i2c under Remix OS
Posted by: IlyaM - 05-07-2016, 06:03 AM - Forum: Remix OS - Replies (2)

Hi everyone. Could you tell me how can I connect i2c device to pine64 under Remix OS. I plugged pins to pi-2 connector of pine64

Vin -> Pin1 (Vdd)
GND -> Pin6 (Gnd)
SDA -> Pin3 (SDA)
SCL -> Pin5 (SCL)

Wrote some app on Android to detect I2C device, it shows no devices, moreover my i2c device has led which is on when the vdd is plugged, i see that led is off.

I've attached the picture where you can see how my device plugged and its state (led is off)

link


  ARM audio recording/editing.
Posted by: Vidiot - 05-06-2016, 08:30 PM - Forum: Linux on Pine A64(+) - Replies (3)

Hello all!

I currently use JACK/Ardour for recording via a Focusrite Scarlett 2i2 USB A to D box on my desktop/laptop. There is no ARM version of Ardour, but I would LOVE a fanless portable linux box to record multiple tracks.

Are there any recommendations out there for me to use to put my PINE 64 and Focusrite to work as a portable audio recorder/editor?

Thanks in advance!
MB


  network on pine64+
Posted by: spz2k - 05-06-2016, 07:12 PM - Forum: Linux on Pine A64(+) - Replies (5)

Hi,

I have a pine64 1gb. It works well... but the network card link light (green) blink. Is it a known bug in the driver or a problem with the card itself?


  PINE A64 EmulationStation a Flop? Or I'm noob?
Posted by: Hoarfen - 05-06-2016, 06:17 PM - Forum: Game Station Emulation - Replies (9)

Hi all,

So i have Ubuntu install on the pine as well as retroarch and emulationstation. If version is needed to help ill post it later.
Everything is running, but the performance and small issues are killing me. 

Retroarch: seem to have been installed properly however when i launch it, the menu appears and no controller, keyboard or mouse seems able to move it at all.search the web and tryu to change the conf regarding the to set all the possible values, result = 0 .... input_driver = "udev"


Emulationstation: running but as it enter everything is so dam slow, the controllers didnt work properly i was able to set some buttons, but not all it seem it didnt respond... try other remotes same situation. was able to set the keyboard perfectly. but the perfomance of the menu is awful and not responding it seams.,,,,

So i dont know if is the OS, the conf, the pine or the user :Tongue HELP???? Huh Huh Huh Huh