Changes between Version 6 and Version 7 of jazz/21-04-18


Ignore:
Timestamp:
Apr 18, 2021, 11:42:27 PM (3 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/21-04-18

    v6 v7  
    118118}}}
    119119- https://sleeplessbeastie.eu/2018/08/08/how-to-download-public-key-used-to-verify-gnupg-signature-for-the-repository/
     120
     121== macOS - Linux 互通 - hfsplus ==
     122
     123- https://askubuntu.com/questions/332315/how-to-read-and-write-hfs-journaled-external-hdd-in-ubuntu-without-access-to-os
     124- 一般來說,HFS+ 的磁區,在 Ubuntu 底下掛載會是 read-only。看樣子要給參數 `mount -t force,rw` 才有辦法變成可讀寫。
     125{{{
     126sudo apt-get install hfsprogs
     127}}}
     128{{{
     129sudo mount -t hfsplus -o force,rw /dev/sdXY /media/mntpoint
     130}}}
     131or
     132{{{
     133sudo mount -t hfsplus -o remount,force,rw /mount/point
     134}}}
     135{{{
     136sudo fsck.hfsplus -f /dev/sdXY
     137}}}