diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/archive_old.html | 4 | ||||
-rw-r--r-- | docs/gnulinux/configuring_parabola.html | 2 | ||||
-rw-r--r-- | docs/gnulinux/encrypted_parabola.html | 2 | ||||
-rw-r--r-- | docs/gnulinux/grub_cbfs.html | 2 | ||||
-rw-r--r-- | docs/maintain/index.html | 8 |
5 files changed, 9 insertions, 9 deletions
diff --git a/docs/archive_old.html b/docs/archive_old.html index 038fb878..2f5d3146 100644 --- a/docs/archive_old.html +++ b/docs/archive_old.html @@ -203,7 +203,7 @@ <li>scripts (all): fix typos</li> <li>Documentation: general cleanup.</li> <li>builddeps-flashrom: reduce build commands to a single for loop</li> - <li>scripts (all): replace unnecessary rm -rf with rm -f</li> + <li>scripts (all): replace unnecessary rm -Rf with rm -f</li> <li>powertop.trisquel7: remove sudo (script already checks if the user is root)</li> <li>docs/release.html: add lenovo g505s to the list of candidates</li> <li>.gitignore: add libreboot_bin.tar.xz and libreboot_src.tar.xz</li> @@ -575,7 +575,7 @@ <li>'buildrom-withgrub' script: updated it to create 2 sets of ROMs for each machine: one with text-mode, one with coreboot framebuffer.</li> <li>Documentation: updated index.html#rom to reflect the above</li> <li>Deleted unused README and COPYING file from main directory</li> - <li>Removed some rm -rf .git* instructions from the get* scripts and moved them to build-release script</li> + <li>Removed some rm -Rf .git* instructions from the get* scripts and moved them to build-release script</li> <li> Split up default grub.cfg into 6 parts: extra/{common.cfg,txtmode.cfg,vesafb.cfg} and menuentries/{common.cfg,txtmode.cfg,vesafb.cfg} <ul> diff --git a/docs/gnulinux/configuring_parabola.html b/docs/gnulinux/configuring_parabola.html index 3cf5d609..6d2ebe2a 100644 --- a/docs/gnulinux/configuring_parabola.html +++ b/docs/gnulinux/configuring_parabola.html @@ -356,7 +356,7 @@ </p> <p> - The wiki recommends that if the journal gets too large, you can also simply delete (rm -rf) everything inside /var/log/journald/* + The wiki recommends that if the journal gets too large, you can also simply delete (rm -Rf) everything inside /var/log/journald/* but recommends backing it up. This shouldn't be necessary, since you already set the size limit above and systemd will automatically start to delete older records when the journal size reaches it's limit (according to systemd developers). </p> diff --git a/docs/gnulinux/encrypted_parabola.html b/docs/gnulinux/encrypted_parabola.html index 09e16d78..1538b9a7 100644 --- a/docs/gnulinux/encrypted_parabola.html +++ b/docs/gnulinux/encrypted_parabola.html @@ -284,7 +284,7 @@ I deleted the files that it mentioned and then it worked. Specifically, I had this error:<br/> <i>licenses: /usr/share/licenses/common/MPS exists in filesystem</i><br/> - I rm -rf'd the file and then pacman worked. I'm told that the following would have also made it work:<br/> + I rm -Rf'd the file and then pacman worked. I'm told that the following would have also made it work:<br/> # <b>pacman -Sf licenses</b><br/> </troubleshooting><br/> </p> diff --git a/docs/gnulinux/grub_cbfs.html b/docs/gnulinux/grub_cbfs.html index 12b03765..1813629f 100644 --- a/docs/gnulinux/grub_cbfs.html +++ b/docs/gnulinux/grub_cbfs.html @@ -363,7 +363,7 @@ Instead, go into /boot and create your own symlinks (update them manually when you install a new kernel update).<br/> $ <b>sudo -s</b><br/> # <b>cd /boot/</b><br/> - # <b>rm -rf vmlinuz initrd.img</b><br/> + # <b>rm -Rf vmlinuz initrd.img</b><br/> # <b>ln -s <u>kernel</u> ksym</b><br/> # <b>ln -s <u>initrd</u> isym</b><br/> # <b>exit</b> diff --git a/docs/maintain/index.html b/docs/maintain/index.html index a8cc0a56..57798010 100644 --- a/docs/maintain/index.html +++ b/docs/maintain/index.html @@ -130,7 +130,7 @@ <p> If you already had a coreboot/ directory in your libreboot tree, delete it:<br/> - $ <b>rm -rf coreboot/</b> + $ <b>rm -Rf coreboot/</b> </p> <p> @@ -151,7 +151,7 @@ </p> <p> Delete the .git* resources. For example:<br/> - $ <b>rm -rf .git*</b><br/> + $ <b>rm -Rf .git*</b><br/> ...this is to avoid the deblobbing script from picking up files in there as blobs, which would be only false positives and increase the amount of time taken. Now come out of coreboot:<br/> @@ -219,7 +219,7 @@ <p> Now delete the coreboot directory:<br/> - $ <b>rm -rf coreboot/</b> + $ <b>rm -Rf coreboot/</b> </p> <p> @@ -403,7 +403,7 @@ <h1 id="updating_grub">Updating GRUB</h1> <p> - $ <b>rm -rf grub/</b><br/> + $ <b>rm -Rf grub/</b><br/> $ <b>git clone git://git.savannah.gnu.org/grub.git</b><br/> $ <b>cd grub/</b><br/> $ <b>git log</b> |