KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
mkinitcpio-overlayfs
★ 10
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
wiki.newae.com
:
This is a GIT syncronization of https://wiki.newae.com
PSDBC
:
No description available.
clove_bounty
:
Help us populate the many altcoins for our atomic swap protocol!
Commercium_Deprecated
:
DEPRECATED Commercium :: integration/staging tree
furnari-flow
:
Antonino Furnari's fork of Feichtenhofer's gpu_flow, with temporal dilation.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
mkinitcpio-overlayfs
?
Download (.md)
# What? # Installation `yaourt -S mkinitcpio-overlayfs` # Configuration To enable the hook you need to edit the configuration file `/etc/mkinitcpio.conf`. With this you can customize your ramdisk with additional modules, scripts, files and what not. However, after a clean Arch Linux installation you will find a line which looks like this: ``` HOOKS=(base udev autodetect modconf block filesystems keyboard fsck) ``` Just put `overlayfs` at the right time / position you want to run it, like below. In this example it will be executed last. ``` HOOKS=(base udev autodetect modconf block filesystems keyboard fsck overlayfs) ``` Finally run the following command to rebuild your ramdisk. ``` mkinitcpio -P ```