1172 links
  • odea's Shaarli
  • Home
  • Login
  • RSS Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 5 / 59
Newer►
  • Terminal Calendar with khal
    Tue Apr 20 17:12:30 2021 - permalink -
    - - https://www.dj-bauer.de/terminal-calendar-with-khal-en.html
    tech
  • Liste des fichiers à avoir sur son site - Le Hollandais Volant
    Thu Apr 8 11:13:52 2021 - permalink -
    - - https://lehollandaisvolant.net/?d=2018/12/10/17/56/29-liste-des-fichiers-a-avoir-sur-son-site
    tech
  • swap
    What is swappiness and how do I change it?

        The swappiness parameter controls the tendency of the kernel to move processes out of physical memory and onto the swap disk. Because disks are much slower than RAM, this can lead to slower response times for system and applications if processes are too aggressively moved out of memory.

            swappiness can have a value of between 0 and 100

            swappiness=0 tells the kernel to avoid swapping processes out of physical memory for as long as possible. For Kernel version 3.5 and newer it disables swapiness.

            swappiness=100 tells the kernel to aggressively swap processes out of physical memory and move them to swap cache

        The default setting in Ubuntu is swappiness=60. Reducing the default value of swappiness will probably improve overall performance for a typical Ubuntu desktop installation. A value of swappiness=10 is recommended, but feel free to experiment. Note: Ubuntu server installations have different performance requirements to desktop systems, and the default value of 60 is likely more suitable.

        To check the swappiness value

        cat /proc/sys/vm/swappiness

        To change the swappiness value A temporary change (lost on reboot) with a swappiness value of 10 can be made with

        sudo sysctl vm.swappiness=10

        To make a change permanent, edit the configuration file with your favorite editor:

        gksudo gedit /etc/sysctl.conf

        Search for vm.swappiness and change its value as desired. If vm.swappiness does not exist, add it to the end of the file like so:

        vm.swappiness=10

        Save the file and reboot.
    Fri Mar 12 21:58:17 2021 - permalink -
    - - https://odea.fr/?Yommuw
    tech
  • 68747470733a2f2f6769746c61622e636f6d2f647774312f646f7466696c65732f7261772f6d61737465722f2e73637265656e73686f74732f646f7466696c657330362e706e67 (1920×1080)
    xmonad
    qtile
    Thu Oct 15 10:57:12 2020 - permalink -
    - - https://camo.githubusercontent.com/baa7aec8232ea7253923108c3046ca5513c6d79b/68747470733a2f2f6769746c61622e636f6d2f647774312f646f7466696c65732f7261772f6d61737465722f2e73637265656e73686f74732f646f7466696c657330362e706e67
    tech
  • tv7J2o4ZiSmLYwyBslBs_PLzKyzI8QUV5qdvHGfoAQn9r7pY4Hj5SmW27m3zUWeDtRSE8Cb5_5PQmkbavDfw7XbIL8EodIKZhilRdg=w1064-v0 (1064×962)
    material design
    Thu Sep 17 15:24:35 2020 - permalink -
    - - https://lh3.googleusercontent.com/tv7J2o4ZiSmLYwyBslBs_PLzKyzI8QUV5qdvHGfoAQn9r7pY4Hj5SmW27m3zUWeDtRSE8Cb5_5PQmkbavDfw7XbIL8EodIKZhilRdg=w1064-v0
  • BashPitfalls - Greg's Wiki
    bash
    Tue Sep 8 14:35:34 2020 - permalink -
    - - https://mywiki.wooledge.org/BashPitfalls
    tech
  • Disable and remove ClamAV | Howtoforge - Linux Howtos and Tutorials
    edit /etc/amavis/conf.d/50-user

    Comment out the following two lines:

    Code:

    @bypass_virus_checks_maps = (
       \%bypass_virus_checks, \@bypass_virus_checks_acl, \$bypass_virus_checks_re);

    Looks like this:

    Code:

    #@bypass_virus_checks_maps = (
    #   \%bypass_virus_checks, \@bypass_virus_checks_acl, \$bypass_virus_checks_re);

    @bypass_spam_checks_maps = (
       \%bypass_spam_checks, \@bypass_spam_checks_acl, \$bypass_spam_checks_re);

    Restart amavis:

    /etc/init.d/amavis restart

    Stop clamav:

    /etc/init.d/clamav-daemon stop
    /etc/init.d/clamav-freshclam stop

    Disable clamav from running on system boot:

    update-rc.d -f clamav-daemon remove
    update-rc.d -f clamav-freshclam remove
    Fri Jul 3 22:09:50 2020 - permalink -
    - - https://www.howtoforge.com/community/threads/disable-and-remove-clamav.44443/
    tech
  • Note: move ispconfig
    prepare the new server, make a new installation of the very same version of ISPConfig you have on the origin server;
        make sure you have the same php packages installed on the new server. You can generate a list on the origin server with
        dpkg --get-selections | grep ^php | awk '{print $1}' | xargs
        and paste the output to apt install on the destination;
        make a backup of the ispconfig database on origin. If you want you can change the IP (and eventually the hostname) with sed:
        sed -i 's/1\.2\.3\.4/5\.6\.7\.8/g' db-dbispconfig-2019-05-25.sql
        sed -i 's/old\.host\.name/new\.host\.name/g' db-dbispconfig-2019-05-25.sql
        And restore it on the destination with:
        cat db-dbispconfig-2019-05-25.sql | mysql -u root -p dbispconfig
        connect to the new server ispconfig panel and go to Tools > Resync, check the All services checkbox and press Start;
        rsync /var/www with:
        rsync -a --stats --progress --delete ORIGIN_SERVER:/var/www/* /var/www/
        rsync /var/vmail by adjusting the command above
        rsync /etc/letsencrypt
        rsync -a --stats --progress --delete ORIGIN_SERVER:/etc/letsencrypt/* /etc/letsencrypt/
        make a dump of all c* databases and restore them on the new server;
        if you want to retain the same ISPConfig panel certs copy /usr/local/ispconfig/interface/ssl/;
        move DNS and all related stuff to the new IP.
    Tue Jun 30 21:35:20 2020 - permalink -
    - - https://odea.fr/?t5G_xA
    tech
  • Mail-in-a-Box
    Wed Jun 17 23:05:04 2020 - permalink -
    - - https://mailinabox.email/
    tech
  • Tutorial - ISP Mail Tutorial (Caramel Edition)
    Wed Jun 17 23:04:47 2020 - permalink -
    - - https://123qwe.com/tutorial-debian-10/
    tech
  • Recherche par rebond - Recherche
    Sun Apr 12 11:44:08 2020 - permalink -
    - - https://bibliotheques.paris.fr/numerique/search.aspx?SC=ebook&QUERY=+Selections_exact:(%2226|_|Livre+audio+num%c3%a9rique%22)&QUERY_LABEL=Recherche%20par%20rebond&SEARCH_CONTEXT=4#/Search/(query:(FacetFilter:%7B%7D,ForceSearch:!f,Page:3,PageRange:3,QueryGuid:f30727ef-57f9-4688-a9bb-0ba94aa1c44f,QueryString:'Selections_exact:(%2226%7C_%7CLivre%20audio%20num%C3%A9rique%22)',ResultSize:20,ScenarioCode:ebook,ScenarioDisplayMode:display-standard,SearchContext:4,SearchLabel:'Recherche%20par%20rebond',SearchTerms:'Selections_exact%2026%20_%20Livre%20audio%20num%C3%A9rique',SortField:!n,SortOrder:0,TemplateParams:(Scenario:'',Scope:numerique,Size:!n,Source:'',Support:''),UseSpellChecking:!n))
  • Mondkopf - My year end’s list 2019
    Tue Apr 7 17:36:32 2020 - permalink -
    - - https://mondkopf.tumblr.com/post/189979976819/my-year-ends-list-2019
    music
  • Mondkopf - End year list 2018
    Tue Apr 7 17:35:45 2020 - permalink -
    - - https://mondkopf.tumblr.com/post/181246171614/end-year-list-2018
    music
  • Mondkopf - Music list 2017
    Tue Apr 7 17:35:25 2020 - permalink -
    - - https://mondkopf.tumblr.com/post/169502887214/music-list-2017
    music
  • Biodiversity Heritage Library
    Tue Feb 4 19:41:00 2020 - permalink -
    - - https://www.biodiversitylibrary.org/
  • Create A Custom System Tray Indicator For Your Tasks On Linux
    Wed Nov 6 10:58:12 2019 - permalink -
    - - https://fosspost.org/tutorials/custom-system-tray-icon-indicator-linux
    tech
  • Gamme - Honda 60-70's
    Thu Apr 25 15:33:40 2019 - permalink -
    - - https://www.honda60-70s.net/Gamme/gamme.html#1970
    moto
  • The Live Thriller - Enquête criminelle à vivre au cœur de Paris
    escape game
    Thu Apr 18 17:50:44 2019 - permalink -
    - - https://www.thelivethriller.com/
  • Tinkercad | Create 3D digital designs with online CAD
    3d print edit
    Tue Apr 16 10:33:16 2019 - permalink -
    - - https://www.tinkercad.com/
    3d
  • Thingiverse - Digital Designs for Physical Objects
    3d print
    Tue Apr 16 10:32:34 2019 - permalink -
    - - https://www.thingiverse.com/
    3d
Links per page: 20 50 100
◄Older
page 5 / 59
Newer►
Shaarli - The personal, minimalist, super-fast, no-database delicious clone by the Shaarli community - Help/documentation