The iPhone Wiki is no longer updated. Visit this article on The Apple Wiki for current information. |
Difference between revisions of "/private/etc/fstab"
m (→Jailbreak) |
(Added that fstab was removed in iOS 14.) |
||
(9 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
+ | fstab controls the read/write access of the root and media partitions. A barebones jailbreak can be put in place simply by modifying this file to grant full read/write access to the [[/|root partition]] ([[/dev/disk0s1s1]]). fstab was removed in iOS 14. |
||
− | {{DISPLAYTITLE:/etc/fstab}} |
||
− | fstab controls the read/write access of the root and media partitions. A barebones jailbreak can be put in place simply by modifying this file to grant full read/write access to the user. |
||
− | |||
− | ==Modification== |
||
− | The original fstab file, before a jailbreak, looks something like this: |
||
− | |||
− | <code> |
||
− | /dev/disk0s1 / hfs ro 0 1 |
||
− | |||
− | /dev/disk0s2 /private/var hfs rw,nosuid,nodev 0 2 |
||
− | </code> |
||
− | |||
− | Notice /dev/disk0s2 has /private/var mounted as read/write. This directory is generally where music/photos/videos/etc are stored. This directory can easily be accessed (without FULL access) with a program like PhoneDisk or DiskAid. iTunes has full and complete access to this directory, for obvious reasons. This is proven with the [[afc]] service, which [[iTunes]] uses to transfer music/videos/etc. |
||
− | |||
− | == Summary == |
||
− | This file lists the partitions on all UNIX-based systems. |
||
== File Contents == |
== File Contents == |
||
+ | Note the empty line. This is required for the file to be parsed correctly. |
||
− | * Before jailbreak: <code>/dev/disk0s1 / hfs ro 0 1</code> |
||
+ | === Before [[jailbreak]] === |
||
− | * After jailbreak: <code>/dev/disk0s1 / hfs rw 0 1</code> |
||
+ | [[/dev/disk0s1s1]] / hfs ro 0 1 |
||
+ | [[/dev/disk0s1s2]] /private/var hfs,nosuid,nodev rw 0 2 |
||
+ | |||
+ | === After jailbreak === |
||
+ | /dev/disk0s1s1 / hfs rw 0 1 |
||
+ | /dev/disk0s1s2 /private/var hfs,nosuid,nodev rw 0 2 |
||
+ | |||
+ | == Parents == |
||
+ | {{parent|private|etc}} |
||
+ | [[Category:Ramdisk Patches]] |
||
− | == Parents == |
||
− | [[:/|(Root)]]/[[/etc|etc]] |
Latest revision as of 18:29, 25 April 2021
fstab controls the read/write access of the root and media partitions. A barebones jailbreak can be put in place simply by modifying this file to grant full read/write access to the root partition (/dev/disk0s1s1). fstab was removed in iOS 14.
File Contents
Note the empty line. This is required for the file to be parsed correctly.
Before jailbreak
/dev/disk0s1s1 / hfs ro 0 1 /dev/disk0s1s2 /private/var hfs,nosuid,nodev rw 0 2
After jailbreak
/dev/disk0s1s1 / hfs rw 0 1 /dev/disk0s1s2 /private/var hfs,nosuid,nodev rw 0 2