Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 29,326
» Latest member: Dalon00
» Forum threads: 16,152
» Forum posts: 116,693
Full Statistics
|
|
|
network |
Posted by: kdarius - 04-27-2016, 10:01 AM - Forum: Android on Pine A64(+)
- No Replies
|
 |
Hello I was wondering if anyone is having issues of the Pine running android hooking up to the internet. I tried a wifi usb and also a hard line in and neither work. Is it something I am missing?
|
|
|
Archlinux up and Running |
Posted by: scnd - 04-27-2016, 09:43 AM - Forum: Archlinux
- Replies (4)
|
 |
I just wanted to announce that as usual, the Archlinux Arm port works freaking great. Brand new sandisk 32g card from brick and mortar, a check and format, and things are working just dandy.
I'm still getting everything configured, but so far I've done the following:
Powered on
Set up Wifi
Set up SSH
Pacman Init
chmod & chgrp & chown for /tmp/ and /var/tmp
set up external storage
set up smb
user settings
The thing is nice and fast, seems to work pretty well so far. I only had about an hour to interact with the thing, so i couldn't get through all the things that I wanted, but I think this is a good start.
|
|
|
RemixOS - slow download speed in OS |
Posted by: mkyb14 - 04-27-2016, 09:26 AM - Forum: Remix OS
- Replies (9)
|
 |
Anyone else experiencing a slow download speed within RemixOS... app store, chrome etc? Connection is wide open at 50/5mb and just updating within the google app store, hardwired look to be going barely above 100k/sec.
2GB board
Asus RT86U router
Cat 6 cabling
Bare OS
|
|
|
HDMI to DVI |
Posted by: hyperlogos - 04-27-2016, 09:00 AM - Forum: Getting Started
- Replies (5)
|
 |
Why are we not supposed to use HDMI to DVI adapters? When will this be supported? Every display I want to use only has DVI input.
|
|
|
[28/03/2017] openSUSE Tumbleweed Images for Pine64 |
Posted by: Terra854 - 04-27-2016, 08:42 AM - Forum: openSUSE
- Replies (44)
|
 |
![[Image: rwMBVAb.png]](http://i.imgur.com/rwMBVAb.png)
Changelog
27/4/16
- Initial release
- Kernel based on 3.10.65-7-pine64-longsleep-28
8/5/16
- Kernel updated to 3.10.101-0-pine64-longsleep-39
- Changed ownership of /home/pine64 to the pine64 user so that you can download/create/edit your stuff in it
- Changed hostname to pine64
3/10/16
- Kernel updated to 3.10.102-3-pine64-longsleep-98
- Image has been rebuilt from the ground up.
- All software has been updated.
- Includes the pine64-config tool
7/12/16
- Kernel updated to 3.10.104-1-pine64-longsleep-103
- All software has been updated.
- Image with LCD support (but with no touchscreen capability) is now available
28/03/17
- Kernel updated to 3.10.105-0-pine64-longsleep-3
- All software has been updated.
- SoPine images are now available
Downloads
Direct download from the project page
Login details
Username: pine64
Password: pine64linux
Root password: pine64root
Known bugs and Workarounds
Currently, there is no known bugs in the latest image.
If you can come out with a fix for any problems whether or not they are listed here or if you found new bugs, post them on this thread so that I will be able to patch the image and the entire community will benefit.
|
|
|
How to connect with wifi ? |
Posted by: yirmidokuz - 04-27-2016, 02:06 AM - Forum: Debian
- Replies (27)
|
 |
Hi all,
I got my pine64 + 2gb model.
I boot the pine64 with Debian Linux with Mate GUI 20160422 by lenny.raposo with Longsleep kernel.
I have no experience with any of the Linux OS'.
How can I activate the wifi, and connect the internet ?
|
|
|
Bluetooth not working |
Posted by: reesh95 - 04-27-2016, 12:55 AM - Forum: Ubuntu
- Replies (11)
|
 |
Hi,
i have run into a problem where the ubuntu image is not detecting the bluetooth adapter . I had ordered the stock wifi + BT module that fits into the pine64 and wifi is working properly. what can i do to solve this ?
Thanks in advance
|
|
|
How to setup VNC on your Pine64 (Debian, SSH, headless) |
Posted by: pine64nutz - 04-26-2016, 08:06 PM - Forum: Pine A64 Projects, Ideas and Tutorials
- Replies (20)
|
 |
Since I couldn't find any info here about this I was thinking to write a little tutorial, maybe it going to help.
I got my Pine64 recently and I don't have any display or keyboard available so the only way to get desktop environment was over VNC (or RDP). This tutorial is for Debian 8 Jessie with MATE and how to VNC.
How to VNC
1: login into terminal via SSH
2: update server packages
3: install vnc4server
Code: apt-get install vnc4server
4: create a password for your vnc server
5: setup the xstartup script to get mate environment on VNC
Code: sudo nano ~/.vnc/xstartup
overwrite with this code
Code: #!/bin/sh
# Uncomment the following two lines for normal desktop:
# unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
-terminal-emulator -geometry 80x20+10+10 -ls -title "$VNCDESKTOP Desktop" &
mate-session &
mate-panel &
6: start the vnc server with vnc4server -geometry <resolution> -depth <16,24 whatever depth you want>
Code: vnc4server -geometry 800x600 -depth 24
you should get a message like this
Code: New '<hostname>:1 (<your_username>)' desktop is <hostname>:1
Starting applications specified in /home/<your_username>/.vnc/xstartup
Log file is /home/<your_username>/.vnc/hostname:1.log
this means that a VNC server has started on your at port :1 (5901) if it said :2 in means port 5902 and so on...
user a VNC viewer (Real VNC, Ultra VNC) to login to your VNC server, usually is <your_local_ip>:5901
If you get only a grey screen change the permissions on xstartup file
first stop the server
then
Code: sudo chmod 755 xstartup
start the server again
Update #1
How to run VNC server as a service automatically
make sure you kill the server first
make a new script where you can setup the VNC server
Code: sudo nano /usr/local/bin/vncserver
paste the code bellow (here you can put your desired resolution and depth)
Code: #!/bin/bash
PATH="$PATH:/usr/bin/"
DISPLAY="1"
DEPTH="24"
GEOMETRY="1024x768"
OPTIONS="-depth ${DEPTH} -geometry ${GEOMETRY} :${DISPLAY}"
case "$1" in
start)
/usr/bin/vnc4server ${OPTIONS}
;;
stop)
/usr/bin/vnc4server -kill :${DISPLAY}
;;
restart)
$0 stop
$0 start
;;
esac
exit 0
save the file and make it executable
Code: sudo chmod +x /usr/local/bin/vncserver
now make a unit file, that will describe the service and tell the server how to work with the service
Code: sudo nano /lib/systemd/system/vncserver.service
paste the code bellow (make sure to put your user under User=)
Code: [Unit]
Description=Manage VNC Server
[Service]
Type=forking
ExecStart=/usr/local/bin/vncserver start
ExecStop=/usr/local/bin/vncserver stop
ExecReload=/usr/local/bin/vncserver restart
User=pine64user
[Install]
WantedBy=multi-user.target
reload systemctl and enable VNC server
Code: sudo systemctl daemon-reload
sudo systemctl enable vncserver.service
reboot and see if it's works
Coming next: connect to VNC server over SSH.
Have fun!
|
|
|
Missing SD Card |
Posted by: Chris_Mc11 - 04-26-2016, 06:02 PM - Forum: General Discussion on PINE A64(+)
- No Replies
|
 |
Perhaps I missed something somewhere in the updates but I received my Pine64 1Gb board today and it did not include the micro SD card I had ordered with it. In my backerkit I ordered a second board with a case and a couple of other things so I know those are coming separately but I thought the SD card with Android preloaded on it was coming?
|
|
|
|