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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 29,347
» Latest member: Anthona
» Forum threads: 16,155
» Forum posts: 116,719

Full Statistics

Latest Threads
invalid signatures
Forum: Getting Started
Last Post: Francus
Yesterday, 08:56 AM
» Replies: 0
» Views: 11
Pinephone pro packet inje...
Forum: PinePhone Pro Hardware
Last Post: Kevin Kofler
07-02-2025, 02:03 PM
» Replies: 3
» Views: 2,054
Modem Issues with the Pin...
Forum: PinePhone Hardware
Last Post: biketool
07-02-2025, 12:50 PM
» Replies: 5
» Views: 1,503
Cannot make calls
Forum: PostmarketOS on PinePhone
Last Post: gregb49
07-01-2025, 09:39 AM
» Replies: 3
» Views: 758
baremetal via Zig on Pine...
Forum: PinePhone Software
Last Post: WhiteHexagon
07-01-2025, 05:33 AM
» Replies: 0
» Views: 53
cryptocurrency on mobian/...
Forum: Mobian on PinePhone
Last Post: biketool
06-30-2025, 02:57 PM
» Replies: 33
» Views: 49,624
Full desktop Surfing and ...
Forum: General Discussion of PinePhone Pro
Last Post: Dendrocalamus64
06-30-2025, 10:51 AM
» Replies: 8
» Views: 358
XLibre for Mobian
Forum: Mobian on PinePhone
Last Post: Haroldkent
06-30-2025, 01:38 AM
» Replies: 1
» Views: 163
Backing up data on Pineph...
Forum: General Discussion of PinePhone Pro
Last Post: Dendrocalamus64
06-29-2025, 02:46 PM
» Replies: 4
» Views: 223
Printing and scanning doc...
Forum: General Discussion of PinePhone Pro
Last Post: biketool
06-29-2025, 11:48 AM
» Replies: 4
» Views: 210

 
  Ham Radio Repeater
Posted by: rneese - 05-26-2016, 08:21 AM - Forum: Pine A64 Projects, Ideas and Tutorials - Replies (1)

using the devboard as a interface board and the pine64 as the brain to controll the ptt/sql and optional interface inputs and outputs allow you to control multi vhf/uhf/hf radios as a repeater unitand a radio beacon unit.


  How to install modules into system?
Posted by: MicroDiery - 05-26-2016, 07:56 AM - Forum: Debian - Replies (6)

I compiled the usb wifi driver for system,but make filed,information of error is 

make ARCH=aarch64 CROSS_COMPILE= -C /lib/modules/3.10.101-3-pine64-longsleep/build M=/home/pine64user/Downloads/rtl8192eu  modules
make[1]: *** /lib/modules/3.10.101-3-pine64-longsleep/build: No such file or directory.  Stop.
Makefile:1335: recipe for target 'modules' failed
make: *** [modules] Error 2

Can someone help me please?

THanks


  Headless torrent box
Posted by: wahdooyah - 05-25-2016, 11:25 PM - Forum: Pine A64 Projects, Ideas and Tutorials - Replies (3)

This is a very simple use and in no way original, but I thought I'd share it anyhow since it doesn't require very complex setup. You'll need one or more Android phones/tablets to control the setup, too.

Starting with any Debian image, SSH in and install deluge, deluged, and deluge-web:

Code:
sudo apt-get install deluge deluged deluge-web

I followed these instructions in relevant part, specifically:
Code:
#create a user to run the daemon

sudo adduser --system --gecos "Deluge Service" --disabled-password --group --home /var/lib/deluge deluge

#add your own user to the deluge group (change user name as needed)
sudo adduser debian deluge

#create a script for the daemon
sudo nano /etc/systemd/system/deluged.service

#enter the following in that script
[Unit]
Description=Deluge Bittorrent Client Daemon
After=network-online.target

[Service]
Type=simple
User=deluge
Group=deluge
UMask=007

ExecStart=/usr/bin/deluged -d

Restart=on-failure

TimeoutStopSec=300

[Install]
WantedBy=multi-user.target

#create web service script
sudo nano /etc/systemd/system/deluge-web.service

#containing

[Unit]
Description=Deluge Bittorrent Client Web Interface
After=network-online.target

[Service]
Type=simple
User=deluge
Group=deluge
UMask=027

ExecStart=/usr/bin/deluge-web
Restart=on-failure

[Install]
WantedBy=multi-user.target

#start each service, confirm it's running, and set to autostart
sudo systemctl start deluged
sudo systemctl status deluged
sudo systemctl enable deluged
sudo systemctl start deluge-web
sudo systemctl status deluge-web
sudo systemctl enable deluge-web

Now, the torrent box is up and running! But, you have no way to add torrents, and when you do they're being saved on your microSD card, which isn't great for the card's longterm survival. My solution to the latter is a samba share, since my wireless router lets me plug in any USB drive as a samba share. So, we'll need to install cifs-utils:
Code:
sudo apt-get install cifs-utils

Create a directory for mounting it and change ownership to the deluge user:
Code:
sudo mkdir /mnt/fetched
sudo chown deluge:deluge /mnt/fetched

Then set the samba share to mount on boot. :
Code:
sudo nano /etc/fstab

#Add this line, modifying as needed
//192.168.0.1/Shared_Drive/Uploads    /mnt/fetched      cifs    guest,uid=122,gid=128,iocharset=utf8,sec=ntlm   0
0
You should probably use a password or credentials, but for simplicity this assumes the samba share allows guest logins.

Next, the deluge settings need to be tweaked a bit, which means shutting down the services:
Code:
sudo systemctl stop deluged
sudo systemctl stop deluge-web

Next, open the daemon config for editing. This will require either a chown or sudo since it's only accessible to the deluge user:
Code:
sudo nano  /var/lib/deluge/.config/deluge/core.conf

This is the line you're looking for, and change it to where your drive is mounted:
Code:
"download_location": "/mnt/fetched",

Next, open web.conf and set the default daemon:
Code:
sudo nano  /var/lib/deluge/.config/deluge/web.conf

#change this line
 "default_daemon": "127.0.0.1:58846",

That's all for tonight, I'll explain how to set up Transdroid and BubbleUPnP tomorrow, though it's pretty straightforward.


  Pine64 accelerated H.264 encoding
Posted by: hngjms - 05-25-2016, 08:57 PM - Forum: Linux on Pine A64(+) - Replies (7)

Hi guys,

I'm trying to stream H264 video off of a USB webcam to my computer from my PINE64. 
I'm on longsleep's ubuntu and video packages (https://launchpad.net/~longsleep/+archiv...our-makers).

I've tried using gstreamer1.0-vaapi plugins, as well as this https://github.com/ebutera/gst-plugin-cedar
but I've been having trouble getting the encoding element to work properly.



Code:
GST_DEBUG=4 gst-launch-1.0 videotestsrc ! vaapih264enc ! fakesink 

# gives

0:00:00.129807267 13532       0x630ca0 WARN            videoencoder gstvideoencoder.c:674:gst_video_encoder_setcaps:<vaapiencodeh264-0> rejected caps video/x-raw, width=(int)320, height=(int)240, framerate=(fraction)30/1, format=(string)I420, interlace-mode=(string)progressive, pixel-aspect-ratio=(fraction)1/1

even though 320x240 30fps I420 is part of vaapih264enc's sink capabilities. 

Has anyone had any experience with getting hardware H264 video encoding working on the PINE64?
The software based ones are really really laggy.


  Do You Know "Polaris OS" ?
Posted by: hjwish.lee - 05-25-2016, 06:19 PM - Forum: Android on Pine A64(+) - Replies (3)

1. Faster than Remix OS
2. Very Slim 
3. Not Support Pine64 Now, but....



Demo Video Here
https://youtu.be/5hLDPLcCxjo


Down Link by "Infraware Technology"
support Only VirtualBox Now (Not VMWare)


  Kodi xbmc
Posted by: Myrealnameis - 05-25-2016, 05:19 PM - Forum: General Discussion on PINE A64(+) - Replies (3)

right folks 

can someone help I'm trying to get kodi onto my pine a64 where do I start. I'm at the beginning


  Why no AndroidTV Image
Posted by: VAAviator - 05-25-2016, 04:39 PM - Forum: Android on Pine A64(+) - Replies (5)

I bought the Pine 64 with 2GB, the remote, and the keyboard. I expected the company to provide a REAL AndroidTV image for us to use. They made all this discussion about 4K.  Why is there no real AndroidTV image?

Is this hard?


  Official Android support
Posted by: Raslin777@gmail.com - 05-25-2016, 04:37 PM - Forum: Android on Pine A64(+) - Replies (3)

Google is bring official Android support to the Raspberry Pi 3, It would be awesome if this would happen on the Pine64. May be worth reaching out.


  ATI RF Remote Control
Posted by: wahdooyah - 05-25-2016, 04:08 PM - Forum: Accessories - No Replies

I found this old RF remote in a box of electronics junk in my basement (yeaaah...), so I thought I'd plug in the USB receiver to see if Debian would recognize it. No such luck. I've also not really had any luck trying to figure out a step-by-step instruction for how to get it working. Google has failed me!

Anyone know how to set up RF remotes in general, or ATI remotes in particular?  Thanks in advance!


[Image: YZBWQQb2Ua942RhYDxZag6VLhsFMghOVe68Qay1p...0-h1145-no]


Music RTC and Camera modules
Posted by: g_t_j - 05-25-2016, 03:37 PM - Forum: Android on Pine A64(+) - Replies (2)

Can anyone please let me know what am I possibly missing with these 2 modules? I haven't got to make them work.

 Did I connect them right?

https://www.dropbox.com/s/vsjxvo4cajj8gv...m.jpg?dl=0