Difference between revisions of "Template:RockchipCommonLinuxTips"
From FriendlyELEC WiKi
(updated by API) |
(updated by API) |
||
Line 24: | Line 24: | ||
When using ADB, the port connected to the computer is the same as the USB flashing port. | When using ADB, the port connected to the computer is the same as the USB flashing port. | ||
===Install Kernel Headers=== | ===Install Kernel Headers=== | ||
+ | To install the .deb file located in the /opt/archives directory: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
sudo dpkg -i /opt/archives/linux-headers-*.deb | sudo dpkg -i /opt/archives/linux-headers-*.deb | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | To download and update the kernel header files online: | ||
+ | <div style="border:1px solid #d8d8d8; padding-top:5px; padding-right:10px; padding-bottom:5px; padding-left:10px; background-color:#f8f8f8;"> | ||
+ | wget <nowiki>http://112.124.9.243</nowiki>/archives/{{{1}}}/linux-headers-$(uname -r)-latest.deb<br> | ||
+ | sudo dpkg -i ./linux-headers-latest.deb | ||
+ | </div> | ||
+ | You can visit <nowiki>http://112.124.9.243</nowiki>/archives/{{{1}}} to see which kernel deb packages are available. | ||
{{#switch: {{{1}}} | {{#switch: {{{1}}} | ||
+ | | rk3566 | ||
+ | | rk3568 | ||
| rk3588 = | | rk3588 = | ||
===Update Kernel to Latest Version=== | ===Update Kernel to Latest Version=== | ||
Line 36: | Line 45: | ||
sudo reboot | sudo reboot | ||
</div> | </div> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
| #default = | | #default = | ||
}} | }} |
Revision as of 03:25, 30 October 2024
Contents
1 Common Linux-based operating system operations
1.1 Using ADB on Linux Systems
1.1.1 Enabling ADB in Buildroot System
Enable on Startup
mv /etc/init.d/K50usbdevice.sh /etc/init.d/S50usbdevice.sh reboot
Enable Temporarily
usbdevice-wrapper start
1.1.2 Enabling ADB in Ubuntu and Debian Systems
Enable on Startup
sudo systemctl enable usbdevice sudo reboot
Enable Temporarily
usbdevice-wrapper start
1.1.3 How to Connect
When using ADB, the port connected to the computer is the same as the USB flashing port.
1.2 Install Kernel Headers
To install the .deb file located in the /opt/archives directory:
sudo dpkg -i /opt/archives/linux-headers-*.deb
To download and update the kernel header files online:
wget http://112.124.9.243/archives/{{{1}}}/linux-headers-$(uname -r)-latest.deb
sudo dpkg -i ./linux-headers-latest.deb
You can visit http://112.124.9.243/archives/{{{1}}} to see which kernel deb packages are available.