aboutsummaryrefslogtreecommitdiff
path: root/articles/2012-08-29_erfahrungen_mit_einer_ssd_unter_linux.md
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-08-10 13:09:42 +0200
committerAdrian Kummerlaender2014-08-10 13:09:42 +0200
commitf4043ec1e9f02efc7f653274b9e4e22ef2782a51 (patch)
tree7094d038dd30eef441b6895a2ac99daf5720e7d4 /articles/2012-08-29_erfahrungen_mit_einer_ssd_unter_linux.md
parent8d7f2c536f3c48d17b1de244fe6713f4d4499fd5 (diff)
downloadblog_content-f4043ec1e9f02efc7f653274b9e4e22ef2782a51.tar
blog_content-f4043ec1e9f02efc7f653274b9e4e22ef2782a51.tar.gz
blog_content-f4043ec1e9f02efc7f653274b9e4e22ef2782a51.tar.bz2
blog_content-f4043ec1e9f02efc7f653274b9e4e22ef2782a51.tar.lz
blog_content-f4043ec1e9f02efc7f653274b9e4e22ef2782a51.tar.xz
blog_content-f4043ec1e9f02efc7f653274b9e4e22ef2782a51.tar.zst
blog_content-f4043ec1e9f02efc7f653274b9e4e22ef2782a51.zip
Switched content formatter to kramdown
* implemented language selection for automatic syntax highlighting ** language selection requires the language to be used to be passed as a class of the code element ** kramdown enables easy definition of this class attribute * kramdown offers more functionality such as table and class attribute support * updated all articles accordingly
Diffstat (limited to 'articles/2012-08-29_erfahrungen_mit_einer_ssd_unter_linux.md')
-rw-r--r--articles/2012-08-29_erfahrungen_mit_einer_ssd_unter_linux.md19
1 files changed, 11 insertions, 8 deletions
diff --git a/articles/2012-08-29_erfahrungen_mit_einer_ssd_unter_linux.md b/articles/2012-08-29_erfahrungen_mit_einer_ssd_unter_linux.md
index b714997..ebe48e5 100644
--- a/articles/2012-08-29_erfahrungen_mit_einer_ssd_unter_linux.md
+++ b/articles/2012-08-29_erfahrungen_mit_einer_ssd_unter_linux.md
@@ -21,14 +21,17 @@ nötig sein sollte ist das umso besser. Die 16 GiB SD-Karte des SheevaPlugs läu
Hier meine derzeitige `/etc/fstab`:
- #
- # /etc/fstab: static file system information
- #
- # <file system> <dir> <type> <options> <dump> <pass>
- tmpfs /tmp tmpfs nodev,nosuid 0 0
-
- /dev/sda1 swap swap defaults,noatime,discard 0 0
- /dev/sda2 / ext4 defaults,noatime,discard,data=ordered 0 0
+~~~
+#
+# /etc/fstab: static file system information
+#
+# <file system> <dir> <type> <options> <dump> <pass>
+tmpfs /tmp tmpfs nodev,nosuid 0 0
+
+/dev/sda1 swap swap defaults,noatime,discard 0 0
+/dev/sda2 / ext4 defaults,noatime,discard,data=ordered 0 0
+~~~
+{: .language-sh}
### Verschlüsselung?