Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
book
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
9
Issues
9
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
redox-os
book
Commits
15607e04
Commit
15607e04
authored
Jan 07, 2021
by
David Marceau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update ch02-05-compiling-redox.md
add topic Changing Redox Filesystem Size
parent
7cb67273
Pipeline
#8928
passed with stage
in 4 minutes and 28 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
src/ch02-05-compiling-redox.md
src/ch02-05-compiling-redox.md
+25
-0
No files found.
src/ch02-05-compiling-redox.md
View file @
15607e04
...
...
@@ -10,6 +10,31 @@ $ make all
Give it a while. Redox is big.
Changing Redox Filesystem Size
------------------------------
"make all" generates a diskimage with the default filesystem size 256MB.
You are likely to want to increase this default size 256MB
edit the file redox/mk/config.mk
and change:
```
sh
FILESYSTEM_SIZE?
=
256
```
To 20GB:
```
sh
FILESYSTEM_SIZE?
=
20480
```
Then "make -B all" after that to ensure it rebuilds everything.
This will hopefully give you enough space to install
more packages inside this image for example:
```
sh
$
pkg
install
gcc git ssh rust64
```
Running Redox
-------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment