4129 links
740 private links
  • Doo's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Jouer les vidéos
Links per page: 20 50 100
20 results tagged fedora x
  • thumbnail
    Tray Icons: Reloaded - GNOME Shell Extensions

    On the latest fedora release which brings gnome 48, appindicator.js is kind of broken using the previous extensions pattern. This one fixes it. Found on https://bbs.archlinux.org/viewtopic.php?id=304357 where people are still debugging stuff for the community ahead of mainstream releases

    April 16, 2025 07:04:32 AM GMT+02:00 * - permalink -
    QRCode
    - https://extensions.gnome.org/extension/2890/tray-icons-reloaded/
    gnome fedora
  • FYI: Be sure to do this BEFORE you update to Fedora 40/Gnome 46 next week. : r/Fedora

    good to know!

    April 20, 2024 09:32:33 AM GMT+02:00 * - permalink -
    QRCode
    - https://www.reddit.com/r/Fedora/comments/1c7u3mg/fyi_be_sure_to_do_this_before_you_update_to/
    fedora gnome
  • thumbnail
    How to Enable Fractional Scaling on Fedora Linux - OMG! Linux

    chiant à retrouver à chaque fois pour activer le fractional scaling

    November 16, 2023 05:54:43 PM GMT+01:00 * - permalink -
    QRCode
    - https://www.omglinux.com/how-to-enable-fractional-scaling-fedora/
    fedora fractional scaling
  • thumbnail
    Solved: dropbox hangs on "starting..." in Manjaro and in F... - Dropbox Community

    I got some help from support. The key piece was to run "chattr -R -i ~/Dropbox" which revealed the problem files. I had created symbolic links from my dotfile settings in .config, .themes, and .local and placed the actual files in dropbox folders so that some of my settings would get backed up to dropbox. One of the applications put unchangeable files in dropbox and that is what caused the problems. Since I reinstalled fresh, once I was able to find the problem files via chattr and move them out of Dropbox, syncing resumed and is now fixed.

    does the trick

    TL;DR

    chattr -R -i ~/Dropbox 2> /dev/stdout|rg -io '/home/CHANGEME/Dropbox.*'
    August 7, 2023 08:27:41 PM GMT+02:00 * - permalink -
    QRCode
    - https://www.dropboxforum.com/t5/Apps-and-Installations/dropbox-hangs-on-quot-starting-quot-in-Manjaro-and-in-Fedora-38/td-p/695243
    dropbox fedora
  • Utilisation de DNF : Les modules - Wiki - Wiki

    via Arnaud
    dnf permet d'utiliser des modules, si la distribution le supporte. C'est le cas de Fedora et des dérivées de RHEL depuis la version 8.
    L'intérêt du module réside dans le fait de pouvoir monter en version un composant de la distribution si on le souhaite.

    L'administrateur est donc maître de la gestion des versions, qui peut, dans le cas d'une mise à jour d'un langage de programmation, entraîner des problèmes (fonction dépréciées notamment), et donc nécessiter d'adapter le code de l'application concernée.

    March 6, 2023 04:54:48 PM GMT+01:00 * - permalink -
    QRCode
    - https://www.linuxtricks.fr/wiki/utilisation-de-dnf-les-modules
    linux fedora dnf module version management
  • Sound breaking really bad after update but video i... - VMware Technology Network VMTN
    May 21, 2021 01:10:20 PM GMT+02:00 * - permalink -
    QRCode
    - https://communities.vmware.com/t5/VMware-Workstation-Pro/Sound-breaking-really-bad-after-update-but-video-is-better/td-p/2286052
    fedora vmware
  • (1) Fedora 34 VMware Workstation VM Upgraded from Fedora 33 has Audio Crackling Problem : Fedora
    May 21, 2021 01:10:15 PM GMT+02:00 * - permalink -
    QRCode
    - https://www.reddit.com/r/Fedora/comments/n3jsl8/fedora_34_vmware_workstation_vm_upgraded_from/
    fedora vmware
  • thumbnail
    Fedora 34 VMware Workstation VM Upgraded from Fedora 33 has Audio Crackling - Super User
    May 21, 2021 01:10:04 PM GMT+02:00 * - permalink -
    QRCode
    - https://superuser.com/questions/1646216/fedora-34-vmware-workstation-vm-upgraded-from-fedora-33-has-audio-crackling
    fedora vmware
  • thumbnail
    firewalld VS docker - Guillaume Kulakowski's blog

    Avec l’arrivée de Fedora 32, il y a eu des changements sur Firewalld. En effet, ce dernier passe maintenant par nftables. Le problème, comme évoqué dans le change, c’est qu’il y a des soucis avec Docker. Depuis ma migration sous Fedora 32, plus moyen de builder des containers car je n’arrive pas à atteindre les […]

    May 8, 2020 11:49:56 AM GMT+02:00 * - permalink -
    QRCode
    - https://blog.kulakowski.fr/post/firewalld-vs-docker
    docker fedora
  • Red Hat Developers Eyeing CPU Thermal Management Improvements For Fedora 32 - Phoronix

    Pour le moment, ce que j'en vois, c'est que mon ventilateur est + actif

    March 15, 2020 11:25:48 AM GMT+01:00 * - permalink -
    QRCode
    - https://www.phoronix.com/scan.php?page=news_item&px=Fedora-32-Possible-Thermal-Win
    fedora linux cpu cooling
  • After Upgrade to F26: Always asked for root password on login (additionally) - Page 2

    solved ffs

    November 9, 2018 12:19:04 PM GMT+01:00 * - permalink -
    QRCode
    - https://forums.fedoraforum.org/showthread.php?314785-After-Upgrade-to-F26-Always-asked-for-root-password-on-login-(additionally)/page2
    fedora
  • Note: Use DNS via TCP on Fedora

    Since Fedora uses NetworkManager to handle its resolv.conf and not resolvconf like debian would've, it's a bit more shady but this does the trick:

    [root@groar etc] # cat /etc/resolv.conf 
    # Generated by NetworkManager
    search mycustomdomain.com
    nameserver myinternalDNSIPaddres
    nameserver 8.8.8.8
    nameserver 9.9.9.9
    options use-vc
    [root@groar etc] # tail -4  /etc/sysconfig/network-scripts/network-functions
    grep -iq "options use-vc" /etc/resolv.conf
    if [ $? -ne 0 ]; then
        echo "options use-vc" >> /etc/resolv.conf
    fi
    
    July 24, 2018 03:29:31 PM GMT+02:00 * - permalink -
    QRCode
    - https://dooby.fr/shaare/todY0A
    dns tcp fedora resolver bind9
  • Bug 1498207 – DNF crash during upgrade installation F26 -> F27
    November 16, 2017 10:35:20 AM GMT+01:00 * - permalink -
    QRCode
    - https://bugzilla.redhat.com/show_bug.cgi?id=1498207
    fedora bug
  • Bug 1498875 – dnf system-upgrade reboot reboots twice without upgrading
    November 16, 2017 10:35:11 AM GMT+01:00 * - permalink -
    QRCode
    - https://bugzilla.redhat.com/show_bug.cgi?id=1498875
    fedora bug
  • Can't upgrade to Fedora 27 via dnf system-upgrade - devel - Fedora Mailing-Lists
    November 16, 2017 10:35:05 AM GMT+01:00 * - permalink -
    QRCode
    - https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/FZOLO7KLNZ5QK54KEZKRFMPFIGR2N6QG/
    fedora bug
  • Linux Google-Earth RPM packaging bug - Report 2 - Forums des produits Google

    pour faire fonctionner google earth sous fedora 24

    August 20, 2016 05:40:11 PM GMT+02:00 * - permalink -
    QRCode
    - https://productforums.google.com/forum/#!searchin/maps/redhat$20lsb%7Csort:relevance/maps/w0OhjL4G7gI
    google earth fedora
  • 11 Things to do After Installing Fedora 22 | Linux.com

    Je mets cet article là pour le retrouver :p

    January 11, 2016 01:59:37 PM GMT+01:00 * - permalink -
    QRCode
    - https://www.linux.com/learn/tutorials/833026-things-to-do-after-installing-fedora-22
    fedora
  • Spotify client | negativo17

    Je mets ça là parce que j'arrête pas de perdre ce lien.

    November 12, 2015 10:51:38 AM GMT+01:00 * - permalink -
    QRCode
    - http://negativo17.org/spotify-client/
    fedora spotify
  • Fedy – Un ensemble de scripts de post-installation pour Fedora – La vache libre

    J'avais cet article en cache pour ma prochaine installation de fedobear

    January 13, 2015 10:55:39 AM GMT+01:00 * - permalink -
    QRCode
    - http://la-vache-libre.org/fedy-un-ensemble-scripts-de-post-installation-pour-fedora/
    fedora scripts
  • thumbnail
    Installer Spotify sous Fedora 32 bits et 64 bits » AdminCloud.net

    je garde ça de côté, je sais que je vais en avoir besoin pcq l'interface ouaib va vite me gaver :p

    February 12, 2014 10:03:20 AM GMT+01:00 - permalink -
    QRCode
    - http://admincloud.net/112/installer-spotify-sous-fedora-32-bits-et-64-bits/
    spotify fedora
Links per page: 20 50 100
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation