Skip to content

Commit

Permalink
feat: Add steam on macOS case sensitiv fs post
Browse files Browse the repository at this point in the history
Documentation how to use steam with macOS and a case sensitiv filesystem
  • Loading branch information
nexeck committed Mar 16, 2019
1 parent 1960012 commit ad62346
Show file tree
Hide file tree
Showing 15 changed files with 41 additions and 14 deletions.
1 change: 0 additions & 1 deletion content/posts/bash-bad-interpreter.md
Expand Up @@ -2,7 +2,6 @@
title: "Bash: /bin/bash^M: bad interpreter: no such file or directory"
date: 2011-09-13T18:38:55+01:00
draft: false
toc: false
tags:
- bash
---
Expand Down
1 change: 0 additions & 1 deletion content/posts/bash-change-eol.md
Expand Up @@ -2,7 +2,6 @@
title: "Bash: Change EOL"
date: 2013-02-07T19:34:00+01:00
draft: false
toc: false
tags:
- bash
---
Expand Down
Expand Up @@ -2,7 +2,6 @@
title: "Bash: Delete all but the most recent X files"
date: 2012-05-26T18:31:00+01:00
draft: false
toc: false
tags:
- bash
---
Expand Down
1 change: 0 additions & 1 deletion content/posts/bash-for-earch-directory.md
Expand Up @@ -2,7 +2,6 @@
title: "Bash: For each directory"
date: 2012-12-16T13:14:00+01:00
draft: false
toc: false
tags:
- bash
---
Expand Down
1 change: 0 additions & 1 deletion content/posts/bash-kill-a-process-ala-grep.md
Expand Up @@ -2,7 +2,6 @@
title: "Bash: Kill a process ala grep"
date: 2011-11-11T13:03:00+01:00
draft: false
toc: false
tags:
- bash
---
Expand Down
Expand Up @@ -2,7 +2,6 @@
title: "Bash: Loop through directories and sub-directoires"
date: 2012-05-28T10:30:00+01:00
draft: false
toc: false
tags:
- bash
---
Expand Down
1 change: 0 additions & 1 deletion content/posts/bash-mkdir-skip-existing-directories.md
Expand Up @@ -2,7 +2,6 @@
title: "Bash: mkdir skip existing directories"
date: 2011-09-16T11:18:00+01:00
draft: false
toc: false
tags:
- bash
---
Expand Down
1 change: 0 additions & 1 deletion content/posts/bash-unary-operator-expected.md
Expand Up @@ -2,7 +2,6 @@
title: "Bash: [: =: unary operator expected"
date: 2013-02-28T10:32:00+01:00
draft: false
toc: false
tags:
- bash
---
Expand Down
2 changes: 0 additions & 2 deletions content/posts/macbook-fresh-installation.md
Expand Up @@ -2,8 +2,6 @@
title: "MacBook Fresh Installation"
date: 2018-12-23T02:16:18+01:00
draft: false
toc: false
images:
tags:
- MacBook
- macOS
Expand Down
2 changes: 0 additions & 2 deletions content/posts/macbook-setup-backup-with-restic-and-b2.md
Expand Up @@ -2,8 +2,6 @@
title: "Macbook Setup Backup With Restic And B2"
date: 2019-01-03T22:16:55+01:00
draft: true
toc: false
images:
tags:
- MacBook
- macOS
Expand Down
2 changes: 0 additions & 2 deletions content/posts/macbook-setup-dotfiles.md
Expand Up @@ -2,8 +2,6 @@
title: "MacBook Setup dotfiles"
date: 2019-01-03T21:50:55+01:00
draft: false
toc: false
images:
tags:
- MacBook
- macOS
Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions content/posts/macbook-steam-case-sensitiv-filesystem.md
@@ -0,0 +1,41 @@
---
title: "Steam on Case-Sesitiv Filesystem with MacOS"
date: 2019-03-16T17:15:04+01:00
draft: false
tags:
- MacBook
- macOS
- Mojave
---

# Preperation
## Open macOS Disk Utility
![Disk Utility- Before](/posts/macbook-steam-case-sensitiv-filesystem-001.png)
## Create a new case-insentive container
![Disk Utility - Create Container](/posts/macbook-steam-case-sensitiv-filesystem-002.png)
## After creating the new container
![Disk Utility - After](/posts/macbook-steam-case-sensitiv-filesystem-003.png)

# Steam
1. Install Steam

```sh
brew cask install steam
```

2. Move Application Support Directory

```sh
# Create directory
mkdir -p /Volumes/Case-Insensitive/Application\ Support/Steam
# Copy existing files to new directory
test -d ~/Library/Application\ Support/Steam && cp -pR ~/Library/Application\ Support/Steam /Volumes/Case-Insensitive/Application\ Support/Steam
# Delete existing files
test -d ~/Library/Application\ Support/Steam && rm -rf ~/Library/Application\ Support/Steam
```

3. Symlink Steam Application Support Directory

```sh
ln -s /Volumes/Case-Insensitive/Application\ Support/Steam ~/Library/Application\ Support/Steam
```

0 comments on commit ad62346

Please sign in to comment.