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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 29,966
» Latest member: Sergio Gus
» Forum threads: 16,334
» Forum posts: 117,438

Full Statistics

Latest Threads
Looking for engineer for ...
Forum: PinePhone Pro Hardware
Last Post: Andrey_voce
04-06-2026, 08:44 AM
» Replies: 0
» Views: 79
StarPro64 Irradium (based...
Forum: Getting Started
Last Post: mara
04-05-2026, 03:03 AM
» Replies: 19
» Views: 8,579
Finally got Kali working ...
Forum: General Discussion on Pinebook Pro
Last Post: qingss0
04-04-2026, 08:00 AM
» Replies: 0
» Views: 153
Charging problem
Forum: General Discussion on Pinebook Pro
Last Post: RicTor
04-04-2026, 07:30 AM
» Replies: 0
» Views: 80
Latest firmware for PineP...
Forum: PinePhone Software
Last Post: baptx
04-03-2026, 08:37 AM
» Replies: 106
» Views: 216,062
Updates have gotten me ex...
Forum: General Discussion on PineNote
Last Post: bills2002
04-02-2026, 05:16 PM
» Replies: 0
» Views: 140
Voidlinux working on eMMC
Forum: General Discussion on PineTab
Last Post: tllim
04-01-2026, 04:14 PM
» Replies: 1
» Views: 219
Pinecil V2 doesn’t power ...
Forum: General Discussion on Pinecil
Last Post: Juptin
03-28-2026, 02:37 AM
» Replies: 1
» Views: 2,036
dead Pinebook - help plea...
Forum: General Discussion on Pinebook Pro
Last Post: williamcorlin
03-26-2026, 04:22 PM
» Replies: 3
» Views: 901
BT PAN - we need iptables...
Forum: Mobian on PinePhone
Last Post: biketool
03-25-2026, 12:57 PM
» Replies: 1
» Views: 583

 
  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


  kernel module snd_seq
Posted by: pelgrim - 05-25-2016, 02:53 PM - Forum: Ubuntu - No Replies

running the ubuntu xenial image.

I have connected a Roland UM-ONE to the usb of pine64.
amidi -l:
IO hw:0,0,0 UM-ONE MIDI 1
I hw:0,0,1 UM-ONE MIDI 2

so far so good.

Can't get JACK to work, because I seem to be missing the snd_seq kernel module.
(ALSA lib seq_hw.c457Sadsnd_seq_hw_open) open /dev/snd/seq failed: No such file or directory
How do I add this ?