logo Debian Debian Debian-France Debian-Facile Debian-fr.org Forum-Debian.fr Debian ? Communautés logo inclusivité

Debian-facile

Bienvenue sur Debian-Facile, site d'aide pour les nouveaux utilisateurs de Debian.

Vous n'êtes pas identifié(e).


L'icône rouge permet de télécharger chaque page du wiki visitée au format PDF et la grise au format ODT → ODT PDF Export

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision Les deux révisions suivantes
utilisateurs:gonzoleri:config:accueil [12/06/2019 21:58]
gonzoleri [/etc/config.scm]
utilisateurs:gonzoleri:config:accueil [10/07/2019 21:34]
gonzoleri [/etc/config.scm]
Ligne 13: Ligne 13:
  
 <file scheme nom> <file scheme nom>
-    ​;; Operating system configuration for a full                               +  ​;; Operating system configuration for a full 
-    ;; "​desktop"​ environment with gnome and                                   ​ +;; "​desktop"​ environment with gnome and 
-    ;; gnome-shell ​                                                            +;; gnome-shell 
-     ​ + 
-    (use-modules (gnu) (gnu system nss))                                      ; Le fichier est en langage sheme. Après quelque temps +(use-modules (gnu) (gnu system nss)) 
-    (use-service-modules desktop networking ssh)                              ; d'​utilisation,​ sa pratique est plus aisée. ​ +(use-service-modules desktop networking ssh) 
-    (use-package-modules bootloaders certs gnome screen ssh)                  ; Module ​'bootloaders' ​indispensable pour Dual-boot+(use-package-modules bootloaders certs gnome screen ssh) 
-     ​ + 
-    (operating-system +;;(define updatedb-job 
-      (host-name "​gnu"​) +;;  ;; Run '​updatedb'​ at 20AM every day.  Here we write the 
-      (timezone "​Europe/​Paris"​) +;;  ;; job's action as a Scheme procedure. 
-      (locale "en_US.utf8"​) +;;  #~(job '​(next-hour '​(20)) 
-     ​ +;;         ​(lambda () 
-    ;; Assuming /dev/sda is the target hard disk, and "​my-root"​ is +;;           ​(execl (string-append #$findutils "/​bin/​updatedb"​) 
-    ;; the label of the target root file system, and /dev/sda6 the +;;                  "​updatedb"​ 
-    ;; target partition for the GuixSD installation. +;;                  "​--prunepaths=/​tmp /var/tmp /​gnu/​store"​)))) 
-    (bootloader (grub-configuration (target "/​dev/​sda"​) (menu-entries ​        ; Ajout de '​menu-entries'​ +  
-    ​  ​              (list                                              ; Déclaration de la liste d'​entrées +;;(define garbage-collector-job 
-     (menu-entry ​                                      ; Entrons dans le menu +;;  ;; Collect garbage 5 minutes after 17 o'clock every day. 
-    ​  ​       ​(label "​Debian GNU/​Linux"​) ​                       ​; Titre de la distribution +;;  ;; The job's action is a shell command. 
-                    ​(linux "/​boot/​vmlinuz-4.19.0-1-amd64"​) ​           ; Noyau à démarrer +;;  #~(job "5 17 * * *" ​           ;Vixie cron syntax 
-    ​  ​               ​(linux-arguments '​("​root=/​dev/​sda1"​)) ​            ; Debian se trouve sur /dev/sda1 +;;         "​guix gc -F 5G"​)) 
-    ​  ​               ​(initrd "/​boot/​initrd.img-4.19.0-1-amd64"​)))))) ​  ; C'est parti pour le démarrage ! +  
-     ​ +;;(define idutils-job 
-    (file-systems (cons (file-system +;;  ;; Update the index database as user "​hubert"​ at 12:15PM 
-                          (device (file-system-label "​my-root"​)) +;;  ;; and 19:15PM This runs from the user's home directory. 
-                          (mount-point "/"​) +;;  #~(job '​(next-minute-from (next-hour '(12 19)) '​(15)) 
-                          (type "​ext4"​)) +;;         ​(string-append #$idutils "/​bin/​mkid src"​) 
-    ​  ​            %base-file-systems)) +;;         #:​user "​hubert"​)) 
-     ​ + 
-    (swap-devices '​("/​dev/​sda5"​)) +(operating-system 
-     ​ +  (host-name "​gnu"​) 
-    (users (cons (user-account +  (timezone "​Europe/​Paris"​) 
-                  (name "xxxxxx") +  (locale "fr_FR.utf8"​) 
-                  (comment "​GuixSD user"​) + 
-                  (group "​users"​) +(keyboard-layout (keyboard-layout "​us"​ "​altgr-intl"​)) ​  
-                  (supplementary-groups '​("​wheel"​ "​netdev"​ +   
-                                          "​audio"​ "​video"​)) +;; Assuming /dev/sda is the target hard disk, and "​my-root"​ is 
-                  (home-directory "/​home/​xxxxxx")) +;; the label of the target root file system, and /dev/sda6 the 
-                 ​%base-user-accounts)) +;; target partition for the GuixSD installation. 
-     ​ +(bootloader (grub-configuration (target "/​dev/​sda"​) (menu-entries 
-    ;; This is where we specify +                       ​(list 
-    ;; system-wide packages. +                        (menu-entry 
-    (packages (cons* gvfs                 ;for users mounts +                        (label "​Debian GNU/​Linux"​) 
-                     ​nss-certs ​           ;for HTTPS access +                        ​(linux "/​boot/​vmlinuz-4.19.0-1-amd64"​) 
-                     ​screen +                        (linux-arguments '​("​root=/​dev/​sda1"​)) 
-                     ​openssh +                        (initrd "/​boot/​initrd.img-4.19.0-1-amd64"​)))))) 
-                    %base-packages)) +               
-                     +(file-systems (cons (file-system 
-    ;; Add GNOME and/or Xfce---we can choose at the log-in +                      (device (file-system-label "​my-root"​)) 
-    ;; screen with F1. +                      (mount-point "/"​) 
-    (services (cons* (service gnome-desktop-service-type) +                      (type "​ext4"​)) 
-                    %desktop-services)) +                     ​%base-file-systems)) 
-     ​ + 
-    ;; Allow resolution of '​.local'​ host names with mDNS. +(swap-devices '​("/​dev/​sda5"​)) 
-    (name-service-switch %mdns-host-lookup-nss))+ 
 +(users (cons (user-account 
 +              (name "hubert") 
 +              (comment "​GuixSD user"​) 
 +              (group "​users"​) 
 +              (supplementary-groups '​("​wheel"​ "​netdev"​ 
 +                                      "​audio"​ "​video"​)) 
 +              (home-directory "/​home/​hubert")) 
 +             ​%base-user-accounts)) 
 + 
 +;; This is where we specify 
 +;; system-wide packages. 
 +(packages (cons* gvfs                 ;for users mounts 
 +                 ​nss-certs ​           ;for HTTPS access 
 +                 ​screen 
 +                 ​openssh 
 +                %base-packages)) 
 +                 
 +;; Add GNOME and/or Xfce---we can choose at the log-in 
 +;; screen with F1. 
 +(services (cons* (service gnome-desktop-service-type) 
 +                %desktop-services)) 
 + 
 +;; Allow resolution of '​.local'​ host names with mDNS. 
 +(name-service-switch %mdns-host-lookup-nss)) ​                
 + 
 +       
 +                ​
 </​file>​ </​file>​
  
utilisateurs/gonzoleri/config/accueil.txt · Dernière modification: 28/02/2024 19:50 par gonzoleri

Pied de page des forums

Propulsé par FluxBB