Difference between revisions of "User:Fxc"

From PINE64
Jump to navigation Jump to search
(test)
(+1)
 
(70 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Safety ==
== Export ==


=== Thermal Safety ===
https://wiki.pine64.org/wiki/Special:AllPages?from=&to=&namespace=0&hideredirects=1


With the Allwinner A64 being an older generation SoC with a large 40nm chip, the phone produces quite some heat under medium or higher use and especially also during charging or when using USB accessories, like a docking station. Measurements to prevent damage to the phone and to its surroundings need to be taken by the user. This includes especially a proper handling of the phone: do not charge the phone in a way where heat builds up around the phone without being able to escape. Especially don't charge your phone under a pillow, blankets, in pockets or bags. Charging the phone produces heat and charging the phone in a way, where the excessive heat can't dispose around the phone poses an immediate fire risk.
https://wiki.pine64.org/wiki/Special:Export


The user might notice that the phone gets warm under usage, compared to phones with more up-to-date hardware. Under normal circumstances these temperatures don't pose a risk while being in the levels within the safe operating temperatures (which lay far beyond the point where components can be too hot to touch). Higher temperatures might especially be experienced on the top side of the screen and on the inside of the phone at the RF shield of the modem. The higher temperature of the RF shield of the modem is commonly caused by the SoC on the opposite side of the mainboard, the RF shield of the modem is used to dispere heat of the SoC. In newer mainboard revisions starting from 1.2a there are also thermal pads on the back cover and between the SoC's RF shield and the screen, dispersing heat on the screen and on the back cover. In the past there has been safety issues regarding thermal safety functions, causing temperature reads to not properly work over an extended period of time, which was causing heat damage in some cases (see the documentation of that issue by the developer Megous [http://xnux.eu/log/#018 here] and [http://xnux.eu/log/#017 here]). While the developers are working hard to prevent such issues, they can't be excluded under all circumstances (see [[PinePhone#State_of_the_software|State of the software]]). The users are expected to monitor their phones' thermal safety at every point at this state of the software.
[[User:Fxc/export]]


Under GNU/Linux the phone's behavior can be altered via the Thermal Sysfs driver. To achieve the phone heating less up the temperature trigger points can be lowered:
Cutoff: 16 April 2023


22 September 2023: PineTab-V, PineTab2


== Ubuntu Touch ==
== Wiki keep ==


{| class="wikitable" style="width: 800px;"
* [[PinePhone APN Settings]]
!colspan="2" style="background: #a7d7f9;"|Ubuntu Touch
* [[PinePhone Carrier Support]]
|-
 
|colspan="2"|Image
 
|-
 
|colspan="2"|A Mobile Version of the Ubuntu Operating System made and maintained by the UBports Community. Ubuntu touch is a mobile version of Ubuntu developed by the UBports community.
== Getting started ==
|-
 
|rowspan="1" style="width: 200px;"|Download location
The Ox64 can be flashed using an UART connection or by connecting the device to the computer using USB-C.
|[https://gitlab.com/ubports/community-ports/pinephone#how-do-i-install-ubuntu-touch-on-my-pinephone UBports PinePhone project]
 
|-
=== Using UART ===
|rowspan="2"|user-id/password
 
| abc
To flash the Ox64 using an UART connection, first connect your UART device as pictured below:
|-  
 
| 123
[[File:|360px]]
|-
 
|What works, what does not work?
Then do the following steps:
|[https://gitlab.com/ubports/community-ports/pinephone Scroll down to the bottom of this page.]
 
|-
* Do not connect the micro-USB cable or ''VBUS'' yet
|How to contribute and report defects?
* Press and hold the ''BOOT'' button
|[https://gitlab.com/ubports/community-ports/pinephone See UBports gitlab page.]
* Connect the micro-USB cable or connect ''VBUS''
|-
* Wait for a few seconds
|Contributions
* Release the ''BOOT'' button
|[https://ubports.com/foundation/sponsors See UBports website for how to donate.]
 
|-
=== Using USB ===
|colspan="2" style="background: #cecece"| Installation
 
|-
To flash the Ox64 using a USB-C connection to a computer:
|colspan="2"| Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
 
|-
{{Info|This won't be possible on the first batch of Ox64 devices from October 2022, see [https://gist.github.com/lupyuen/7a0c697b89abccda8e38b33dfe5ebaff here].}}
|colspan="2" style="background: #cecece"| Notes
 
|-
* ...
|colspan="2"| Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
 
|-
== Chaos ==
|}
* [[ROCKPro64 Software Releases#Android]]
* [[Special:ListFiles]]
* [[Pinebook Pro]]
* [[Getting started]]
* [[SOEDGE Software Releases]]
* [[PineBuds Pro]] -> stub sections, lacks user manual steps
* [[Special:UncategorizedPages]]
* [[Accessories_Step_by_Step_Guides]] -> Explanation for which devices this applies
* Rename Accessories_Step_by_Step_Guides section to Accessories everywhere
* [[PineTime#Community]] redundant information. Might be solved with a template per article
* [[SOQuartz Software Releases]]
 
== ChatGPT: Flashing with dd ==
Flashing a disk image to a microSD card using the dd command involves writing the disk image file to the microSD card. This process is performed through the terminal on Linux or macOS. Here are the steps to flash a disk image to a microSD card using <code>dd</code>:
 
1. Determine the device name of the microSD card: On Linux or macOS, you can use the <code>lsblk</code> or <code>diskutil list</code> command to find the name of the microSD card (e.g., ''/dev/sdb''). Make sure to properly identify the microSD card, as using the wrong device name can result in data loss.
 
2. Unmount the microSD card: If the microSD card is already mounted, you need to unmount it before flashing the disk image. On Linux, you can use the <code>umount</code> command. On macOS, you can use the <code>diskutil unmount</code> command.
 
3. On Linux or macOS, open a terminal window.
 
4. Flash the disk image to the microSD card: Use the following command to flash the disk image to the microSD card:
 
sudo dd if='''path_to_disk_image.img''' of='''/dev/sdX''' bs=4M conv=fsync
 
* Replace '''path_to_disk_image.img''' with the path to the disk image file.
* Replace '''/dev/sdX''' with the device name of the microSD card you determined in step 1.
 
5. Wait for the process to complete: The ''dd'' command will not provide any output until it has completed the process. This may take several minutes, depending on the size of the disk image and the speed of your computer and microSD card.
 
6. Eject the microSD card: Once the ''dd'' command has completed, eject the microSD card. On Linux, you can use the <code>eject</code> command. On macOS, you can use the <code>diskutil eject</code> command.
 
Note: Before flashing the disk image, make sure to backup any important data on the microSD card, as this process will erase all existing data on the card.
 
== ChatGPT: Flashing with Etcher ==
Here are the steps to flash a disk image to a microSD card:
 
# Download and install a disk image writing tool: A commonly used tool for this purpose is Etcher, which is available for Windows, Mac, and Linux.
# Insert the microSD card into your computer: Make sure that you have an SD card reader, or an adapter to connect the microSD card to your computer.
# Open the disk image writing tool: Launch Etcher and select the disk image file you want to flash to the microSD card.
# Select the target device: In Etcher, select the microSD card from the list of available drives.
# Start the flashing process: Click the "Flash" button to start the process of writing the disk image to the microSD card. This process may take a few minutes, depending on the size of the disk image and the speed of your computer.
# Verify the flash: After the flash is complete, Etcher will verify the integrity of the image to make sure it was written correctly.
# Eject the microSD card: Once the flash is complete and verified, safely eject the microSD card from your computer. You can now use the microSD card with the device it was intended for.
 
Note: Before flashing the disk image, make sure to backup any important data on the microSD card, as this process will erase all existing data on the card.
 
== Main example ==
 
=== Devices ===
 
You can learn more about the following ARM and RISC-V devices manufactured by PINE64:
 
Phones:
* [[PinePhone]]
* [[PinePhone Pro]]
 
Phone accessories:
* [[PinePhone (Pro) Add-ons]]
* [[PinePhone (Pro) Keyboard]]
 
Tablets:
* [[PineNote]]
* [[PineTab]]
 
Wearable:
* [[PineBuds Pro]]
* [[PineTime]]
 
Laptops:  
* [[Pinebook]], [[1080P Pinebook]], [[Pinebook Pro]] and [[Pinebook Pro Dock|Pinebook Pro Docking station]]
 
Single-board computers:
* [[Ox64]], [[STAR64]], [[Quartz64]], [[QuartzPro64_Development|QuartzPro64]], [[ROCKPro64]], [[ROCK64]], [[PINE A64]], [[PINE A64-LTS/SOPine|PINE A64-LTS]] and [[PINE H64]]
 
Set-top box:
* [[RockBox]]
 
Clusters and modules:
* [[Clusterboard]]
* [[SOPINE]] and [[SOPINE Baseboard]]
* [[SOEDGE]] and [[SOEDGE Baseboard]]
* [[SOQuartz]]
 
IP camera:
* [[PineCube]]
 
Makerspace:
* [[Pinecil]], [[PinePower]], [[PineCone]] and [[Pinedio]]


== Image ==
== Pinebook notes ==
Merge https://wiki.pine64.org/wiki/1080P_Pinebook_Software_Releases into https://wiki.pine64.org/wiki/Pinebook_Software_Releases


{| class="wikitable" style="width: 800px;"
{| class="wikitable" style="text-align: center;"
|-
|+ Compatibility
|colspan="2"|Image
|-
|-
|colspan="2"|Description
! Pinebook 11.6″ !! Pinebook 11.6" 1080p !! Pinebook 14″
|-
|-
|rowspan="1" style="width: 120px;" | Author
| || ||
| Test
|-
| License
| CC0
|-
|-
| SVG location
| Test
|}
== Licenses template ==
Test:
{|style="border:1px solid #a2a9b1; padding: 0 10px 0 10px; width: 80%; margin: 4px 10%;"
|
|style="width: 40px"|[[Image:CC_some_rights_reserved.svg|90px|center]] [[Image:Cc-by new white.svg|24px|center]]
|style="padding: 20px"|''This file is licensed under the [https://en.wikipedia.org/wiki/en:Creative_Commons Creative Commons] [https://creativecommons.org/licenses/by/3.0/deed.en Attribution 3.0 Unported] license.''
|}
|}



Latest revision as of 22:41, 22 September 2023

Export

https://wiki.pine64.org/wiki/Special:AllPages?from=&to=&namespace=0&hideredirects=1

https://wiki.pine64.org/wiki/Special:Export

User:Fxc/export

Cutoff: 16 April 2023

22 September 2023: PineTab-V, PineTab2

Wiki keep


Getting started

The Ox64 can be flashed using an UART connection or by connecting the device to the computer using USB-C.

Using UART

To flash the Ox64 using an UART connection, first connect your UART device as pictured below:

[[File:|360px]]

Then do the following steps:

  • Do not connect the micro-USB cable or VBUS yet
  • Press and hold the BOOT button
  • Connect the micro-USB cable or connect VBUS
  • Wait for a few seconds
  • Release the BOOT button

Using USB

To flash the Ox64 using a USB-C connection to a computer:

Note: This won't be possible on the first batch of Ox64 devices from October 2022, see here.
  • ...

Chaos

ChatGPT: Flashing with dd

Flashing a disk image to a microSD card using the dd command involves writing the disk image file to the microSD card. This process is performed through the terminal on Linux or macOS. Here are the steps to flash a disk image to a microSD card using dd:

1. Determine the device name of the microSD card: On Linux or macOS, you can use the lsblk or diskutil list command to find the name of the microSD card (e.g., /dev/sdb). Make sure to properly identify the microSD card, as using the wrong device name can result in data loss.

2. Unmount the microSD card: If the microSD card is already mounted, you need to unmount it before flashing the disk image. On Linux, you can use the umount command. On macOS, you can use the diskutil unmount command.

3. On Linux or macOS, open a terminal window.

4. Flash the disk image to the microSD card: Use the following command to flash the disk image to the microSD card:

sudo dd if=path_to_disk_image.img of=/dev/sdX bs=4M conv=fsync
  • Replace path_to_disk_image.img with the path to the disk image file.
  • Replace /dev/sdX with the device name of the microSD card you determined in step 1.

5. Wait for the process to complete: The dd command will not provide any output until it has completed the process. This may take several minutes, depending on the size of the disk image and the speed of your computer and microSD card.

6. Eject the microSD card: Once the dd command has completed, eject the microSD card. On Linux, you can use the eject command. On macOS, you can use the diskutil eject command.

Note: Before flashing the disk image, make sure to backup any important data on the microSD card, as this process will erase all existing data on the card.

ChatGPT: Flashing with Etcher

Here are the steps to flash a disk image to a microSD card:

  1. Download and install a disk image writing tool: A commonly used tool for this purpose is Etcher, which is available for Windows, Mac, and Linux.
  2. Insert the microSD card into your computer: Make sure that you have an SD card reader, or an adapter to connect the microSD card to your computer.
  3. Open the disk image writing tool: Launch Etcher and select the disk image file you want to flash to the microSD card.
  4. Select the target device: In Etcher, select the microSD card from the list of available drives.
  5. Start the flashing process: Click the "Flash" button to start the process of writing the disk image to the microSD card. This process may take a few minutes, depending on the size of the disk image and the speed of your computer.
  6. Verify the flash: After the flash is complete, Etcher will verify the integrity of the image to make sure it was written correctly.
  7. Eject the microSD card: Once the flash is complete and verified, safely eject the microSD card from your computer. You can now use the microSD card with the device it was intended for.

Note: Before flashing the disk image, make sure to backup any important data on the microSD card, as this process will erase all existing data on the card.

Main example

Devices

You can learn more about the following ARM and RISC-V devices manufactured by PINE64:

Phones:

Phone accessories:

Tablets:

Wearable:

Laptops:

Single-board computers:

Set-top box:

Clusters and modules:

IP camera:

Makerspace:

Pinebook notes

Merge https://wiki.pine64.org/wiki/1080P_Pinebook_Software_Releases into https://wiki.pine64.org/wiki/Pinebook_Software_Releases

Compatibility
 Pinebook 11.6″ Pinebook 11.6" 1080p  Pinebook 14″

Collapsible test