La documentation n est pas a jour de plus elle a des fautes grossières
exemple
https://wiki.gnome.org/Projects/Tracker/Documentation/Configuration a écritGSettings / INI file
The settings are stored in data/gschema/* and have detail including acceptable values for each setting and a decent description of what each setting does. There is one schema per binary (usually):
$ cd data/gschemas
$ ls *.xml | sort | uniq
Voila donc ce que cela donne
a@a:~$ cd data/gschemas
bash: cd: data/gschemas: Aucun fichier ou dossier de ce type
a@a:~$
Mais plus grave, le paramétrage est imposé.
a@a:/$ sudo find . -name gschemas
[sudo] Mot de passe de a :
find: ‘./run/user/1000/doc’: Permission non accordée
find: ‘./run/user/1000/gvfs’: Permission non accordée
a@a:/$
a@a:/$
a@a:/$ gsettings list-recursively | grep -i org.freedesktop.Tracker | sort | uniq
org.freedesktop.Tracker.DB journal-chunk-size 50
org.freedesktop.Tracker.DB journal-rotate-destination ''
org.freedesktop.Tracker.Extract max-bytes 1048576
org.freedesktop.Tracker.Extract sched-idle 'first-index'
org.freedesktop.Tracker.Extract verbosity 'errors'
org.freedesktop.Tracker.Extract wait-for-miner-fs false
org.freedesktop.Tracker.FTS enable-stemmer false
org.freedesktop.Tracker.FTS enable-unaccent true
org.freedesktop.Tracker.FTS ignore-numbers true
org.freedesktop.Tracker.FTS ignore-stop-words true
org.freedesktop.Tracker.FTS max-word-length 30
org.freedesktop.Tracker.FTS max-words-to-index 10000
org.freedesktop.Tracker.Miner.Files crawling-interval -1
org.freedesktop.Tracker.Miner.Files enable-monitors true
org.freedesktop.Tracker.Miner.Files enable-writeback true
org.freedesktop.Tracker.Miner.Files ignored-directories ['po', 'CVS', 'core-dumps', 'lost+found']
org.freedesktop.Tracker.Miner.Files ignored-directories-with-content ['.trackerignore', '.git', '.hg', '.nomedia']
org.freedesktop.Tracker.Miner.Files ignored-files ['*~', '*.o', '*.la', '*.lo', '*.loT', '*.in', '*.csproj', '*.m4', '*.rej', '*.gmo', '*.orig', '*.pc', '*.omf', '*.aux', '*.tmp', '*.vmdk', '*.vm*', '*.nvram', '*.part', '*.rcore', '*.lzo', 'autom4te', 'conftest', 'confstat', 'Makefile', 'SCCS', 'ltmain.sh', 'libtool', 'config.status', 'confdefs.h', 'configure', '#*#', '~$*.doc?', '~$*.dot?', '~$*.xls?', '~$*.xlt?', '~$*.xlam', '~$*.ppt?', '~$*.pot?', '~$*.ppam', '~$*.ppsm', '~$*.ppsx', '~$*.vsd?', '~$*.vss?', '~$*.vst?', 'mimeapps.list', 'mimeinfo.cache', 'gnome-mimeapps.list', 'kde-mimeapps.list', '*.directory']
org.freedesktop.Tracker.Miner.Files index-on-battery-first-time true
org.freedesktop.Tracker.Miner.Files index-on-battery true
org.freedesktop.Tracker.Miner.Files index-optical-discs false
org.freedesktop.Tracker.Miner.Files index-recursive-directories ['&DESKTOP', '&DOCUMENTS', '&MUSIC', '&PICTURES', '&VIDEOS']
org.freedesktop.Tracker.Miner.Files index-removable-devices false
org.freedesktop.Tracker.Miner.Files index-single-directories ['$HOME', '&DOWNLOAD']
org.freedesktop.Tracker.Miner.Files initial-sleep 15
org.freedesktop.Tracker.Miner.Files low-disk-space-limit -1
org.freedesktop.Tracker.Miner.Files removable-days-threshold 3
org.freedesktop.Tracker.Miner.Files sched-idle 'first-index'
org.freedesktop.Tracker.Miner.Files throttle 0
org.freedesktop.Tracker.Miner.Files verbosity 'errors'
org.freedesktop.Tracker.Store graphupdated-delay 1000
org.freedesktop.Tracker.Store verbosity 'errors'
org.freedesktop.Tracker.Writeback verbosity 'errors'
a@a:/$
a@a:~$ man gsettings >Trace
a@a:~$ cat Trace
GSETTINGS(1) User Commands GSETTINGS(1)
NAME
gsettings - GSettings configuration tool
SYNOPSIS
gsettings get SCHEMA [:PATH] KEY
gsettings monitor SCHEMA [:PATH] [KEY]
gsettings writable SCHEMA [:PATH] KEY
gsettings range SCHEMA [:PATH] KEY
gsettings describe SCHEMA [:PATH] KEY
gsettings set SCHEMA [:PATH] KEY VALUE
gsettings reset SCHEMA [:PATH] KEY
gsettings reset-recursively SCHEMA [:PATH]
gsettings list-schemas [--print-paths]
gsettings list-relocatable-schemas
gsettings list-keys SCHEMA [:PATH]
gsettings list-children SCHEMA [:PATH]
gsettings list-recursively [SCHEMA [:PATH]]
gsettings help [COMMAND]
DESCRIPTION
gsettings offers a simple commandline interface to GSettings. It lets you get, set or monitor an individual key for changes.
The SCHEMA and KEY arguments are required for most commands to specify the schema id and the name of the key to operate on. The
schema id may optionally have a :PATH suffix. Specifying the path is only needed if the schema does not have a fixed path.
When setting a key, you also need specify a VALUE The format for the value is that of a serialized GVariant, so e.g. a string must
include explicit quotes: "'foo'". This format is also used when printing out values.
Note that gsettings needs a D-Bus session bus connection to write changes to the dconf database.
COMMANDS
get
Gets the value of KEY. The value is printed out as a serialised GVariant.
monitor
Monitors KEY for changes and prints the changed values. If no KEY is specified, all keys in the schema are monitored.
Monitoring will continue until the process is terminated.
writable
Finds out whether KEY is writable.
range
Queries the range of valid values for KEY.
describe
Queries the description of valid values for KEY.
set
Sets the value of KEY to VALUE. The value is specified as a serialised GVariant.
reset
Resets KEY to its default value.
reset-recursively
Reset all keys under the given SCHEMA.
list-schemas
Lists the installed, non-relocatable schemas. See list-relocatable-schemas if you are interested in relocatable schemas. If
[--print-paths] is given, the path where each schema is mapped is also printed.
list-relocatable-schemas
Lists the installed, relocatable schemas. See list-schemas if you are interested in non-relocatable schemas.
list-keys
Lists the keys in SCHEMA.
list-children
Lists the children of SCHEMA.
list-recursively
Lists keys and values, recursively. If no SCHEMA is given, list keys in all schemas.
help
Prints help and exits.
GIO GSETTINGS(1)
a@a:~$
a@a:~$ gsettings list-keys
Utilisation :
gsettings [--schemadir RÉPERTOIRE2SCHÉMA] list-keys SCHÉMA[:CHEMIN]
Lister les clés du SCHÉMA
Paramètres :
RÉPERTOIRE2SCHÉMA Un répertoire de recherche de schémas supplémentaires
SCHÉMA Le nom du schéma
CHEMIN Le chemin, pour les schémas réadressables
a@a:~$ gsettings list-schemas
org.gnome.rhythmbox.podcast
org.gnome.gedit.preferences.ui
org.gnome.evolution-data-server.calendar
org.gnome.rhythmbox.plugins.generic-player
org.gnome.settings-daemon.plugins.keyboard
org.gnome.desktop.a11y
org.gnome.settings-daemon.plugins.sharing
org.gnome.system.proxy.ftp
com.ubuntu.update-notifier
com.ubuntu.user-interface
org.gnome.settings-daemon.peripherals.keyboard
org.yorba.shotwell.sharing.org-gnome-shotwell-publishing-google-photos
org.gnome.rhythmbox.rhythmdb
org.gnome.rhythmbox.plugins.webremote
org.gnome.eog.fullscreen
org.gnome.settings-daemon.plugins.gsdwacom
org.gnome.rhythmbox.sources
org.gnome.power-manager
org.gnome.rhythmbox.plugins
org.gnome.settings-daemon.peripherals.touchscreen
org.gnome.gnome-screenshot
com.ubuntu.SoftwareProperties
org.gnome.rhythmbox.plugins.listenbrainz
org.gnome.system.proxy.socks
org.gnome.shell.keybindings
org.gnome.Mines
org.gnome.desktop.default-applications.office.calendar
org.gnome.desktop.input-sources
org.gnome.desktop.privacy
org.gnome.settings-daemon.plugins.print-notifications
org.gnome.gedit.plugins.pythonconsole
org.gnome.settings-daemon.plugins.smartcard
org.gnome.gedit.state
org.yorba.shotwell.preferences.ui
org.gnome.gedit.plugins.externaltools
org.gnome.gedit.preferences
org.yorba.shotwell.sharing.org-yorba-shotwell-publishing-piwigo
org.freedesktop.ibus.panel
org.gnome.settings-daemon.plugins.orientation
org.yorba.shotwell.sharing.youtube
org.gnome.system.smb
org.gnome.DejaDup.Rackspace
org.gnome.mutter.wayland
org.gnome.desktop.default-applications.office
org.gnome.baobab
org.gnome.Terminal.ProfilesList
com.ubuntu.sound
org.gnome.FileRoller.Dialogs.LastOutput
org.gnome.nm-applet
org.gnome.rhythmbox.plugins.grilo
org.gnome.rhythmbox.player
org.gnome.settings-daemon.plugins
org.gnome.settings-daemon.plugins.clipboard
org.gnome.nautilus
org.gnome.SimpleScan
org.gnome.rhythmbox
org.yorba.shotwell.preferences.window
org.gnome.gedit.plugins.filebrowser.nautilus
org.gnome.gnome-system-monitor.openfilestree
org.yorba.shotwell.preferences.slideshow
org.gnome.crypto.pgp
org.gnome.rhythmbox.plugins.audiocd
org.gnome.mutter.keybindings
org.gnome.settings-daemon.plugins.rfkill
org.gnome.desktop.wm.keybindings
org.gnome.settings-daemon.plugins.housekeeping
org.gnome.rhythmbox.library
org.yorba.shotwell.preferences.export
org.gnome.settings-daemon.plugins.a11y-keyboard
org.gnome.desktop.a11y.applications
org.gnome.seahorse.manager
org.gnome.shell.overrides
org.gnome.mutter.wayland.keybindings
org.freedesktop.ibus.general
org.gnome.settings-daemon.plugins.mouse
org.gnome.gedit.preferences.encodings
org.gnome.nautilus.icon-view
org.yorba.shotwell
org.gnome.calculator
org.gnome.Cheese
org.gnome.system.proxy
org.gnome.settings-daemon.plugins.media-keys
com.ubuntu.touch.network
org.gnome.desktop.peripherals.trackball
org.gnome.gnome-system-monitor
org.gnome.evolution-data-server
org.gnome.rhythmbox.plugins.iradio
org.gnome.gedit.preferences.print
org.gnome.settings-daemon.peripherals.input-devices
org.gnome.totem.plugins.opensubtitles
org.gnome.system.dns_sd
org.gnome.settings-daemon.plugins.sound
org.gnome.eog.view
org.gnome.desktop.lockdown
org.gnome.desktop.peripherals.touchpad
org.gnome.yelp
org.gnome.evolution.eds-shell
org.gnome.rhythmbox.plugins.alternative_toolbar
org.yorba.shotwell.preferences.editing
org.gnome.eog.ui
org.yorba.shotwell.sharing.facebook
org.gnome.mutter.x11
org.gnome.Sudoku
org.gnome.desktop.session
org.yorba.shotwell.video
org.gnome.rhythmbox.plugins.replaygain
org.gnome.libgnomekbd
org.gnome.ControlCenter
org.yorba.shotwell.preferences.files
org.gnome.todo.plugins.todo-txt
org.gnome.settings-daemon.plugins.background
org.gnome.settings-daemon.peripherals
org.gnome.desktop.app-folders
org.gnome.seahorse
org.gnome.gedit.plugins.filebrowser
org.gnome.system.proxy.http
org.gnome.todo.plugins.background
org.gnome.FileRoller.UI
org.gnome.FileRoller.Dialogs.Extract
org.gnome.desktop.notifications
org.freedesktop.ibus
org.gnome.DejaDup.OpenStack
org.freedesktop.Tracker.Writeback
org.gnome.online-accounts
org.gnome.settings-daemon.plugins.wwan
org.gnome.Evince.Default
org.gnome.libgnomekbd.indicator
org.gnome.FileRoller.FileSelector
org.gnome.eog
org.gnome.desktop.calendar
org.gnome.settings-daemon.plugins.power
org.yorba.shotwell.dataimports
com.ubuntu.touch.system
org.yorba.shotwell.sharing.org-yorba-shotwell-publishing-tumblr
org.gnome.baobab.preferences
org.gnome.settings-daemon.plugins.color
org.yorba.shotwell.plugins.enable-state
org.gtk.Settings.FileChooser
org.gnome.eog.plugins
org.gnome.gedit.state.window
org.gnome.desktop.media-handling
org.gnome.settings-daemon.plugins.datetime
org.gnome.shell.world-clocks
org.yorba.shotwell.printing
org.gnome.rhythmbox.plugins.android
org.gnome.Evince
org.gnome.Characters
org.yorba.shotwell.sharing
org.gnome.DejaDup.Google
org.gnome.evolution.shell.network-config
org.freedesktop.ColorHelper
org.gnome.FileRoller
org.gnome.gnome-system-monitor.proctree
org.gnome.shell.app-switcher
org.freedesktop.Tracker.Extract
org.gnome.calendar
org.gnome.gedit.plugins
org.gnome.baobab.ui
org.gnome.desktop.default-applications.office.tasks
org.gnome.libgnomekbd.keyboard
org.gnome.shell
org.gnome.system.proxy.https
org.gnome.desktop.search-providers
com.ubuntu.notifications.settings.applications
org.gnome.Disks
org.gnome.settings-daemon.plugins.xrandr
org.gnome.desktop.default-applications.terminal
org.gnome.nautilus.compression
org.gnome.desktop.a11y.magnifier
org.gnome.DejaDup.Local
org.gnome.DejaDup.GCS
org.gnome.desktop.wm.preferences
org.gnome.DejaDup.S3
org.gnome.gedit.preferences.editor
org.gnome.evolution-data-server.addressbook
org.gnome.shell.extensions.dash-to-dock
org.gnome.Logs
org.gnome.rhythmbox.plugins.lyrics
org.gnome.gnome-system-monitor.memmapstree
org.yorba.shotwell.preferences
org.gnome.crypto.cache
org.gnome.FileRoller.Dialogs
org.gnome.desktop.a11y.mouse
org.yorba.shotwell.plugins
org.gnome.Vino
com.ubuntu.user-interface.desktop
org.yorba.shotwell.sharing.publishing-gallery3
org.freedesktop.Tracker.DB
org.gnome.settings-daemon.plugins.xsettings
org.gnome.Mahjongg
com.ubuntu.update-manager
org.gnome.mousetweaks
com.ubuntu.phone
org.gnome.shell.window-switcher
org.gnome.desktop.background
org.gnome.DejaDup.Remote
org.gnome.desktop.interface
org.gnome.gedit.plugins.time
org.gnome.desktop.screensaver
org.gnome.desktop.default-applications
org.gnome.libgnomekbd.preview
org.gnome.SessionManager
org.gnome.desktop.peripherals.keyboard
org.gnome.nautilus.list-view
org.freedesktop.Tracker
org.gnome.DejaDup.GOA
org.gnome.gedit.state.history-entry
org.gnome.desktop.peripherals.mouse
org.gnome.todo
org.gnome.shell.weather
org.gnome.gedit.state.file-filter
org.gnome.nautilus.window-state
org.gnome.desktop.sound
com.canonical.Unity.Lenses
org.gnome.GWeather
org.gnome.shell.extensions.desktop-icons
org.gnome.gedit.plugins.spell
org.gnome.rhythmbox.plugins.ipod
org.freedesktop.Tracker.Store
org.gnome.FileRoller.Dialogs.Add
org.gnome.settings-daemon.plugins.screensaver-proxy
org.gnome.desktop.datetime
org.yorba.shotwell.sharing.flickr
org.gtk.Settings.EmojiChooser
com.ubuntu.touch.sound
org.yorba.shotwell.sharing.org-yorba-shotwell-publishing-yandex-fotki
org.gnome.Terminal.Legacy.Settings
org.gnome.gnome-system-monitor.disktreenew
org.gnome.gedit
com.ubuntu.notifications.hub
org.gnome.totem.plugins.pythonconsole
org.gnome.login-screen
org.gnome.FileRoller.General
org.freedesktop.Tracker.Miner.Files
org.gnome.mutter
org.gtk.Settings.ColorChooser
org.gnome.FileRoller.Dialogs.New
org.gnome.system.location
org.gnome.desktop.thumbnailers
org.gnome.FileRoller.Listing
org.gnome.settings-daemon.plugins.a11y-settings
org.gnome.rhythmbox.plugins.daap
org.gnome.DejaDup.File
org.yorba.shotwell.crop-settings
org.gnome.libgnomekbd.desktop
org.gnome.settings-daemon.peripherals.mouse
org.gnome.nautilus.preferences
org.gnome.rhythmbox.sharing
org.freedesktop.Tracker.FTS
org.gnome.DejaDup
org.freedesktop.ibus.general.hotkey
org.gnome.settings-daemon.plugins.cursor
org.gnome.rhythmbox.plugins.magnatune
org.gnome.system.locale
org.gnome.desktop.peripherals
org.gnome.totem
org.gnome.desktop.thumbnail-cache
org.gnome.settings-daemon.peripherals.smartcard
org.gnome.rhythmbox.plugins.mtpdevice
org.gnome.desktop.a11y.keyboard
org.freedesktop.ibus.panel.emoji
org.gnome.Evolution.DefaultSources
org.yorba.shotwell.sharing.org-yorba-shotwell-publishing-rajce
org.gnome.DejaDup.Drive
org.gnome.settings-daemon.plugins.remote-display
a@a:~$
a@a:~$ gsettings list-keys org.gnome.gedit.preferences.ui
statusbar-visible
bottom-panel-visible
side-panel-visible
show-tabs-mode
a@a:~$
a@a:~$ gsettings list-keys org.freedesktop.Tracker.Extract
wait-for-miner-fs
max-bytes
verbosity
sched-idle
a@a:~$
a@a:~$ gsettings set org.freedesktop.Tracker.Store graphupdated-delay 1001