You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
646 B
31 lines
646 B
2 years ago
|
---
|
||
|
title: Mountint Ext4 Filesystem On MacOS Readonly
|
||
|
summary: An overview of how to mount your Pi-Star sdcard on a mac machine.
|
||
|
categories: [computerstuff]
|
||
|
tags: [pistar,macos,reminders]
|
||
|
date: 2020-02-22T09:33:44+01:00
|
||
|
|
||
|
---
|
||
|
|
||
|
##### Installing the needed tools
|
||
|
|
||
|
~~~console
|
||
|
$ brew cask install osxfuse
|
||
|
$ brew install ext4fuse
|
||
|
~~~
|
||
|
|
||
|
##### Mount the disk on your filesystem
|
||
|
|
||
|
~~~console
|
||
|
$ ext4fuse /dev/disk2s2 pi-star
|
||
|
~~~
|
||
|
|
||
|
##### Users, groups, write permissions, &c
|
||
|
|
||
|
If you feel that you have to add yourself to another usergroup, then do that
|
||
|
as the following code suggests:
|
||
|
|
||
|
~~~console
|
||
|
$ sudo dseditgroup -o edit -a $username -t user $groupname
|
||
|
~~~
|