<?xml version="1.0" encoding="UTF-8" ?>
<!-- RSS generated by PHPBoost on Sun, 05 Apr 2026 23:58:36 +0200 -->
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[master]]></title>
		<atom:link href="https://sneckx.ddns.net/syndication/?url=/rss/articles/" rel="self" type="application/rss+xml"/>
		<link>https://sneckx.ddns.net</link>
		<description><![CDATA[Bienvenue dans l'espace des articles du site !]]></description>
		<copyright>(C) 2005-2026 PHPBoost</copyright>
		<language>fr</language>
		<generator>PHPBoost</generator>
		
            <item>
                <title><![CDATA[Passer un périphérique usb à une machine virtuelle proxmox USB PASSTHROUGH]]></title>
                <link>https://sneckx.ddns.net/articles/?url=/9-proxmox/11-passer-un-peripherique-usb-a-une-machine-virtuelle-proxmox-usb-passthrough/</link>
                <guid>https://sneckx.ddns.net/articles/?url=/9-proxmox/11-passer-un-peripherique-usb-a-une-machine-virtuelle-proxmox-usb-passthrough/</guid>
                <description><![CDATA[Code bash servant à passer une carte son usb c-media à une machine virtuelle proxmox<br />
<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">&nbsp;
<span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #007800;">configFile</span>=<span style="color: #ff0000;">"/etc/pve/qemu-server/100.conf"</span>;
<span style="color: #007800;">usbString</span>=<span style="color: #ff0000;">"usb0: host"</span>;
<span style="color: #007800;">usbName</span>=<span style="color: #ff0000;">"c-media"</span>;
<span style="color: #007800;">id</span>=$<span style="color: #7a0874; font-weight: bold;">&#40;</span>lsusb <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #660033;">-i</span> <span style="color: #ff0000;">"<span style="color: #007800;">$usbName</span>"</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">cut</span> <span style="color: #660033;">-d</span> <span style="color: #ff0000;">":"</span> <span style="color: #660033;">-f</span> <span style="color: #000000;">2</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">cut</span> <span style="color: #660033;">-d</span> <span style="color: #ff0000;">" "</span> <span style="color: #660033;">-f</span> <span style="color: #000000;">3</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>;
<span style="color: #007800;">usbDev</span>=$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #007800;">$id</span> <span style="color: #000000; font-weight: bold;">/</span>sys<span style="color: #000000; font-weight: bold;">/</span>bus<span style="color: #000000; font-weight: bold;">/</span>usb<span style="color: #000000; font-weight: bold;">/</span>devices<span style="color: #000000; font-weight: bold;">/*/</span>idVendor <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">cut</span> <span style="color: #660033;">-d</span> <span style="color: #ff0000;">"/"</span> <span style="color: #660033;">-f</span> <span style="color: #000000;">6</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>;
<span style="color: #666666; font-style: italic;"># Suppression de la configuration actuelle de la carte son par defaut</span>
<span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-i</span> <span style="color: #000000; font-weight: bold;">/</span><span style="color: #ff0000;">"<span style="color: #007800;">$usbString</span> *"</span><span style="color: #000000; font-weight: bold;">/</span>d <span style="color: #ff0000;">"<span style="color: #007800;">$configFile</span>"</span>;
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">"usb0: host=<span style="color: #007800;">$usbDev</span>"</span> <span style="color: #000000; font-weight: bold;">>></span> <span style="color: #ff0000;">"<span style="color: #007800;">$configFile</span>"</span>;
<span style="color: #7a0874; font-weight: bold;">exit</span>
&nbsp;</pre></pre></div></div>]]></description>
                <pubDate>Tue, 19 Sep 2023 11:03:00 +0200</pubDate>
                
            </item>
		
            <item>
                <title><![CDATA[Supprimer le message de souscription proxmox]]></title>
                <link>https://sneckx.ddns.net/articles/?url=/9-proxmox/10-supprimer-le-message-de-souscription-proxmox/</link>
                <guid>https://sneckx.ddns.net/articles/?url=/9-proxmox/10-supprimer-le-message-de-souscription-proxmox/</guid>
                <description><![CDATA[Créer un fichier deleteMessage.sh dans le dossier /root<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">&nbsp;
<span style="color: #c20cb9; font-weight: bold;">vi</span> <span style="color: #000000; font-weight: bold;">/</span>root<span style="color: #000000; font-weight: bold;">/</span>deleteMessage.sh
&nbsp;</pre></pre></div></div><br />
et y coller ces lignes<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">&nbsp;
<span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-v</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>javascript<span style="color: #000000; font-weight: bold;">/</span>proxmox-widget-toolkit<span style="color: #000000; font-weight: bold;">/</span>proxmoxlib.js.back;
<span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #660033;">-v</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>javascript<span style="color: #000000; font-weight: bold;">/</span>proxmox-widget-toolkit<span style="color: #000000; font-weight: bold;">/</span>proxmoxlib.js <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>javascript<span style="color: #000000; font-weight: bold;">/</span>proxmox-widget-toolkit<span style="color: #000000; font-weight: bold;">/</span>proxmoxlib.js.back;
<span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-i</span> <span style="color: #ff0000;">"s/data.status.toLowerCase() !== 'active')/data.status.toLowerCase() == 'active')/g"</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>javascript<span style="color: #000000; font-weight: bold;">/</span>proxmox-widget-toolkit<span style="color: #000000; font-weight: bold;">/</span>proxmoxlib.js;
<span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-i</span> <span style="color: #ff0000;">"s/res.data.status.toLowerCase() == 'active')/res.data.status.toLowerCase() !== 'active');/"</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>javascript<span style="color: #000000; font-weight: bold;">/</span>proxmox-widget-toolkit<span style="color: #000000; font-weight: bold;">/</span>proxmoxl<span style="color: #000000; font-weight: bold;">></span>
systemctl restart pveproxy.service;
<span style="color: #7a0874; font-weight: bold;">exit</span>
&nbsp;</pre></pre></div></div><br />
Rendre ce fichier exécutable<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">&nbsp;
<span style="color: #c20cb9; font-weight: bold;">chmod</span> +x <span style="color: #000000; font-weight: bold;">/</span>root<span style="color: #000000; font-weight: bold;">/</span>deleteMessage.sh
&nbsp;</pre></pre></div></div><br />
Editer le fichier crontab<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">&nbsp;
crontab <span style="color: #660033;">-e</span>
<span style="color: #000000; font-weight: bold;">@</span>reboot <span style="color: #000000; font-weight: bold;">/</span>root<span style="color: #000000; font-weight: bold;">/</span>.<span style="color: #000000; font-weight: bold;">/</span>deleteMessage.sh
&nbsp;</pre></pre></div></div>]]></description>
                <pubDate>Wed, 13 Sep 2023 12:14:00 +0200</pubDate>
                
            </item>
		
            <item>
                <title><![CDATA[Démarrage ou arrêt planifié d'une machine dans proxmox]]></title>
                <link>https://sneckx.ddns.net/articles/?url=/9-proxmox/9-demarrage-ou-arret-planifie-d-une-machine-dans-proxmox/</link>
                <guid>https://sneckx.ddns.net/articles/?url=/9-proxmox/9-demarrage-ou-arret-planifie-d-une-machine-dans-proxmox/</guid>
                <description><![CDATA[<ul class="formatter-ul">
    <li class="formatter-li">Lister les vm<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">qm list</pre></pre></div></div>

    </li><li class="formatter-li">Lister les containers<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">pct list</pre></pre></div></div>

    </li><li class="formatter-li">Démarrer la vm 100 5 secondes après le démarrage du pc<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">crontab <span style="color: #660033;">-e</span>
<span style="color: #000000; font-weight: bold;">@</span>reboot $<span style="color: #7a0874; font-weight: bold;">&#40;</span> <span style="color: #c20cb9; font-weight: bold;">sleep</span> <span style="color: #000000;">5</span>; <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>qm start <span style="color: #000000;">100</span> <span style="color: #7a0874; font-weight: bold;">&#41;</span>;
&nbsp;</pre></pre></div></div>

</li><li class="formatter-li">Arrêter la vm 101 chaque jour à 18h00<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">crontab <span style="color: #660033;">-e</span>
00 <span style="color: #000000;">18</span> <span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>qm stop <span style="color: #000000;">101</span>;
&nbsp;</pre></pre></div></div><br />
</li></ul>]]></description>
                <pubDate>Wed, 13 Sep 2023 11:59:00 +0200</pubDate>
                
            </item>
		
            <item>
                <title><![CDATA[Installer proxmox sur un pc portable]]></title>
                <link>https://sneckx.ddns.net/articles/?url=/9-proxmox/8-installer-proxmox-sur-un-pc-portable/</link>
                <guid>https://sneckx.ddns.net/articles/?url=/9-proxmox/8-installer-proxmox-sur-un-pc-portable/</guid>
                <description><![CDATA[Après avoir installer proxmox sur le pc, il faut<br />
<br />
<ul class="formatter-ul">
    <li class="formatter-li">Empècher que l'ordinateur entre en veille quand on referme l'écran, pour cela, il suffit de décomenter et modifier ces lignes dans le fichier /etc/systemd/logind.conf.<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">vi</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>systemd<span style="color: #000000; font-weight: bold;">/</span>logind.conf
&nbsp;
<span style="color: #007800;">HandleLidSwitch</span>=ignore
<span style="color: #007800;">HandleLidSwitchExternalPower</span>=ignore
<span style="color: #007800;">HandleLidSwitchDocked</span>=ignore
systemctl restart systemd-logind.service
&nbsp;</pre></pre></div></div>

    </li><li class="formatter-li">Eteindre l'écran après une minute, ici, il faut modifier une ligne dans le fichier /etc/default/grub<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">vi</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>default<span style="color: #000000; font-weight: bold;">/</span>grub
<span style="color: #007800;">GRUB_CMDLINE_LINUX</span>=<span style="color: #ff0000;">"consoleblank=60"</span>
update-grub
&nbsp;</pre></pre></div></div><br />
</li></ul>]]></description>
                <pubDate>Wed, 13 Sep 2023 11:29:00 +0200</pubDate>
                
            </item>
		
            <item>
                <title><![CDATA[Almalinux, Fedora impossible de mettre à jour virtualbox ]]></title>
                <link>https://sneckx.ddns.net/articles/?url=/8-virtualbox/7-almalinux-fedora-impossible-de-mettre-a-jour-virtualbox/</link>
                <guid>https://sneckx.ddns.net/articles/?url=/8-virtualbox/7-almalinux-fedora-impossible-de-mettre-a-jour-virtualbox/</guid>
                <description><![CDATA[Si le système affiche un message disant qu'il est impossible de télécharger les metadatas et que virtualbox ne se met pas à jour, alors il faut mettre à jour le fichier /etc/yum.repos.d/virtualbox.repo<br />
<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #660033;">-v</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>yum.repos.d<span style="color: #000000; font-weight: bold;">/</span>virtualbox.repo <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>yum.repos.d<span style="color: #000000; font-weight: bold;">/</span>virtualbox.repo.old</pre></pre></div></div><br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">wget</span> https:<span style="color: #000000; font-weight: bold;">//</span>download.virtualbox.org<span style="color: #000000; font-weight: bold;">/</span>virtualbox<span style="color: #000000; font-weight: bold;">/</span>rpm<span style="color: #000000; font-weight: bold;">/</span>fedora<span style="color: #000000; font-weight: bold;">/</span>virtualbox.repo <span style="color: #660033;">-O</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>yum.repos.d<span style="color: #000000; font-weight: bold;">/</span>virtualbox.repo</pre></pre></div></div><br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> dnf upgrade</pre></pre></div></div>]]></description>
                <pubDate>Tue, 23 May 2023 00:37:00 +0200</pubDate>
                
            </item>
		
            <item>
                <title><![CDATA[Réaffecter une touche du clavier]]></title>
                <link>https://sneckx.ddns.net/articles/?url=/7-ligne-de-commande/6-reaffecter-une-touche-du-clavier/</link>
                <guid>https://sneckx.ddns.net/articles/?url=/7-ligne-de-commande/6-reaffecter-une-touche-du-clavier/</guid>
                <description><![CDATA[Pour réaffecter une touche du clavier (changer son comportement), exemple faire en sorte que la touche "verr.maj" agisse comme si c'était la touche "échap" il faut entrer la commande suivante: <div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">setxkbmap <span style="color: #660033;">-layout</span> be <span style="color: #660033;">-option</span> caps:swapescape</pre></pre></div></div><br />
Pour annuler la modification, il faut saisir cette commande:<br />
[code=bash][/code]<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">setxkbmap <span style="color: #660033;">-layout</span> be <span style="color: #660033;">-option</span></pre></pre></div></div>]]></description>
                <pubDate>Fri, 19 May 2023 11:12:00 +0200</pubDate>
                
            </item>
		
            <item>
                <title><![CDATA[Installer un lecteur de carte d'identité]]></title>
                <link>https://sneckx.ddns.net/articles/?url=/6-desktop/5-installer-un-lecteur-de-carte-d-identite/</link>
                <guid>https://sneckx.ddns.net/articles/?url=/6-desktop/5-installer-un-lecteur-de-carte-d-identite/</guid>
                <description><![CDATA[Cet article décrit une marche à suivre et les commandes utilisées pour installer un lecteur de carte d'identité sur un système Archlinux.<br />
<table class="formatter-table">
    <tr class="formatter-table-row">
        <td class="formatter-table-col">Base Arch</td>
    </tr>
    <tr class="formatter-table-row">
        <td class="formatter-table-col"><ul class="formatter-ul">
                        <li class="formatter-li"> Activer aur.
                        </li><li class="formatter-li"> Mettre le système à jour. <div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">yay</pre></pre></div></div>
                        </li><li class="formatter-li"> Installer ccid, pcsc-tools, eid-mw cardpeek. <div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">yay <span style="color: #660033;">-S</span> ccid pcsc-tools eid-mw cardpeek</pre></pre></div></div>
                        </li><li class="formatter-li"> Démarrer pcscd. <div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> systemctl start pcscd</pre></pre></div></div>
                        </li><li class="formatter-li"> Mettre la carte dans le lecteur puis executer pcsc_scan à interrompre à la main (ctrl+c).<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">pcsc_scan</pre></pre></div></div>
                       </li><li class="formatter-li"> Exécuter eid-viewer pour avoir accès à la carte.
                       </li><li class="formatter-li"> Installer le module eID Belgique par BOSA sur Firefox.
                       </li><li class="formatter-li"> Tester la connection avec l'outil disponible sur cette <a href="https://eid.belgium.be/fr">page</a>.
                       </li><li class="formatter-li"> Automatiser le demarrage de pcscd. <div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> systemctl <span style="color: #7a0874; font-weight: bold;">enable</span> <span style="color: #660033;">--now</span> pcscd</pre></pre></div></div>
                       </li><li class="formatter-li"> Si le point précédent ne fonctionne pas, on peut ajouter une instruction <strong>dans le cron de l'utilisateur root</strong>. <div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">@</span>reboot $<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">sleep</span> <span style="color: #000000;">40</span>; systemctl start pcscd;<span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></pre></div></div><br />
                </li></ul></td>
    </tr>
</table>]]></description>
                <pubDate>Sat, 25 Mar 2023 11:44:00 +0100</pubDate>
                
            </item>
		
            <item>
                <title><![CDATA[Installer  RPM Fusion]]></title>
                <link>https://sneckx.ddns.net/articles/?url=/5-multimedia/4-installer-rpm-fusion/</link>
                <guid>https://sneckx.ddns.net/articles/?url=/5-multimedia/4-installer-rpm-fusion/</guid>
                <description><![CDATA[Marche à suivre pour installer le dépôt RPM Fusion.<br />
<br />
<br />
<span style="text-decoration: underline;">Fedora via dnf</span><br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> dnf <span style="color: #c20cb9; font-weight: bold;">install</span> https:<span style="color: #000000; font-weight: bold;">//</span>mirrors.rpmfusion.org<span style="color: #000000; font-weight: bold;">/</span>free<span style="color: #000000; font-weight: bold;">/</span>fedora<span style="color: #000000; font-weight: bold;">/</span>rpmfusion-free-release-$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">rpm</span> <span style="color: #660033;">-E</span> <span style="color: #000000; font-weight: bold;">%</span>fedora<span style="color: #7a0874; font-weight: bold;">&#41;</span>.noarch.rpm https:<span style="color: #000000; font-weight: bold;">//</span>mirrors.rpmfusion.org<span style="color: #000000; font-weight: bold;">/</span>nonfree<span style="color: #000000; font-weight: bold;">/</span>fedora<span style="color: #000000; font-weight: bold;">/</span>rpmfusion-nonfree-release-$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">rpm</span> <span style="color: #660033;">-E</span> <span style="color: #000000; font-weight: bold;">%</span>fedora<span style="color: #7a0874; font-weight: bold;">&#41;</span>.noarch.rpm</pre></pre></div></div><br />
<br />
<span style="text-decoration: underline;">RHEL ou Centos like</span><br />
<ul class="formatter-ul">
    <li class="formatter-li"> Activation du dépôt epel-release:<br />
    <div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> dnf <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #660033;">--nogpgcheck</span> https:<span style="color: #000000; font-weight: bold;">//</span>dl.fedoraproject.org<span style="color: #000000; font-weight: bold;">/</span>pub<span style="color: #000000; font-weight: bold;">/</span>epel<span style="color: #000000; font-weight: bold;">/</span>epel-release-latest-$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">rpm</span> <span style="color: #660033;">-E</span> <span style="color: #000000; font-weight: bold;">%</span>rhel<span style="color: #7a0874; font-weight: bold;">&#41;</span>.noarch.rpm</pre></pre></div></div>
    </li><li class="formatter-li"> Activation du dépôt powertools:<br />
    <div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> config-manager <span style="color: #660033;">--enable</span> powertools</pre></pre></div></div>
    </li><li class="formatter-li"> Installation dépôt RPM Fusion:<br />
    <div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> dnf <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #660033;">--nogpgcheck</span> https:<span style="color: #000000; font-weight: bold;">//</span>mirrors.rpmfusion.org<span style="color: #000000; font-weight: bold;">/</span>free<span style="color: #000000; font-weight: bold;">/</span>el<span style="color: #000000; font-weight: bold;">/</span>rpmfusion-free-release-$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">rpm</span> <span style="color: #660033;">-E</span> <span style="color: #000000; font-weight: bold;">%</span>rhel<span style="color: #7a0874; font-weight: bold;">&#41;</span>.noarch.rpm https:<span style="color: #000000; font-weight: bold;">//</span>mirrors.rpmfusion.org<span style="color: #000000; font-weight: bold;">/</span>nonfree<span style="color: #000000; font-weight: bold;">/</span>el<span style="color: #000000; font-weight: bold;">/</span>rpmfusion-nonfree-release-$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">rpm</span> <span style="color: #660033;">-E</span> <span style="color: #000000; font-weight: bold;">%</span>rhel<span style="color: #7a0874; font-weight: bold;">&#41;</span>.noarch.rpm</pre></pre></div></div><br />
</li></ul>]]></description>
                <pubDate>Fri, 24 Mar 2023 21:15:00 +0100</pubDate>
                
            </item>
		
            <item>
                <title><![CDATA[Installer jellyfin]]></title>
                <link>https://sneckx.ddns.net/articles/?url=/3-serveur/3-installer-jellyfin/</link>
                <guid>https://sneckx.ddns.net/articles/?url=/3-serveur/3-installer-jellyfin/</guid>
                <description><![CDATA[Marche à suivre pour installer le serveur jellyfin<br />
<br />
<table class="formatter-table">
    <tr class="formatter-table-row">
        <td class="formatter-table-col">Base Arch</td>
    </tr>
    <tr class="formatter-table-row">
        <td class="formatter-table-col"><ul class="formatter-ul">
        <li class="formatter-li"><div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">yay <span style="color: #660033;">-S</span> jellyfin</pre></pre></div></div><br />
        </li></ul></td>
    </tr>
    <tr class="formatter-table-row">
        <td class="formatter-table-col">Base Debian</td>
    </tr>
    <tr class="formatter-table-row">
        <td class="formatter-table-col"><ul class="formatter-ul">
        <li class="formatter-li"><div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> apt <span style="color: #c20cb9; font-weight: bold;">install</span> curl gnupg</pre></pre></div></div>
            </li><li class="formatter-li"><div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">curl <span style="color: #660033;">-fsSL</span> https:<span style="color: #000000; font-weight: bold;">//</span>repo.jellyfin.org<span style="color: #000000; font-weight: bold;">/</span>ubuntu<span style="color: #000000; font-weight: bold;">/</span>jellyfin_team.gpg.key <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> gpg <span style="color: #660033;">--dearmor</span> <span style="color: #660033;">-o</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apt<span style="color: #000000; font-weight: bold;">/</span>trusted.gpg.d<span style="color: #000000; font-weight: bold;">/</span>jellyfin.gpg</pre></pre></div></div>
            </li><li class="formatter-li"><div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">"deb [arch=<span style="color: #007800;">$( dpkg --print-architecture )</span>] https://repo.jellyfin.org/<span style="color: #007800;">$( awk -F'=' '/^ID=/{ print $NF }' /etc/os-release )</span> <span style="color: #007800;">$( awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release )</span> main"</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">tee</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apt<span style="color: #000000; font-weight: bold;">/</span>sources.list.d<span style="color: #000000; font-weight: bold;">/</span>jellyfin.list</pre></pre></div></div>
            </li><li class="formatter-li"><div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> apt update</pre></pre></div></div>
            </li><li class="formatter-li"><div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> apt <span style="color: #c20cb9; font-weight: bold;">install</span> jellyfin</pre></pre></div></div><br />
        </li></ul></td>
    </tr>
    <tr class="formatter-table-row">
    <td class="formatter-table-col">Base RHEL</td>
    </tr>
    <tr class="formatter-table-row">
    <td class="formatter-table-col"><br />
        <span style="color:#F04343;"><strong>Il faut d'abbord activer <a href="https://sneckx.ddns.net/articles/?url=/5-multimedia/4-installer-rpm-fusion/"> rpm fusion</a></strong></span><br />
        <ul class="formatter-ul">
            <li class="formatter-li"><div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">  <span style="color: #c20cb9; font-weight: bold;">wget</span> https:<span style="color: #000000; font-weight: bold;">//</span>repo.jellyfin.org<span style="color: #000000; font-weight: bold;">/</span>releases<span style="color: #000000; font-weight: bold;">/</span>server<span style="color: #000000; font-weight: bold;">/</span>centos<span style="color: #000000; font-weight: bold;">/</span>stable<span style="color: #000000; font-weight: bold;">/</span>server<span style="color: #000000; font-weight: bold;">/</span>jellyfin-server-10.8.5-<span style="color: #000000;">1</span>.el7.x86_64.rpm  </pre></pre></div></div>
            </li><li class="formatter-li"><div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"> <span style="color: #c20cb9; font-weight: bold;">wget</span> https:<span style="color: #000000; font-weight: bold;">//</span>repo.jellyfin.org<span style="color: #000000; font-weight: bold;">/</span>releases<span style="color: #000000; font-weight: bold;">/</span>server<span style="color: #000000; font-weight: bold;">/</span>centos<span style="color: #000000; font-weight: bold;">/</span>stable<span style="color: #000000; font-weight: bold;">/</span>web<span style="color: #000000; font-weight: bold;">/</span>jellyfin-web-10.8.5-<span style="color: #000000;">1</span>.el7.noarch.rpm   </pre></pre></div></div>
            </li><li class="formatter-li"><div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">  <span style="color: #c20cb9; font-weight: bold;">sudo</span> dnf localinstall jellyfin-server-10.8.5-<span style="color: #000000;">1</span>.el7.x86_64.rpm  </pre></pre></div></div>
            </li><li class="formatter-li"><div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">  <span style="color: #c20cb9; font-weight: bold;">sudo</span> dnf localinstall jellyfin-web-10.8.5-<span style="color: #000000;">1</span>.el7.noarch.rpm  </pre></pre></div></div>
            </li><li class="formatter-li"><div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">  <span style="color: #c20cb9; font-weight: bold;">sudo</span> systemctl <span style="color: #7a0874; font-weight: bold;">enable</span> <span style="color: #660033;">--now</span> jellyfin  </pre></pre></div></div><br />
        </li></ul></td>
    </tr>
    <tr class="formatter-table-row">
        <td class="formatter-table-col"><br />
            Pour réinitialiser le mot de passe administrateur, il faut éditer le fichier <div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>jellyfin<span style="color: #000000; font-weight: bold;">/</span>system.xml</pre></pre></div></div><br />
            et modier cette ligne (n°4) comme suit:<br />
            <div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;"><</span>IsStartupWizardCompleted<span style="color: #000000; font-weight: bold;">></span><span style="color: #c20cb9; font-weight: bold;">true</span><span style="color: #000000; font-weight: bold;"></</span>IsStartupWizardCompleted<span style="color: #000000; font-weight: bold;">></span></pre></pre></div></div><br />
            en<br />
            <div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;"><</span>IsStartupWizardCompleted<span style="color: #000000; font-weight: bold;">></span><span style="color: #c20cb9; font-weight: bold;">false</span><span style="color: #000000; font-weight: bold;"></</span>IsStartupWizardCompleted<span style="color: #000000; font-weight: bold;">></span></pre></pre></div></div><br />
            Puis redémarrer le serveur.<br />
            <div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">  <span style="color: #c20cb9; font-weight: bold;">sudo</span> systemctl restart jellyfin  </pre></pre></div></div><br />
        </td>
    </tr>
</table>]]></description>
                <pubDate>Fri, 24 Mar 2023 18:55:00 +0100</pubDate>
                
            </item>
		
            <item>
                <title><![CDATA[Installer phpboost sur un virtual host]]></title>
                <link>https://sneckx.ddns.net/articles/?url=/3-serveur/2-installer-phpboost-sur-un-virtual-host/</link>
                <guid>https://sneckx.ddns.net/articles/?url=/3-serveur/2-installer-phpboost-sur-un-virtual-host/</guid>
                <description><![CDATA[Pour installer le CMS phpboost sur un vhost il faut exécuter l'installation par défaut qui proposera comme racine de site "/site".<br />
<br />
<img src="https://sneckx.ddns.net/upload/img1.jpg" alt="img1" title="img1" /><br />
<br />
Une fois l'installation terminée, éditer les paramètres du site pour que la racine du site soit vide en plus "/site".<br />
<br />
<img src="https://sneckx.ddns.net/upload/img2.jpg" alt="img2" title="img2" /><br />
<br />
Cette action se fait par la page d'administration du CMS]]></description>
                <pubDate>Fri, 24 Mar 2023 12:35:00 +0100</pubDate>
                
            </item>
		
	</channel>
</rss>
