<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Howto do something on C-World</title>
    <link>https://www.cislik.de/de/howtos/</link>
    <description>Recent content in Howto do something on C-World</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>de</language>
    <copyright>🄯 2005 - 2026 -- Diese Seite ist lizenziert unter [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/deed.de)</copyright>
    <lastBuildDate>Sat, 04 Mar 2017 18:23:00 +0000</lastBuildDate><atom:link href="https://www.cislik.de/de/howtos/index.xml" rel="self" type="application/rss+xml" />
    
    <item>
      <title>Systemrescue</title>
      <link>https://www.cislik.de/de/howtos/systemrescue/</link>
      <pubDate>Sat, 04 Mar 2017 18:23:00 +0000</pubDate>
      
      <guid>https://www.cislik.de/de/howtos/systemrescue/</guid>
      <description>&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.system-rescue-cd.org/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;SystemRescueCd&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;smartmontools&lt;/li&gt;&#xA;&lt;li&gt;ddrescue&lt;/li&gt;&#xA;&lt;li&gt;testdisk&lt;/li&gt;&#xA;&lt;li&gt;photorec&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&#xA;&lt;h2 class=&#34;relative group&#34;&gt;Smartmontools&#xA;    &lt;div id=&#34;smartmontools&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#smartmontools&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h2&gt;&#xA;&lt;pre&gt;&lt;code&gt;# info&#xA;smartctl -i /dev/sda&#xA;# healthtest&#xA;smartctl -H /dev/sda&#xA;# show attributes&#xA;smartctl -a /dev/sda&#xA;# short test&#xA;smartctl -t short /dev/sda&#xA;smartctl -l selftest /dev/sda&#xA;# long test&#xA;smartctl -t long /dev/sda&#xA;smartctl -l selftest /dev/sda&#xA;# offline test&#xA;smartctl -t offline /dev/sda&#xA;smartctl -l selftest /dev/sda&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h2 class=&#34;relative group&#34;&gt;ddrescue&#xA;    &lt;div id=&#34;ddrescue&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#ddrescue&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h2&gt;&#xA;&lt;pre&gt;&lt;code&gt;cd /path/to/usb-hdd&#xA;# rescue&#xA;#fdisk -l /dev/sda &amp;gt; fdisk-l.txt&#xA;#fdisk -lu /dev/sda &amp;gt; fdsik-lu.txt&#xA;# or if GPT (EFI)&#xA;parted -ls /dev/sda &amp;gt; parted-ls.txt&#xA;parted -lms /dev/sda &amp;gt; parted-lms.txt&#xA;parted /dev/sda print &amp;gt; parted-print.txt&#xA;ddrescue -n /dev/sda hddimage.img hddimage.log&#xA;ddrescue -d -r3 /dev/sda hddimage.img hddimage.log&#xA;# restore&#xA;dd if=hddimage.img of=/dev/sdb bs=1m&#xA;fdisk /dev/sdb&#xA;fsck.ext3&#xA;e2fsck -v -f -p /dev/sdb1&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h2 class=&#34;relative group&#34;&gt;working with image&#xA;    &lt;div id=&#34;working-with-image&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#working-with-image&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h2&gt;&#xA;&lt;pre&gt;&lt;code&gt;cd /path/to/usb-hd&#xA;# (paranoia :-) copy of image)&#xA;cp hddimage.img hddimage-copy.img&#xA;chmod 400 hddimage-copy.img&#xA;kpartx -av hddimage-copy.img&#xA;mkdir /mnt/p1&#xA;mount -o loop,ro /dev/mapper/loop0p1 /mnt/p1&#xA;# do what you want with the data&#xA;ls -la /mnt/p1&#xA;umount /mnt/p1&#xA;kpartx -d hdimage-copy.img&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h2 class=&#34;relative group&#34;&gt;chroot into system&#xA;    &lt;div id=&#34;chroot-into-system&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#chroot-into-system&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h2&gt;&#xA;&lt;pre&gt;&lt;code&gt;sudo mkdir -p /mnt/debian&#xA;sudo mount /dev/mapper/lvm--vg-root--lv--debian /mnt/debian/&#xA;sudo mount /dev/mapper/lvm--vg-var--lv--debian /mnt/debian/var/&#xA;sudo mount /dev/sda2 /mnt/debian/boot/efi/&#xA;sudo mount -o bind /dev/ /mnt/debian/dev/&#xA;sudo mount -o bind /sys/ /mnt/debian/sys/&#xA;sudo mount -o bind /proc/ /mnt/debian/proc/&#xA;#sudo cp /proc/mounts /mnt/debian/etc/mtab&#xA;sudo chroot /mnt/debian/ /bin/bash&#xA;grub-install&#xA;update-grub&#xA;&lt;/code&gt;&lt;/pre&gt;</description>
      
    </item>
    
    <item>
      <title>Fire TV</title>
      <link>https://www.cislik.de/de/howtos/fire-tv/</link>
      <pubDate>Tue, 14 Apr 2015 19:25:00 +0000</pubDate>
      
      <guid>https://www.cislik.de/de/howtos/fire-tv/</guid>
      <description>&lt;h1 class=&#34;relative group&#34;&gt;Was&amp;rsquo;n das?&#xA;    &lt;div id=&#34;wasn-das&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#wasn-das&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h1&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://www.amazon.de/Amazon-W87CUN-Fire-TV-Stick/dp/B00KAKPZYG&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Amazons Fire TV Stick&lt;/a&gt; ist ein praktisches Stück Hardware um &lt;a href=&#34;http://www.amazon.de/gp/prime&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Amazon Prime&lt;/a&gt; zu benutzen.&lt;br&gt;&#xA;Nebenbei kann er auch per App z.B. auf die Mediatheken der (ÖR) Sender oder aber auch YouTube zugreifen.&lt;br&gt;&#xA;Er kann aber auch per &lt;a href=&#34;http://kodi.tv/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Kodi&lt;/a&gt; (früher XBMC) als Multimediazentrale genutzt werden.&lt;/p&gt;&#xA;&#xA;&lt;h1 class=&#34;relative group&#34;&gt;Wie nutz ich das?&#xA;    &lt;div id=&#34;wie-nutz-ich-das&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#wie-nutz-ich-das&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h1&gt;&#xA;&lt;p&gt;Ich denke die &amp;bdquo;normale&amp;ldquo; Nutzung ist so einfach, dass ich mir eine Erläuterung verkneifen kann.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>git - verteilte Versionsverwaltung</title>
      <link>https://www.cislik.de/de/howtos/git/</link>
      <pubDate>Sun, 06 Jul 2014 15:50:00 +0000</pubDate>
      
      <guid>https://www.cislik.de/de/howtos/git/</guid>
      <description>&lt;h1 class=&#34;relative group&#34;&gt;Neues Repository&#xA;    &lt;div id=&#34;neues-repository&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#neues-repository&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h1&gt;&#xA;&lt;pre&gt;&lt;code&gt;mkdir MyProject&#xA;cd MyProject&#xA;# eventuell bestehende Dateien kopieren&#xA;cp -a ../ExistingProject/* .&#xA;# Initialisieren&#xA;git init&#xA;# Dateien dem Repository bekanntmachen&#xA;git add .&#xA;# erstes commit&#xA;git commit -m &amp;quot;Kommentar&amp;quot;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h1 class=&#34;relative group&#34;&gt;Neues Remote Repository&#xA;    &lt;div id=&#34;neues-remote-repository&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#neues-remote-repository&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h1&gt;&#xA;&lt;pre&gt;&lt;code&gt;mkdir MyProject&#xA;cd MyProject&#xA;# Bare Initialisieren&#xA;git --bare init&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h1 class=&#34;relative group&#34;&gt;Repository mit remote Repository verbinden&#xA;    &lt;div id=&#34;repository-mit-remote-repository-verbinden&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#repository-mit-remote-repository-verbinden&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h1&gt;&#xA;&lt;pre&gt;&lt;code&gt;# remote repository verbinden&#xA;git remote add &amp;lt;name&amp;gt; &amp;lt;url-remote&amp;gt;&#xA;# und als default upstream definieren&#xA;git push --set-upstream &amp;lt;name&amp;gt; master&#xA;# ab jetzt reicht ein einfaches push&#xA;git push&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h1 class=&#34;relative group&#34;&gt;Arbeiten mit git&#xA;    &lt;div id=&#34;arbeiten-mit-git&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#arbeiten-mit-git&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h1&gt;&#xA;&lt;pre&gt;&lt;code&gt;# neue/geänderte Dateie(en) für commit vormerken&#xA;git add datei datei2&#xA;# Datei(en) löschen&#xA;git rm Datei&#xA;# Änderungen zum branch syncen&#xA;git commit -m &amp;quot;Kommentar&amp;quot;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h1 class=&#34;relative group&#34;&gt;Konfigurationsdateien&#xA;    &lt;div id=&#34;konfigurationsdateien&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#konfigurationsdateien&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h1&gt;&#xA;&lt;p&gt;Die (User) globale Konfiguration befindet sich in &lt;em&gt;~/.gitconfig&lt;/em&gt;.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Das große Jekyll Howto</title>
      <link>https://www.cislik.de/de/howtos/jekyll/</link>
      <pubDate>Mon, 13 Jan 2014 21:24:00 +0000</pubDate>
      
      <guid>https://www.cislik.de/de/howtos/jekyll/</guid>
      <description>&lt;p&gt;Noch gaanz viel TODO!!!&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://jekyllrb.com/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Jekyll&lt;/a&gt; ist zunächst mal &lt;a href=&#34;https://github.com/jekyll/jekyll/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;&amp;bdquo;a simple, blog aware, static site generator&amp;ldquo;&lt;/a&gt;.&lt;/p&gt;&#xA;&#xA;&lt;h1 class=&#34;relative group&#34;&gt;Ruby Gems vorbereiten&#xA;    &lt;div id=&#34;ruby-gems-vorbereiten&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#ruby-gems-vorbereiten&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h1&gt;&#xA;&#xA;&lt;h2 class=&#34;relative group&#34;&gt;${HOME}/.bashrc&#xA;    &lt;div id=&#34;homebashrc&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#homebashrc&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h2&gt;&#xA;&lt;pre&gt;&lt;code&gt;...&#xA;## Ruby Gems&#xA;export GEM_HOME=$HOME/.gem&#xA;export GEM_PATH=$GEM_HOME:/usr/lib/ruby/1.9.1/rubygems/&#xA;export PATH=$PATH:$GEM_HOME/bin&#xA;...&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h1 class=&#34;relative group&#34;&gt;Jekyll installieren&#xA;    &lt;div id=&#34;jekyll-installieren&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#jekyll-installieren&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h1&gt;&#xA;&lt;pre&gt;&lt;code&gt;sudo apt-get install ruby-dev&#xA;gem install jekyll&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h1 class=&#34;relative group&#34;&gt;Jekyll benutzen&#xA;    &lt;div id=&#34;jekyll-benutzen&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#jekyll-benutzen&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h1&gt;&#xA;&lt;pre&gt;&lt;code&gt;# neue Website anlegen&#xA;jekyll new MeineWebsite&#xA;cd MeineWebsite&#xA;# MeineWebsite im Browser bestaunen&#xA;# http://localhost:4000&#xA;jekyll serve&#xA;&lt;/code&gt;&lt;/pre&gt;</description>
      
    </item>
    
    <item>
      <title>Digitale Bildverarbeitung</title>
      <link>https://www.cislik.de/de/howtos/bildverarbeitung/</link>
      <pubDate>Thu, 31 Oct 2013 11:01:00 +0000</pubDate>
      
      <guid>https://www.cislik.de/de/howtos/bildverarbeitung/</guid>
      <description>&lt;p&gt;Die Digitale Bildverarbeitung erfolgt in mehreren Schritten.&lt;/p&gt;&#xA;&#xA;&lt;h1 class=&#34;relative group&#34;&gt;Bilder von der Didgitalkamera einlesen&#xA;    &lt;div id=&#34;bilder-von-der-didgitalkamera-einlesen&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#bilder-von-der-didgitalkamera-einlesen&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h1&gt;&#xA;&lt;p&gt;Einlesen geht recht komfortabel auf der Kommandozeile mit &lt;a href=&#34;http://gphoto.sourceforge.net/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;gphoto2&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Bilder auf der Kamera auflisten&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;gphoto2 --auto-detect -L&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Alle Bilder einlesen&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;gphoto2 --auto-detect --filename %04n.%C --get-all-files&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;oder nur bestimmte Bereiche (nach laufender Nummer)&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;gphoto2 --auto-detect --filename %04n.%C --get-file &amp;quot;23-1337&amp;quot;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Hierbei werden die Bilder mit der laufenden Nummer 23 bis 1337 eingelesen und im aktuellen Verzeichnis mit laufender Nummer:&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>cdrdao</title>
      <link>https://www.cislik.de/de/howtos/cdrdao/</link>
      <pubDate>Sat, 15 Jan 2011 12:45:00 +0000</pubDate>
      
      <guid>https://www.cislik.de/de/howtos/cdrdao/</guid>
      <description>&lt;h1 class=&#34;relative group&#34;&gt;CDs mit cdrdao brennen&#xA;    &lt;div id=&#34;cds-mit-cdrdao-brennen&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#cds-mit-cdrdao-brennen&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h1&gt;&#xA;&lt;p&gt;Mit dem &lt;a href=&#34;http://www.gnu.org/licenses/gpl.html&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;freien (GPL)&lt;/a&gt; Tool &lt;a href=&#34;http://cdrdao.sourceforge.net/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;cdrdao&lt;/a&gt; (cd-r disc at once) lassen sich sowohl Daten- als auch Audio-CDs recht einfach brennen.&lt;/p&gt;&#xA;&#xA;&lt;h2 class=&#34;relative group&#34;&gt;Audio-CDs&#xA;    &lt;div id=&#34;audio-cds&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#audio-cds&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Ein normales &lt;a href=&#34;http://de.wikipedia.org/wiki/RIFF_WAVE&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;WAVE&lt;/a&gt; File lässt sich per &lt;a href=&#34;http://de.wikipedia.org/wiki/Cuesheet&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Cueheet&lt;/a&gt; ganz einfach per:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;sudo cdrdao write --device /dev/cdrom --driver generic-mmc-raw -v2 -n --eject --speed 2 &amp;quot;Interpret - Titel (wav).cue&amp;quot;  &#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Auf einen Rohling übertragen.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Audio-CDs brennen</title>
      <link>https://www.cislik.de/de/howtos/audio-cd/</link>
      <pubDate>Sat, 15 Jan 2011 12:31:00 +0000</pubDate>
      
      <guid>https://www.cislik.de/de/howtos/audio-cd/</guid>
      <description>&lt;p&gt;Audio CDs lassen sich komfortabel mit dem Tool &lt;a href=&#34;../cdrdao&#34; &gt;cdrdao&lt;/a&gt; brennen.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Rubyripper</title>
      <link>https://www.cislik.de/de/howtos/rubyripper/</link>
      <pubDate>Sat, 15 Jan 2011 11:39:00 +0000</pubDate>
      
      <guid>https://www.cislik.de/de/howtos/rubyripper/</guid>
      <description>&lt;p&gt;Mit der &lt;a href=&#34;http://www.gnu.org/licenses/gpl-3.0.html&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;freien (GPLv3)&lt;/a&gt; Software &lt;a href=&#34;http://code.google.com/p/rubyripper/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Rubyripper&lt;/a&gt; können unter &lt;a href=&#34;http://de.wikipedia.org/wiki/Unixoides_System&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;unixoiden Betriebssystemen&lt;/a&gt; Audio-CDs möglichst fehlerfrei ausgelesen werden.&lt;br&gt;&#xA;Damit wird es unter anderem möglich identische Kopien herzustellen.&lt;/p&gt;&#xA;&lt;p&gt;Die Audio Daten werden als normales &lt;a href=&#34;http://de.wikipedia.org/wiki/RIFF_WAVE&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;WAVE&lt;/a&gt; File, die Metadaten (inklusive mögliecher &lt;a href=&#34;http://www.freedb.org/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;FreeDB&lt;/a&gt; Informationen) als &lt;a href=&#34;http://de.wikipedia.org/wiki/Cuesheet&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Cuesheet&lt;/a&gt; gespeichert.&lt;br&gt;&#xA;Zusätzlich können die ausgelesenen Daten gleich zu &lt;a href=&#34;http://flac.sourceforge.net/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;flac&lt;/a&gt;, &lt;a href=&#34;http://www.vorbis.com/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;vorbis&lt;/a&gt; oder &lt;a href=&#34;http://de.wikipedia.org/wiki/MP3&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;mp3&lt;/a&gt; encodet werden.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Selfsigned OpenSSL Zertifikat erzeugen</title>
      <link>https://www.cislik.de/de/howtos/selfsigned-openssl-cert/</link>
      <pubDate>Tue, 25 May 2010 19:33:00 +0000</pubDate>
      
      <guid>https://www.cislik.de/de/howtos/selfsigned-openssl-cert/</guid>
      <description>&lt;h2 class=&#34;relative group&#34;&gt;Private Key erzeugen&#xA;    &lt;div id=&#34;private-key-erzeugen&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#private-key-erzeugen&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Private key mit RSA 2048 Bit Verschlüsselung erzeugen:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;openssl genrsa -des3 -out www.example.com.key 2048&#xA;Generating RSA private key, 2048 bit long modulus&#xA;...............+++&#xA;...................................................................................+++&#xA;e is 65537 (0x10001)&#xA;Enter pass phrase for www.example.com.key:&#xA;Verifying - Enter pass phrase for www.example.com.key:&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h2 class=&#34;relative group&#34;&gt;Signing Request erzeugen&#xA;    &lt;div id=&#34;signing-request-erzeugen&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#signing-request-erzeugen&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Aus dem private key einen certificate signing request erzeugen:&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>OpenWrt auf Asus WL500GD installieren</title>
      <link>https://www.cislik.de/de/howtos/asus-wl-500gd/</link>
      <pubDate>Tue, 26 Jan 2010 21:40:00 +0000</pubDate>
      
      <guid>https://www.cislik.de/de/howtos/asus-wl-500gd/</guid>
      <description>&lt;p&gt;Heute wollen wir uns anschauen wie sich ein &lt;a href=&#34;http://www.openwrt.org/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;OpenWrt&lt;/a&gt; &lt;a href=&#34;http://kernel.org/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Linux&lt;/a&gt; auf einem WLAN Router wie dem &lt;a href=&#34;http://wl500g.info/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Asus WL500GD&lt;/a&gt; &lt;a href=&#34;http://oldwiki.openwrt.org/OpenWrtDocs%282f%29Hardware%282f%29Asus%282f%29WL500GD.html&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;installieren&lt;/a&gt; lässt.&lt;/p&gt;&#xA;&#xA;&lt;h1 class=&#34;relative group&#34;&gt;Verkabeln&#xA;    &lt;div id=&#34;verkabeln&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#verkabeln&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h1&gt;&#xA;&lt;p&gt;Eine wirklich gute Idee wäre es ein Firmwareupdate nur per Kabel und nicht per WLAN zu machen. Ein einfaches Cross Connect Kabel leistet hier gute Dienste.&lt;/p&gt;&#xA;&#xA;&lt;h1 class=&#34;relative group&#34;&gt;Failure Mode aktivieren&#xA;    &lt;div id=&#34;failure-mode-aktivieren&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#failure-mode-aktivieren&#34; aria-label=&#34;Anker&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h1&gt;&#xA;&lt;p&gt;Erstmal Stecker raus und anschließend reset taster drücken (über dem Stromanschluss) und gleichzeitig wieder mit Strom füttern.&lt;br&gt;&#xA;Kurz danach sollte die Power LED langsam blinken (1 Sekunde an, 1 Sekunde aus).&lt;/p&gt;</description>
      
    </item>
    
  </channel>
</rss>
