<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web &#8211; Linux und Ich</title>
	<atom:link href="https://linuxundich.de/tag/web/feed/" rel="self" type="application/rss+xml" />
	<link>https://linuxundich.de</link>
	<description>Blog über Ubuntu, Linux, Android und IT</description>
	<lastBuildDate>Thu, 13 Mar 2025 12:29:17 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://linuxundich.de/wp-content/uploads/2025/04/cropped-lui-app-512-32x32.png</url>
	<title>Web &#8211; Linux und Ich</title>
	<link>https://linuxundich.de</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>YouTube-Videos responsive in WordPress-Blogs und statische Webseiten einbetten</title>
		<link>https://linuxundich.de/webhosting/youtube-videos-responsive-in-wordpress-blogs-und-statische-webseiten-einbetten/</link>
					<comments>https://linuxundich.de/webhosting/youtube-videos-responsive-in-wordpress-blogs-und-statische-webseiten-einbetten/#comments</comments>
		
		<dc:creator><![CDATA[Christoph Langner]]></dc:creator>
		<pubDate>Mon, 03 Mar 2014 12:41:38 +0000</pubDate>
				<category><![CDATA[Webdesign/-hosting]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Yoko]]></category>
		<category><![CDATA[YouTube]]></category>
		<guid isPermaLink="false">http://linuxundich.de/?p=22775</guid>

					<description><![CDATA[YouTube hat ja eine sehr leicht bedienbare &#8222;Bette dieses Video in andere Webseiten ein&#8220;-Funktion. Dazu öffnet man einfach das YouTube-Video, wählt &#8222;Teilen&#8220; und &#8222;Einbetten&#8220; an, und schon hat man den entsprechenden Iframe-Code, den man nur noch in sein Blog oder eine statische Webseite einbauen muss. Allerdings gibt es dabei ein kleines Problemchen für alle, die [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>YouTube hat ja eine sehr leicht bedienbare &#8222;Bette dieses Video in andere Webseiten ein&#8220;-Funktion. Dazu öffnet man einfach das YouTube-Video, wählt &#8222;Teilen&#8220; und &#8222;Einbetten&#8220; an, und schon hat man den entsprechenden Iframe-Code, den man nur noch in sein Blog oder eine statische Webseite einbauen muss. Allerdings gibt es dabei ein kleines Problemchen für alle, die mit einer Webseite im &#8222;Responsive&#8220;-Design arbeiten. Also einer Seite, die sich automatisch der Displaybreite des Endgeräts anpasst &#8212; so wie hier auch bei mir im Blog. Wählt man für die YouTube-Videos ein Breite, die perfekt in den Seitenaufbau im PC-Browser passt, dann ergeben sich beim Laden der Seite auf Handys oder Tablets schwarze Balken. Mit ein bisschen CSS-Magie lässt sich dieses Problem jedoch beheben.</p>
<p><span id="more-22775"></span></p>
<p>Dazu nötig sind ein paar Zeilen wenige CSS-Code, den es gilt in die eigene Webseite einzubauen. Bei WordPress würde das Ganze also in die style.css eures Themes gehören. Unterstützt euer WordPress-Template Child-Themes, dann solltet ihr die Zeilen natürlich in dieses einbauen, so gehen euch die Änderungen bei einem Updates des Templates nicht verloren.</p>
<pre>.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}</pre>
<p>Habt ihr die Zeilen mit dem CSS-Code in euer Theme integriert, müsst ihr beim Einbetten des von euch gewünschten YouTube-Videos nun nur noch darauf achten, das Video-Container-Block-Element um den Iframe des Videos zu legen. Anschließend passt sich auch das YouTube-Video der Breite des Browsers an.</p>
<pre>&lt;div class="video-container"&gt;
         &lt;iframe src="http://www.youtube.com/embed/dFVxGRekRSg" frameborder="0" width="560" height="315"&gt;&lt;/iframe&gt;
&lt;/div&gt;</pre>
<p>Da ITler fauler Menschen sind, die wiederkehrende Aufgaben lieber abkürzen, nutze ich für das Einbetten von Videos das <a href="http://wordpress.org/plugins/wordpress-video-plugin/" target="_blank" rel="noopener">WordPress Video Plugin</a>. So lassen sich Online-Videos aus diversen Quellen deutlich leichter per Shortcode in das Blog einbinden. Für mich hat das aber nun auch den Vorteil, dass ich den Video-Container gleich allen bisher in das Blog eingebetteten Videos überstülpen kann. Dazu muss in der <em>/wp-content/plugins/wordpress-video-plugin/videos.php</em> lediglich der YouTube-Code angepasst werden, ich habe mich hier für die simpelste Lösung entschieden und baue das Block-Element einfach in die Iframe-Zeile ein.</p>
<pre>// Youtube Code
...
define("YOUTUBE_TARGET", "&lt;div class="video-container"&gt;&lt;iframe width="###WIDTH###" height="###HEIGHT###" src="http://www.youtube.com/embed/###URL###?wmode=transparent" frameborder="0" allowfullscreen&gt; &lt;/iframe&gt;&lt;/div&gt;");</pre>
<p>Das Ergebnis kann man zum Beispiel unter <a href="http://linuxundich.de/ubuntu/mein-weg-zu-arch-teil1-warum-arch-warum-die-gnome-shell/">Mein Weg zu Arch… Teil1: Warum Arch? Warum die GNOME Shell</a> gerne gleich hier im Blog ansehen. Am PC liegen die YouTube-Leisten in der Vorschau deutlich enger am Bild an und besonders auf mobilen Geräten fehlen die hässlichen Ränder jetzt komplett. Die Umstellung tritt besonders auf Handy im Hochkantformat hervor.</p>
<h2>PC-Browser</h2>
<p><a href="http://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-browser.png"><img fetchpriority="high" decoding="async" class="td-modal-image aligncenter wp-image-22796 size-medium" src="https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-browser-640x519.png" alt="nonresponsive-youtube-browser" width="640" height="519" srcset="https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-browser-640x519.png 640w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-browser-518x420.png 518w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-browser-681x552.png 681w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-browser-250x203.png 250w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-browser-550x446.png 550w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-browser-800x648.png 800w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-browser-222x180.png 222w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-browser-370x300.png 370w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-browser-617x500.png 617w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-browser.png 965w" sizes="(max-width: 640px) 100vw, 640px"></a></p>
<p><a href="http://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-browser.png"><img decoding="async" class="td-modal-image aligncenter wp-image-22799 size-medium" src="https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-browser-640x519.png" alt="responsive-youtube-browser" width="640" height="519" srcset="https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-browser-640x519.png 640w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-browser-518x420.png 518w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-browser-681x552.png 681w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-browser-250x203.png 250w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-browser-550x446.png 550w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-browser-800x648.png 800w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-browser-222x180.png 222w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-browser-370x300.png 370w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-browser-617x500.png 617w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-browser.png 965w" sizes="(max-width: 640px) 100vw, 640px"></a></p>
<h2>Tablet Hochformat</h2>
<p><a href="http://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-hoch.png"><img decoding="async" class="td-modal-image aligncenter wp-image-22797 size-medium" src="https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-hoch-640x1024.png" alt="nonresponsive-youtube-tablet-hoch" width="640" height="1024" srcset="https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-hoch-640x1024.png 640w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-hoch-263x420.png 263w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-hoch-681x1090.png 681w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-hoch-250x400.png 250w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-hoch-550x880.png 550w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-hoch.png 800w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-hoch-113x180.png 113w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-hoch-188x300.png 188w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-hoch-313x500.png 313w" sizes="(max-width: 640px) 100vw, 640px"></a></p>
<p><a href="http://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-hoch.png"><img loading="lazy" decoding="async" class="td-modal-image aligncenter wp-image-22800 size-medium" src="https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-hoch-640x1024.png" alt="responsive-youtube-tablet-hoch" width="640" height="1024" srcset="https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-hoch-640x1024.png 640w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-hoch-263x420.png 263w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-hoch-681x1090.png 681w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-hoch-250x400.png 250w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-hoch-550x880.png 550w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-hoch.png 800w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-hoch-113x180.png 113w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-hoch-188x300.png 188w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-hoch-313x500.png 313w" sizes="auto, (max-width: 640px) 100vw, 640px"></a></p>
<h2>Tablet Querformat</h2>
<p><a href="http://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-quer.png"><img loading="lazy" decoding="async" class="td-modal-image aligncenter wp-image-22798 size-medium" src="https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-quer-640x400.png" alt="nonresponsive-youtube-tablet-quer" width="640" height="400" srcset="https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-quer-640x400.png 640w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-quer.png 1280w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-quer-672x420.png 672w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-quer-681x426.png 681w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-quer-250x156.png 250w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-quer-550x344.png 550w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-quer-800x500.png 800w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-quer-288x180.png 288w, https://linuxundich.de/wp-content/uploads/2014/02/nonresponsive-youtube-tablet-quer-480x300.png 480w" sizes="auto, (max-width: 640px) 100vw, 640px"></a></p>
<p><a href="http://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-quer.png"><img loading="lazy" decoding="async" class="td-modal-image aligncenter wp-image-22801 size-medium" src="https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-quer-640x400.png" alt="responsive-youtube-tablet-quer" width="640" height="400" srcset="https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-quer-640x400.png 640w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-quer.png 1280w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-quer-672x420.png 672w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-quer-681x426.png 681w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-quer-250x156.png 250w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-quer-550x344.png 550w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-quer-800x500.png 800w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-quer-288x180.png 288w, https://linuxundich.de/wp-content/uploads/2014/02/responsive-youtube-tablet-quer-480x300.png 480w" sizes="auto, (max-width: 640px) 100vw, 640px"></a></p>
<h2>Handy Hochformat</h2>
<p><a href="http://linuxundich.de/wp-content/uploads/2014/03/lui-youtube-responsive-handy.png"><img loading="lazy" decoding="async" class="td-modal-image aligncenter wp-image-22860 size-medium" src="https://linuxundich.de/wp-content/uploads/2014/03/lui-youtube-responsive-handy-640x569.png" alt="lui-youtube-responsive-handy" width="640" height="569" srcset="https://linuxundich.de/wp-content/uploads/2014/03/lui-youtube-responsive-handy-640x569.png 640w, https://linuxundich.de/wp-content/uploads/2014/03/lui-youtube-responsive-handy-1152x1024.png 1152w, https://linuxundich.de/wp-content/uploads/2014/03/lui-youtube-responsive-handy-473x420.png 473w, https://linuxundich.de/wp-content/uploads/2014/03/lui-youtube-responsive-handy-681x605.png 681w, https://linuxundich.de/wp-content/uploads/2014/03/lui-youtube-responsive-handy-250x222.png 250w, https://linuxundich.de/wp-content/uploads/2014/03/lui-youtube-responsive-handy-550x489.png 550w, https://linuxundich.de/wp-content/uploads/2014/03/lui-youtube-responsive-handy-800x711.png 800w, https://linuxundich.de/wp-content/uploads/2014/03/lui-youtube-responsive-handy-203x180.png 203w, https://linuxundich.de/wp-content/uploads/2014/03/lui-youtube-responsive-handy-338x300.png 338w, https://linuxundich.de/wp-content/uploads/2014/03/lui-youtube-responsive-handy-563x500.png 563w, https://linuxundich.de/wp-content/uploads/2014/03/lui-youtube-responsive-handy.png 1440w" sizes="auto, (max-width: 640px) 100vw, 640px"></a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://linuxundich.de/webhosting/youtube-videos-responsive-in-wordpress-blogs-und-statische-webseiten-einbetten/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Linux-Hilfe per IRC und Webchat</title>
		<link>https://linuxundich.de/gnu-linux/linux-hilfe-per-irc-und-webchat/</link>
					<comments>https://linuxundich.de/gnu-linux/linux-hilfe-per-irc-und-webchat/#comments</comments>
		
		<dc:creator><![CDATA[Christoph Langner]]></dc:creator>
		<pubDate>Thu, 03 Dec 2009 21:30:52 +0000</pubDate>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Distributionen]]></category>
		<category><![CDATA[Hilfe]]></category>
		<category><![CDATA[IRC]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web]]></category>
		<guid isPermaLink="false">http://linuxundich.de/de/?p=5183</guid>

					<description><![CDATA[Gerade wenn man schnell und dringend Hilfe sucht sind IRC-Chats eine gute Möglichkeit Hilfe zu finden. In den einschlägigen IRC-Kanälen sitzen eigentlich immer fleißige Helfer, die bei Problemen direkt ansprechbar sind. Solange man sich an eine Hand voll grundlegender Regeln hält, wird man auch nett behandelt. Da die gängigsten Linux-Distributionen ihre IRC-Kanäle auf freenode liegen [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Gerade wenn man schnell und dringend Hilfe sucht sind <a href="http://de.wikipedia.org/wiki/Internet_Relay_Chat" target="_blank" rel="noopener">IRC-Chats</a> eine gute Möglichkeit Hilfe zu finden. In den einschlägigen IRC-Kanälen sitzen eigentlich immer fleißige Helfer, die bei Problemen direkt ansprechbar sind. Solange man sich an eine Hand voll grundlegender <a href="http://wiki.ubuntuusers.de/LocoTeam/IRC#Das-Regelwerk-der-Ubuntu-IRC-Channels" target="_blank" rel="noopener">Regeln</a> hält, wird man auch nett behandelt.</p>
<p><span id="more-5183"></span></p>
<p>Da die gängigsten Linux-Distributionen ihre IRC-Kanäle auf <a href="http://freenode.net/" target="_blank" rel="noopener">freenode</a> liegen haben und man daher den <a href="http://webchat.freenode.net/" target="_blank" rel="noopener">Webchat-Client</a> von freenode benutzen kann, braucht man im Notfall nicht einmal ein IRC-Programm auf fremden Rechner installieren. Einfach Browser starte, Nicknamen eintragen und den Kanal eingeben. Falls Ihr also einmal &#8222;interaktive&#8220; Hilfe sucht, dann schaut im IRC vorbei. Anbei findet ihr Links zu den deutschsprachigen und englischen IRC-Kanälen der beliebtesten Distributionen&#8230;</p>
<p><img loading="lazy" decoding="async" class="alignright size-full wp-image-5203" title="arch" src="http://linuxundich.de/wp-content/uploads/2009/12/arch.png" alt="arch" width="75" height="75" srcset="https://linuxundich.de/wp-content/uploads/2009/12/arch.png 75w, https://linuxundich.de/wp-content/uploads/2009/12/arch-48x48.png 48w" sizes="auto, (max-width: 75px) 100vw, 75px"></p>
<h2>Arch</h2>
<p><a href="http://www.archlinux.org/irc/" target="_blank" rel="noopener">Übersicht</a></p>
<p>#archlinux: <a href="http://webchat.freenode.net/?channels=archlinux" target="_blank" rel="noopener">webchat</a> &#8211; <a href="irc://irc.freenode.net/archlinux" target="_blank" rel="noopener">irc</a><br>
#archlinux.de: <a href="http://webchat.freenode.net/?channels=archlinux.de" target="_blank" rel="noopener">webchat</a> &#8211; <a href="irc://irc.freenode.net/archlinux.de" target="_blank" rel="noopener">irc</a></p>
<p><img loading="lazy" decoding="async" class="alignright size-full wp-image-5204" title="debian" src="http://linuxundich.de/wp-content/uploads/2009/12/debian.png" alt="debian" width="75" height="75" srcset="https://linuxundich.de/wp-content/uploads/2009/12/debian.png 75w, https://linuxundich.de/wp-content/uploads/2009/12/debian-48x48.png 48w" sizes="auto, (max-width: 75px) 100vw, 75px"></p>
<h2>Debian</h2>
<p><a href="http://wiki.debian.org/IRC" target="_blank" rel="noopener">Übersicht</a></p>
<p>#debian: <a href="http://webchat.freenode.net/?channels=debian" target="_blank" rel="noopener">webchat</a> &#8211; <a href="irc://irc.freenode.net/debian" target="_blank" rel="noopener">irc</a><br>
#debian.de: <a href="http://webchat.freenode.net/?channels=debian.de" target="_blank" rel="noopener">webchat</a> &#8211; <a href="irc://irc.freenode.net/debian.de" target="_blank" rel="noopener">irc</a></p>
<p><img loading="lazy" decoding="async" class="alignright size-full wp-image-5205" title="fedora" src="http://linuxundich.de/wp-content/uploads/2009/12/fedora.png" alt="fedora" width="75" height="75" srcset="https://linuxundich.de/wp-content/uploads/2009/12/fedora.png 75w, https://linuxundich.de/wp-content/uploads/2009/12/fedora-48x48.png 48w" sizes="auto, (max-width: 75px) 100vw, 75px"></p>
<h2>Fedora</h2>
<p><a href="http://fedoraproject.org/wiki/Communicate#IRC" target="_blank" rel="noopener">Übersicht</a></p>
<p>#fedora: <a href="http://webchat.freenode.net/?channels=fedora" target="_blank" rel="noopener">webchat</a> &#8211; <a href="irc://irc.freenode.net/fedora" target="_blank" rel="noopener">irc</a><br>
#fedora-de: <a href="http://webchat.freenode.net/?channels=fedora-de" target="_blank" rel="noopener">webchat</a> &#8211; <a href="irc://irc.freenode.net/fedora-de" target="_blank" rel="noopener">irc</a></p>
<p><img loading="lazy" decoding="async" class="alignright size-full wp-image-5206" title="gentoo" src="http://linuxundich.de/wp-content/uploads/2009/12/gentoo.png" alt="gentoo" width="75" height="75" srcset="https://linuxundich.de/wp-content/uploads/2009/12/gentoo.png 75w, https://linuxundich.de/wp-content/uploads/2009/12/gentoo-48x48.png 48w" sizes="auto, (max-width: 75px) 100vw, 75px"></p>
<h2>Gentoo</h2>
<p><a href="http://www.gentoo.org/main/en/irc.xml" target="_blank" rel="noopener">Übersicht</a></p>
<p>#gentoo: <a href="http://webchat.freenode.net/?channels=gentoo" target="_blank" rel="noopener">webchat</a> &#8211; <a href="irc://irc.freenode.net/gentoo" target="_blank" rel="noopener">irc</a><br>
#gentoo.de: <a href="http://webchat.freenode.net/?channels=gentoo.de" target="_blank" rel="noopener">webchat</a> &#8211; <a href="irc://irc.freenode.net/gentoo.de" target="_blank" rel="noopener">irc</a></p>
<p><img loading="lazy" decoding="async" class="alignright size-full wp-image-5207" title="linuxmint" src="http://linuxundich.de/wp-content/uploads/2009/12/linuxmint.png" alt="linuxmint" width="75" height="75" srcset="https://linuxundich.de/wp-content/uploads/2009/12/linuxmint.png 75w, https://linuxundich.de/wp-content/uploads/2009/12/linuxmint-48x48.png 48w" sizes="auto, (max-width: 75px) 100vw, 75px"></p>
<h2>Linux Mint</h2>
<p><a href="http://www.linuxmint.com/links.php" target="_blank" rel="noopener">Übersicht</a> (Es gibt keinen deutschsprachigen IRC-Channel)</p>
<p>#linuxmint: <a href="http://www.gogloom.com/client2/index2?mainCHAT=1&amp;network=SpotChat&amp;channel=%23linuxmint" target="_blank" rel="noopener">webchat</a> &#8211; <a href="irc://irc.spotchat.org/linuxmint" target="_blank" rel="noopener">irc</a> (auf irc.spotchat.org)<br>
#linuxmint-chat: <a href="http://www.gogloom.com/client2/index2?mainCHAT=1&amp;network=SpotChat&amp;channel=%23linuxmint-chat" target="_blank" rel="noopener">webchat</a> &#8211; <a href="irc://irc.spotchat.org/linuxmint-chat" target="_blank" rel="noopener">irc</a> (auf irc.spotchat.org)</p>
<p><img loading="lazy" decoding="async" class="alignright size-full wp-image-5208" title="mandriva" src="http://linuxundich.de/wp-content/uploads/2009/12/mandriva.png" alt="mandriva" width="75" height="75" srcset="https://linuxundich.de/wp-content/uploads/2009/12/mandriva.png 75w, https://linuxundich.de/wp-content/uploads/2009/12/mandriva-48x48.png 48w" sizes="auto, (max-width: 75px) 100vw, 75px"></p>
<h2>Mandriva</h2>
<p><a href="http://wiki.mandriva.com/de/Docs/Support/Resources" target="_blank" rel="noopener">Übersicht</a></p>
<p>#mandriva: <a href="http://webchat.freenode.net/?channels=mandriva" target="_blank" rel="noopener">webchat</a> &#8211; <a href="irc://irc.freenode.net/mandriva" target="_blank" rel="noopener">irc</a><br>
#mandriva-de: <a href="http://webchat.freenode.net/?channels=mandriva-de" target="_blank" rel="noopener">webchat</a> &#8211; <a href="irc://irc.freenode.net/mandriva-de" target="_blank" rel="noopener">irc</a></p>
<p><img loading="lazy" decoding="async" class="alignright size-full wp-image-5209" title="opensuse" src="http://linuxundich.de/wp-content/uploads/2009/12/opensuse.png" alt="opensuse" width="75" height="75" srcset="https://linuxundich.de/wp-content/uploads/2009/12/opensuse.png 75w, https://linuxundich.de/wp-content/uploads/2009/12/opensuse-48x48.png 48w" sizes="auto, (max-width: 75px) 100vw, 75px"></p>
<h2>openSUSE</h2>
<p><a href="http://de.opensuse.org/Vorlage:IRC-channels" target="_blank" rel="noopener">Übersicht</a></p>
<p>#opensuse: <a href="http://webchat.freenode.net/?channels=opensuse" target="_blank" rel="noopener">webchat</a> &#8211; <a href="irc://irc.freenode.net/opensuse" target="_blank" rel="noopener">irc</a><br>
#opensuse-de: <a href="http://webchat.freenode.net/?channels=opensuse-de" target="_blank" rel="noopener">webchat</a> &#8211; <a href="irc://irc.freenode.net/opensuse-de" target="_blank" rel="noopener">irc</a></p>
<p><img loading="lazy" decoding="async" class="alignright size-full wp-image-5210" title="ubuntu" src="http://linuxundich.de/wp-content/uploads/2009/12/ubuntu.png" alt="ubuntu" width="75" height="75" srcset="https://linuxundich.de/wp-content/uploads/2009/12/ubuntu.png 75w, https://linuxundich.de/wp-content/uploads/2009/12/ubuntu-48x48.png 48w" sizes="auto, (max-width: 75px) 100vw, 75px"></p>
<h2>Ubuntu</h2>
<p><a href="http://wiki.ubuntuusers.de/IRC#Channel" target="_blank" rel="noopener">Übersicht</a></p>
<p>#ubuntu: <a href="http://webchat.freenode.net/?channels=ubuntu" target="_blank" rel="noopener">webchat</a> &#8211; <a href="irc://irc.freenode.net/ubuntu" target="_blank" rel="noopener">irc</a><br>
#ubuntu-de: <a href="http://webchat.freenode.net/?channels=ubuntu-de" target="_blank" rel="noopener">webchat</a> &#8211; <a href="irc://irc.freenode.net/ubuntu-de" target="_blank" rel="noopener">irc</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://linuxundich.de/gnu-linux/linux-hilfe-per-irc-und-webchat/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
	</channel>
</rss>
