oe7drt-website/content/posts/2020/7-mountint-ext4-filesystem-on-macos-readonly/index.md

31 lines
706 B
Markdown
Raw Normal View History

---
title: Mountint Ext4 Filesystem On MacOS Readonly
aliases: /posts/2020-02-22-mountint-ext4-filesystem-on-macos-readonly
summary: An overview of how to mount your Pi-Star sdcard on a mac machine.
categories: [computerstuff]
2024-09-29 01:48:06 +02:00
tags: [pistar, macos]
date: 2020-02-22T09:33:44+01:00
---
##### Installing the needed tools
2024-09-29 01:48:06 +02:00
```console
$ brew cask install osxfuse
$ brew install ext4fuse
2024-09-29 01:48:06 +02:00
```
##### Mount the disk on your filesystem
2024-09-29 01:48:06 +02:00
```console
$ ext4fuse /dev/disk2s2 pi-star
2024-09-29 01:48:06 +02:00
```
##### 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:
2024-09-29 01:48:06 +02:00
```console
$ sudo dseditgroup -o edit -a $username -t user $groupname
2024-09-29 01:48:06 +02:00
```