ROCK PI S
1 - LE MINI ORDINATEUR ROCK PI S - Version 256 Mo (pas de Wifi ni de Bluetooth)
- URL : https://wiki.radxa.com/RockpiS
- CPU : RockChip 4 coeurs (Rockchip RK3308 Quad A35 64bit processor with built-in VAD)
- RAM : 256 Mo
- Connexions : LAN RJ45 + USB A (maitre) + USB C (power+liaison pc)
- 26 pin GPIO header
- 26 pin voice/audio header includes I2C, PCM, TDM, PDM, SPDIF, and HDMI ARC
- DIMENSIONS : 38.1mm x 38.1mm
2 - CARACTERISTIQUES TECHNIQUES
Model
|
ROCK Pi S
|
Processor
|
SoC RK3308 Quad Cortex-A35 ARM 64bits processor frequency up to 1.3GHz
|
Memory
|
256MB or 512MB DDR3
|
Storage
|
MicroSD(TF), optional on board 1/2/4/8Gb NAND flash
|
Wireless
|
802.11 b/g/n wifi Bluetooth 4.0(rtl8723DS) external antenna
|
USB
|
USB2.0 Type-A HOST x1 USB3.0 Type-C OTG x1
|
Key
|
maskrom x1 reset x1
|
Ethernet
|
100MB ethernet, optional PoE(additional HAT requried)
|
IO
|
26-pin expansion header I2C x4 PWM x3 SPI x2 UART x3 I2S0 x1 5V DC power in x2 3.3V DC power in x2
|
Others
|
---
|
Power
|
USB Type-C DC 5V
|
Size
|
1.7inch square
|
|
3 - INSTALLATION D'UN OPERATING SYSTEM - DEBIAN
4 - MIGRATION DE DEBIAN 10 VERS DEBIAN 12
- 1 - Migration de Debian 10 Buster à Debian 11 Bullseye
- sudo apt-get update
- sudo apt-get upgrade
- Modification de /etc/apt/source.list
- sudo apt-get update
- sudo apt-get upgrade
- sudo apt-get dist-upgrade
- 2 - Migration de Debian 11 Bullseye à Debian 12 Bookworm
- sudo apt-get update
- sudo apt-get upgrade
- Modification de /etc/apt/source.list
- sudo apt-get update
- sudo apt-get upgrade
- sudo apt-get dist-upgrade
5 - CONFIGURATION DE DEBIAN SUR ROCK PI S
- Connexion au Rock Pi S
- 0 - Page Debian et Rock Pi S de reference : https://wiki.radxa.com/RockpiS/Debian
- 1 - SSH : ssh rock@xx.xx.xx.xx
- 2 - PORT SERIE : via un cable USB / serie, il est possible d'acceder directement au prompt de l'OS.
- Creation dune partition Swap
- free -h
- fallocate -l 1G /swapfile
- sudo fallocate -l 1G /swapfile
- sudo chmod 600 /swapfile
- sudo mkswap /swapfile
- sudo swapon /swapfile
- sudo swapon --show
- free -h
- sudo vi /etc/fstab
benoit@rockpis:~$ cat /etc/fstab
UUID=2a975457-7408-4fda-bd37-22b8d2df5b6f / ext4 defaults 0 0
UUID=F616-0D67 /boot vfat defaults,x-systemd.automount 0 0
/swapfile none swap sw 0 0
- reboot
- sudo swapon -show
Filename Type Size Used Priority
/swapfile file 1048572 0 -1
- Modification des depots Debian si besoin
- sudo apt-get update
- sudo apt-get upgrade
- Installation de Nginx
- sudo apt-get install nginx
6 - INSTALLATION DE ARMBIAN SUR ROCK PI S
|