Let me introduce myself. I'm Jimmy, 19 y.o. web developer from Argentina.
I'm totally new in the SBC world, and I need to know if my idea is doable before buy the components.
I want to use the A64+ 2GB starter kit as main logic board for connect an USB hard drive in order to install in there Debian OS + GitLab (CE).
Then access to the internet-connected* P64 from my computer (through WiFi) and access to GitLab (via command-line interface).
Is PINE64 useful for something like this? May I require other type of hardware?
Thanks for reading.
---
* My idea is as simple as connect P64 to the LAN cable into my router.
Is there PINE64 official source code repository for android and its kernel?
I only see some personal github address for android 6/7.
Please give the help.
Thank in advance!
I like to use Gkrellm2 on linux Desktop, the one plugin I use the most is gkrellmlaunch, it allows me to get everything done from a simple light weight interface. However, it is never included in distributions, I will attach same for access.
Here is a little script I fire from launch.
Code:
#!/bin/bash
#
# updater designed to keep system at latest state & clean
#
echo 'The following will be completed, Autoremove will require response.'
echo
echo 'Update, Upgrade, Dist-Upgrade, Autoremove and Clean'
echo
read -n1 -r -p "Press SPACE to continue or Ctrl+C to exit ... " key
echo
if [ "$key" = '' ]; then
echo "Continuing ..."
fi
echo
sudo apt-get update && sudo apt-get -y upgrade && sudo apt-get -y dist-upgrade && sudo apt-get autoremove && sudo apt-get clean
echo 'Have a nice day!'