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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 29,938
» Latest member: Ephraim
» Forum threads: 16,330
» Forum posts: 117,428

Full Statistics

Latest Threads
dead Pinebook - help plea...
Forum: General Discussion on Pinebook Pro
Last Post: williamcorlin
Yesterday, 04:22 PM
» Replies: 3
» Views: 652
Womens In Your City - Ano...
Forum: General
Last Post: Hipocrates
Yesterday, 01:01 AM
» Replies: 0
» Views: 69
BT PAN - we need iptables...
Forum: Mobian on PinePhone
Last Post: biketool
03-25-2026, 12:57 PM
» Replies: 1
» Views: 461
How can I record video on...
Forum: General Discussion on PinePhone
Last Post: baptx
03-25-2026, 12:55 PM
» Replies: 23
» Views: 18,398
u-boot rk356х (rockchip r...
Forum: Quartz64 Tutorials
Last Post: hamsterbacke
03-25-2026, 09:39 AM
» Replies: 18
» Views: 34,011
A/V output enable
Forum: Linux on Rock64
Last Post: 8lall0
03-24-2026, 04:45 PM
» Replies: 0
» Views: 68
If your USB-C port is fla...
Forum: PinePhone Pro Hardware
Last Post: Zebulon Walton
03-24-2026, 02:25 PM
» Replies: 0
» Views: 89
Pinebook problem
Forum: General Discussion on Pinebook Pro
Last Post: RicTor
03-18-2026, 08:58 AM
» Replies: 2
» Views: 4,689
Pine a64+ power supply
Forum: General Discussion on PINE A64(+)
Last Post: davidspencer
03-18-2026, 01:02 AM
» Replies: 0
» Views: 172
Private / self-hosted "Cl...
Forum: General Discussion on PinePhone
Last Post: cyberb123
03-17-2026, 11:57 AM
» Replies: 8
» Views: 7,224

 
  HDMI CEC on Android
Posted by: fneves - 04-13-2016, 05:45 PM - Forum: Android on Pine A64(+) - Replies (39)

Hello,

Is there a way to have HDMI CEC on Android? Smile

Thanks!


  How to handle a Pine64 correctly
Posted by: gbjensen - 04-13-2016, 12:42 PM - Forum: Getting Started - Replies (6)

I think many of the Backers are not used to handle unprotected highly integrated electronic PCB's without encapsulation. 

There are several issues to consider, but first of all:

Electrostatic protection:
   
The board and component added to the PCB (Printed circuit Board) can be very sensitive to electrostatic discharges. 
Sources of electrostatic discharges can be YOU or the materials you use together with the Pine 64. 

If the Pine 64 is exposed to electrostatic discharges can the result be a defect Pine 64 - ether immediately or latent - waiting for a moment when it is absolutely not wanted or expected to fail. 

Protect it against electrostatic discharges. The board comes wrapped into a anti electrostatic bag and whenever you handle the board makes sure that you and where you place it have the same electrostatic potential as the Pine 64.

If possible, handle it at a protective work space away from chargeable materials like carpets, nylon, plastic bags etc. 
When you want to remove it from the bag, place it on a protective surface (e.g. on top of the anti static bag).
If you do not have an electrostatic save work desk (I do not suppose you have!) use a table made of non conductive materials ( e.g. wood or glass. Cardboard is also usable) but keep it away from electrostatic chargeable materials like nylon. Also think about what you wear. Prefer cotton, avoid synthetic materials.

Discharge your hand by touching the work area and the Pines anti static back. When removing it from the bas, grab it by one of the metallic connectors and the edges of the PCB. Avoid to touch the electronic circuits. (Both with and without power connected to the board.)

Make sure your pine and your other connected equipment have the same electrical potential. Use the ground / shield connections for this. If possible mount it into a conductive box (isolated from it naturally ) connect the GND or shield to the box. Thereby will you protect against electrostatic discharges but also limit the HF radiation from the Pine a bit.


  Minecraft: Pi Edition
Posted by: cbogdan - 04-13-2016, 12:01 PM - Forum: Linux on Pine A64(+) - Replies (2)

Hello,

I've seen that a few people have Minecraft running on Pine with Ubuntu. Did anybody try to install and run Minecraft: Pi Edition? If you were successful, please include detailed instructions.

Thanks,
Bogdan


  ABS Case
Posted by: MikeJewski - 04-13-2016, 08:55 AM - Forum: General Discussion on PINE A64(+) - Replies (6)

I know the Pine team is exteremly busy with getting everyones orders out, but has there been any more information released on what is going on with the ABS case? I know there was talk about shipping the case separately, as well as just waiting until the new batches come out.


  HDMI Issue...
Posted by: LeRoms77 - 04-13-2016, 08:33 AM - Forum: General Discussion on PINE A64(+) - Replies (4)

Hello devs, is there a way to use a DVI monitor with adapter HDMI->DVI right now, if not are you planning to make this change. The vast majority of monitors are DVI or VGA, so the board is almost useless right now.

Thanks in advance


  Assembly Programming in Pine64
Posted by: mustaphos - 04-13-2016, 05:29 AM - Forum: Linux on Pine A64(+) - Replies (8)

Is it possible to program the pine64 in pure assembly?
If it is possible in which compiler can i program it and how can i upload my code to the board?
For example: Get 2 64 bit numbers from memory, add them in registers and store them in the memory?


  Getting started using OSX
Posted by: cranchh - 04-12-2016, 11:00 PM - Forum: Getting Started - Replies (17)

I didn't find any info about how to start using pine if you have OSX and can't run PhoenixCard so I decided to write this guide:

What you need:

  1. Ubuntu image (or other image I only tested Ubuntu)
  2. Terminal
How:
  1. Open terminal and run 
    sudo diskutil list
  2. Find your SDCard - easiest way is to find the disk in the right size - should be in the format /dev/disk2. 
  3. Format the card using the following command - make sure to change the disk number to what you found in step 2

    sudo diskutil eraseDisk FAT32 MYDISKNAME MBRFormat /dev/disk2
  4. Unmount your disk using the following command - make sure to change the disk number to what you found in step 2

    sudo umount /dev/disk2Make sure that the next line confirm that the disk is not mounted
  5. Unmount all sub-prtitions (if you didn't skip step 3 the card should only have one) in the disk using the following command - make sure to change the disk number to what you found in step 2

    sudo diskutil umount /dev/disk2s1Make sure that the next line confirm that the disk is not mounted
  6. Go to the location where the Ubuntu image is
  7.  Run the following command to extract the image to the disk- make sure to change the disk number to what you found in step 2
    sudo dd bs=4m if=Ubuntu_image_file.img of=/dev/disk2
     
The last command will take ~30min to complete and will result in a success message of how many bytes were transferred to the card.Good luck!


  Cannot detect keyboard
Posted by: dragoon - 04-12-2016, 08:31 PM - Forum: Linux on Pine A64(+) - Replies (8)

I have tried to build the pine64 image by using the steps given in https://github.com/longsleep/build-pine64-image with kernel 3.10 from BSP not the mainline kernel. I can reach the login page but cant use the keyboard.

I have compare the syslog generated from the downloaded image and my image, found the differences as follows:

Log generated from downloaded image:
[Image: iSvREoXl.png]

Log from my image:
[Image: hr3LZDYl.png]

Any ideas on this? Huh


  IRC channel?
Posted by: wmat - 04-12-2016, 08:28 PM - Forum: Community and Events - Replies (21)

I see that there's a pine64 channel on freenode, but myself and 1 other person are the only ones there.  Is there an official IRC channel?  My nick is wmat, fwiw.  2GB board, haven't got it to boot yet.


Bug ETA for solution for DMA problem for Arch Linux image & A64+ 2 GB boards?
Posted by: faddah - 04-12-2016, 04:18 PM - Forum: Getting Started - Replies (16)

hi all,

i am the owner of a Pine64 A64+ board with 2 GB RAM.

i got three more 64 GB MicroSD cards to load different OS's for the Pine64 and try them out. i went to load the Arch Linux image, but then saw the following warning message on the Pine64 wiki entry on software downloads — 

"This version of image is not suitable for PineA64 with 2GB Memory due to a bug involving DMA data transfer with the gigabit ethernet."

so... is there any ETA on when/how this might be fixed?
is it a firmware fix i'll need to down load and run on the A64+ board?
is it an update to ubuntu i'll need to run?
is it both?

please advise as soon as anyone knows on this. this is kind of a bummer for those of us who spent the extra $ on the larger capacity boards.

thanx in advance.

best,

—  faddah
     portland, oregon, u.s.a.