For personnal use only

Size: px
Start display at page:

Download "For personnal use only"

Transcription

1 Exploring Systemd D-Bus Interface Finnbarr P. Murphy Systemd is a system and service manager for Linux, compatible with System V and LSB init scripts. Systemd provides aggressive parallelization capabilities, uses socket and D-Bus activation for starting services, offers on-demand starting of daemons, keeps track of processes using Linux control groups, supports snapshotting and restoring of the system state, maintains mount and automount points and implements an elaborate transactional dependency-based service control logic. D-Bus is enabled automatically when using systemd because D-Bus is a dependency of systemd. Here, I use dbus-send to introspect the systemd D-Bus interface. # dbus-send --system --print-reply --reply-timeout= type=method_call \ --dest=org.freedesktop.systemd1 /org/freedesktop/systemd1 \ org.freedesktop.dbus.introspectable.introspect method return sender=:1.92 -> dest=:1.102 reply_serial=2 string " Copyright Finnbarr P. Murphy. All rights reserved. 1/56

2 Copyright Finnbarr P. Murphy. All rights reserved. 2/56

3 Copyright Finnbarr P. Murphy. All rights reserved. 3/56

4 Copyright Finnbarr P. Murphy. All rights reserved. 4/56

5 ... Note the large number of property and node elements. I have removed most of the node elements to reduce the size of the above listing. There is a node element for each systemd unit. Why the node elements were not simply called unit, I have no idea but that would have been logical. Here is a detailed list of the systemd units that were currently defined on my system: # dbus-send --system --print-reply --reply-timeout= type=method_call \ --dest=org.freedesktop.systemd1 \ /org/freedesktop/systemd1 org.freedesktop.systemd1.manager.listunits Copyright Finnbarr P. Murphy. All rights reserved. 5/56

6 method return sender=:1.2 -> dest=:1.110 reply_serial=2 array [ string "network.service" string "LSB: Bring up/down networking" object path "/org/freedesktop/systemd1/unit/network_2eservice" object path "/org/freedesktop/systemd1/unit/network_2eservice" string "netconsole.service" string "SYSV: Initializes network console logging" object path "/org/freedesktop/systemd1/unit/netconsole_2eservice" object path "/org/freedesktop/systemd1/unit/netconsole_2eservice" string "ceph.service" string "LSB: Start Ceph distributed file system daemons at boot time" object path "/org/freedesktop/systemd1/unit/ceph_2eservice" object path "/org/freedesktop/systemd1/unit/ceph_2eservice" string "remote-fs.target" string "Remote File Systems" object path "/org/freedesktop/systemd1/unit/remote_2dfs_2etarget" object path "/org/freedesktop/systemd1/unit/remote_2dfs_2etarget" string "nss-lookup.target" string "Host and Network Name Lookups" object path "/org/freedesktop/systemd1/unit/nss_2dlookup_2etarget" object path "/org/freedesktop/systemd1/unit/nss_2dlookup_2etarget" string "network.target" string "Network" Copyright Finnbarr P. Murphy. All rights reserved. 6/56

7 object path "/org/freedesktop/systemd1/unit/network_2etarget" object path "/org/freedesktop/systemd1/unit/network_2etarget" string "time-sync.target" string "System Time Synchronized" object path "/org/freedesktop/systemd1/unit/time_2dsync_2etarget" object path "/org/freedesktop/systemd1/unit/time_2dsync_2etarget" string "systemd-journald.socket" string "Journal Socket" object path "/org/freedesktop/systemd1/unit/systemd_2djournald_2esocket" object path "/org/freedesktop/systemd1/unit/systemd_2djournald_2esocket" string "system.slice" string "System Slice" object path "/org/freedesktop/systemd1/unit/system_2eslice" object path "/org/freedesktop/systemd1/unit/system_2eslice" string "basic.target" string "Basic System" object path "/org/freedesktop/systemd1/unit/basic_2etarget" object path "/org/freedesktop/systemd1/unit/basic_2etarget" string "shutdown.target" string "Shutdown" object path "/org/freedesktop/systemd1/unit/shutdown_2etarget" object path "/org/freedesktop/systemd1/unit/shutdown_2etarget" string "alsa-store.service" Copyright Finnbarr P. Murphy. All rights reserved. 7/56

8 string "Store Sound Card State" object path "/org/freedesktop/systemd1/unit/alsa_2dstore_2eservice" object path "/org/freedesktop/systemd1/unit/alsa_2dstore_2eservice" string "dracut-shutdown.service" string "Restore /run/initramfs" object path "/org/freedesktop/systemd1/unit/dracut_2dshutdown_2eservice" object path "/org/freedesktop/systemd1/unit/dracut_2dshutdown_2eservice" string string "Getty on tty1" object path "/org/freedesktop/systemd1/unit/getty_40tty1_2eservice" object path "/org/freedesktop/systemd1/unit/getty_40tty1_2eservice" string "systemd-reboot.service" string "Reboot" object path "/org/freedesktop/systemd1/unit/systemd_2dreboot_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dreboot_2eservice" string "umount.target" string "Unmount All Filesystems" object path "/org/freedesktop/systemd1/unit/umount_2etarget" object path "/org/freedesktop/systemd1/unit/umount_2etarget" string "final.target" string "Final Step" object path "/org/freedesktop/systemd1/unit/final_2etarget" Copyright Finnbarr P. Murphy. All rights reserved. 8/56

9 object path "/org/freedesktop/systemd1/unit/final_2etarget" string "gdm.service" string "GNOME Display Manager" object path "/org/freedesktop/systemd1/unit/gdm_2eservice" object path "/org/freedesktop/systemd1/unit/gdm_2eservice" string "plymouth-quit.service" string "Terminate Plymouth Boot Screen" object path "/org/freedesktop/systemd1/unit/plymouth_2dquit_2eservice" object path "/org/freedesktop/systemd1/unit/plymouth_2dquit_2eservice" string "systemd-user-sessions.service" string "Permit User Sessions" string "exited" object path "/org/freedesktop/systemd1/unit/systemd_2duser_2dsessions_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2duser_2dsessions_2eservice" string "dbus.socket" string "D-Bus System Message Bus Socket" object path "/org/freedesktop/systemd1/unit/dbus_2esocket" object path "/org/freedesktop/systemd1/unit/dbus_2esocket" string "dbus.service" string "D-Bus System Message Bus" object path "/org/freedesktop/systemd1/unit/dbus_2eservice" object path "/org/freedesktop/systemd1/unit/dbus_2eservice" string "sockets.target" string "Sockets" Copyright Finnbarr P. Murphy. All rights reserved. 9/56

10 object path "/org/freedesktop/systemd1/unit/sockets_2etarget" object path "/org/freedesktop/systemd1/unit/sockets_2etarget" string "sysinit.target" string "System Initialization" object path "/org/freedesktop/systemd1/unit/sysinit_2etarget" object path "/org/freedesktop/systemd1/unit/sysinit_2etarget" string "emergency.service" string "Emergency Shell" object path "/org/freedesktop/systemd1/unit/emergency_2eservice" object path "/org/freedesktop/systemd1/unit/emergency_2eservice" string "emergency.target" string "Emergency Mode" object path "/org/freedesktop/systemd1/unit/emergency_2etarget" object path "/org/freedesktop/systemd1/unit/emergency_2etarget" string "local-fs.target" string "Local File Systems" object path "/org/freedesktop/systemd1/unit/local_2dfs_2etarget" object path "/org/freedesktop/systemd1/unit/local_2dfs_2etarget" string "swap.target" string "Swap" object path "/org/freedesktop/systemd1/unit/swap_2etarget" object path "/org/freedesktop/systemd1/unit/swap_2etarget" string "multipathd.service" Copyright Finnbarr P. Murphy. All rights reserved. 10/56

11 string "Device-Mapper Multipath Device Controller" object path "/org/freedesktop/systemd1/unit/multipathd_2eservice" object path "/org/freedesktop/systemd1/unit/multipathd_2eservice" string "lvm2-monitor.service" string "Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress pol ling" string "exited" object path "/org/freedesktop/systemd1/unit/lvm2_2dmonitor_2eservice" object path "/org/freedesktop/systemd1/unit/lvm2_2dmonitor_2eservice" string "dev-mqueue.mount" string "POSIX Message Queue File System" string "mounted" object path "/org/freedesktop/systemd1/unit/dev_2dmqueue_2emount" object path "/org/freedesktop/systemd1/unit/dev_2dmqueue_2emount" string "sys-kernel-debug.mount" string "Debug File System" string "mounted" object path "/org/freedesktop/systemd1/unit/sys_2dkernel_2ddebug_2emount" object path "/org/freedesktop/systemd1/unit/sys_2dkernel_2ddebug_2emount" string "sys-fs-fuse-connections.mount" string "FUSE Control File System" string "mounted" object path "/org/freedesktop/systemd1/unit/sys_2dfs_2dfuse_2dconnections_2emount" object path "/org/freedesktop/systemd1/unit/sys_2dfs_2dfuse_2dconnections_2emount" string "systemd-modules-load.service" string "Load Kernel Modules" object path "/org/freedesktop/systemd1/unit/systemd_2dmodules_2dload_2eservice" Copyright Finnbarr P. Murphy. All rights reserved. 11/56

12 object path "/org/freedesktop/systemd1/unit/systemd_2dmodules_2dload_2eservice" string "cryptsetup.target" string "Encrypted Volumes" object path "/org/freedesktop/systemd1/unit/cryptsetup_2etarget" object path "/org/freedesktop/systemd1/unit/cryptsetup_2etarget" string "systemd-journald.service" string "Journal Service" object path "/org/freedesktop/systemd1/unit/systemd_2djournald_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2djournald_2eservice" string "systemd-journal-flush.service" string "Trigger Flushing of Journal to Persistent Storage" object path "/org/freedesktop/systemd1/unit/systemd_2djournal_2dflush_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2djournal_2dflush_2eservice" string "systemd-tmpfiles-setup.service" string "Recreate Volatile Files and Directories" string "exited" object path "/org/freedesktop/systemd1/unit/systemd_2dtmpfiles_2dsetup_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dtmpfiles_2dsetup_2eservice" string "systemd-udev-trigger.service" string "udev Coldplug all Devices" string "exited" object path "/org/freedesktop/systemd1/unit/systemd_2dudev_2dtrigger_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dudev_2dtrigger_2eservice" string "plymouth-start.service" string "Show Plymouth Boot Screen" Copyright Finnbarr P. Murphy. All rights reserved. 12/56

13 object path "/org/freedesktop/systemd1/unit/plymouth_2dstart_2eservice" object path "/org/freedesktop/systemd1/unit/plymouth_2dstart_2eservice" string "systemd-ask-password-console.path" string "Dispatch Password Requests to Console Directory Watch" object path "/org/freedesktop/systemd1/unit/systemd_2dask_2dpassword_2dconsole_2e path" object path "/org/freedesktop/systemd1/unit/systemd_2dask_2dpassword_2dconsole_2e path" string "dev-hugepages.mount" string "Huge Pages File System" string "mounted" object path "/org/freedesktop/systemd1/unit/dev_2dhugepages_2emount" object path "/org/freedesktop/systemd1/unit/dev_2dhugepages_2emount" string "systemd-tmpfiles-setup-dev.service" string "Create static device nodes in /dev" string "exited" object path "/org/freedesktop/systemd1/unit/systemd_2dtmpfiles_2dsetup_2ddev_2ese rvice" object path "/org/freedesktop/systemd1/unit/systemd_2dtmpfiles_2dsetup_2ddev_2ese rvice" string "proc-sys-fs-binfmt_misc.automount" string "Arbitrary Executable File Formats File System Automount Point" object path "/org/freedesktop/systemd1/unit/proc_2dsys_2dfs_2dbinfmt_5fmisc_2eaut omount" object path "/org/freedesktop/systemd1/unit/proc_2dsys_2dfs_2dbinfmt_5fmisc_2eaut omount" string "systemd-update-utmp.service" string "Update UTMP about System Reboot/Shutdown" string "exited" Copyright Finnbarr P. Murphy. All rights reserved. 13/56

14 object path "/org/freedesktop/systemd1/unit/systemd_2dupdate_2dutmp_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dupdate_2dutmp_2eservice" string "systemd-sysctl.service" string "Apply Kernel Variables" string "exited" object path "/org/freedesktop/systemd1/unit/systemd_2dsysctl_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dsysctl_2eservice" string "systemd-udevd.service" string "udev Kernel Device Manager" object path "/org/freedesktop/systemd1/unit/systemd_2dudevd_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dudevd_2eservice" string "plymouth-read-write.service" string "Tell Plymouth To Write Out Runtime Data" object path "/org/freedesktop/systemd1/unit/plymouth_2dread_2dwrite_2eservice" object path "/org/freedesktop/systemd1/unit/plymouth_2dread_2dwrite_2eservice" string "systemd-vconsole-setup.service" string "Setup Virtual Console" string "exited" object path "/org/freedesktop/systemd1/unit/systemd_2dvconsole_2dsetup_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dvconsole_2dsetup_2eservice" string "systemd-binfmt.service" string "Set Up Additional Binary Formats" string "exited" object path "/org/freedesktop/systemd1/unit/systemd_2dbinfmt_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dbinfmt_2eservice" string "kmod-static-nodes.service" string "Create list of required static device nodes for the current kernel" Copyright Finnbarr P. Murphy. All rights reserved. 14/56

15 ce" ce" e" e" string "exited" object path "/org/freedesktop/systemd1/unit/kmod_2dstatic_2dnodes_2eservice" object path "/org/freedesktop/systemd1/unit/kmod_2dstatic_2dnodes_2eservice" string "sys-kernel-config.mount" string "Configuration File System" string "mounted" object path "/org/freedesktop/systemd1/unit/sys_2dkernel_2dconfig_2emount" object path "/org/freedesktop/systemd1/unit/sys_2dkernel_2dconfig_2emount" string "systemd-random-seed.service" string "Load/Save Random Seed" string "exited" object path "/org/freedesktop/systemd1/unit/systemd_2drandom_2dseed_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2drandom_2dseed_2eservice" string "systemd-readahead-collect.service" string "Collect Read-Ahead Data" string "failed" string "failed" object path "/org/freedesktop/systemd1/unit/systemd_2dreadahead_2dcollect_2eservi object path "/org/freedesktop/systemd1/unit/systemd_2dreadahead_2dcollect_2eservi string "systemd-readahead-replay.service" string "Replay Read-Ahead Data" string "exited" object path "/org/freedesktop/systemd1/unit/systemd_2dreadahead_2dreplay_2eservic object path "/org/freedesktop/systemd1/unit/systemd_2dreadahead_2dreplay_2eservic string "systemd-remount-fs.service" string "Remount Root and Kernel File Systems" string "exited" Copyright Finnbarr P. Murphy. All rights reserved. 15/56

16 object path "/org/freedesktop/systemd1/unit/systemd_2dremount_2dfs_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dremount_2dfs_2eservice" string "systemd-fsck-root.service" string "File System Check on Root Device" string "exited" object path "/org/freedesktop/systemd1/unit/systemd_2dfsck_2droot_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dfsck_2droot_2eservice" string "local-fs-pre.target" string "Local File Systems (Pre)" object path "/org/freedesktop/systemd1/unit/local_2dfs_2dpre_2etarget" object path "/org/freedesktop/systemd1/unit/local_2dfs_2dpre_2etarget" string "systemd-readahead-done.timer" string "Stop Read-Ahead Data Collection 10s After Completed Startup" string "elapsed" object path "/org/freedesktop/systemd1/unit/systemd_2dreadahead_2ddone_2etimer" object path "/org/freedesktop/systemd1/unit/systemd_2dreadahead_2ddone_2etimer" string "systemd-readahead-done.service" string "Stop Read-Ahead Data Collection" object path "/org/freedesktop/systemd1/unit/systemd_2dreadahead_2ddone_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dreadahead_2ddone_2eservice" string "graphical.target" string "Graphical Interface" object path "/org/freedesktop/systemd1/unit/graphical_2etarget" object path "/org/freedesktop/systemd1/unit/graphical_2etarget" string "multi-user.target" string "Multi-User System" Copyright Finnbarr P. Murphy. All rights reserved. 16/56

17 object path "/org/freedesktop/systemd1/unit/multi_2duser_2etarget" object path "/org/freedesktop/systemd1/unit/multi_2duser_2etarget" string "rescue.target" string "Rescue Mode" object path "/org/freedesktop/systemd1/unit/rescue_2etarget" object path "/org/freedesktop/systemd1/unit/rescue_2etarget" string "systemd-update-utmp-runlevel.service" string "Update UTMP about System Runlevel Changes" object path "/org/freedesktop/systemd1/unit/systemd_2dupdate_2dutmp_2drunlevel_2e service" object path "/org/freedesktop/systemd1/unit/systemd_2dupdate_2dutmp_2drunlevel_2e service" string "rescue.service" string "Rescue Shell" object path "/org/freedesktop/systemd1/unit/rescue_2eservice" object path "/org/freedesktop/systemd1/unit/rescue_2eservice" string "irqbalance.service" string "irqbalance daemon" object path "/org/freedesktop/systemd1/unit/irqbalance_2eservice" object path "/org/freedesktop/systemd1/unit/irqbalance_2eservice" string "NetworkManager.service" string "Network Manager" object path "/org/freedesktop/systemd1/unit/networkmanager_2eservice" Copyright Finnbarr P. Murphy. All rights reserved. 17/56

18 object path "/org/freedesktop/systemd1/unit/networkmanager_2eservice" string "sshd.service" string "OpenSSH server daemon" object path "/org/freedesktop/systemd1/unit/sshd_2eservice" object path "/org/freedesktop/systemd1/unit/sshd_2eservice" string "ksm.service" string "ksm.service" string "not-found" object path "/org/freedesktop/systemd1/unit/ksm_2eservice" object path "/org/freedesktop/systemd1/unit/ksm_2eservice" string "cups.path" string "CUPS Printer Service Spool" string "waiting" object path "/org/freedesktop/systemd1/unit/cups_2epath" object path "/org/freedesktop/systemd1/unit/cups_2epath" string "abrt-xorg.service" string "ABRT Xorg log watcher" object path "/org/freedesktop/systemd1/unit/abrt_2dxorg_2eservice" object path "/org/freedesktop/systemd1/unit/abrt_2dxorg_2eservice" string "libvirtd.service" string "Virtualization daemon" object path "/org/freedesktop/systemd1/unit/libvirtd_2eservice" object path "/org/freedesktop/systemd1/unit/libvirtd_2eservice" string "sm-client.service" string "Sendmail Mail Transport Client" Copyright Finnbarr P. Murphy. All rights reserved. 18/56

19 object path "/org/freedesktop/systemd1/unit/sm_2dclient_2eservice" object path "/org/freedesktop/systemd1/unit/sm_2dclient_2eservice" string "gpm.service" string "Console Mouse manager" object path "/org/freedesktop/systemd1/unit/gpm_2eservice" object path "/org/freedesktop/systemd1/unit/gpm_2eservice" string "crond.service" string "Command Scheduler" object path "/org/freedesktop/systemd1/unit/crond_2eservice" object path "/org/freedesktop/systemd1/unit/crond_2eservice" string "rpcbind.service" string "RPC bind service" object path "/org/freedesktop/systemd1/unit/rpcbind_2eservice" object path "/org/freedesktop/systemd1/unit/rpcbind_2eservice" string "smartd.service" string "Self Monitoring and Reporting Technology (SMART) Daemon" object path "/org/freedesktop/systemd1/unit/smartd_2eservice" object path "/org/freedesktop/systemd1/unit/smartd_2eservice" string "mcelog.service" string "Machine Check Exception Logging Daemon" object path "/org/freedesktop/systemd1/unit/mcelog_2eservice" object path "/org/freedesktop/systemd1/unit/mcelog_2eservice" Copyright Finnbarr P. Murphy. All rights reserved. 19/56

20 string "rsyslog.service" string "System Logging Service" object path "/org/freedesktop/systemd1/unit/rsyslog_2eservice" object path "/org/freedesktop/systemd1/unit/rsyslog_2eservice" string "ksmtuned.service" string "ksmtuned.service" string "not-found" object path "/org/freedesktop/systemd1/unit/ksmtuned_2eservice" object path "/org/freedesktop/systemd1/unit/ksmtuned_2eservice" string "acpid.service" string "ACPI Event Daemon" object path "/org/freedesktop/systemd1/unit/acpid_2eservice" object path "/org/freedesktop/systemd1/unit/acpid_2eservice" string "NetworkManager-dispatcher.service" string "Network Manager Script Dispatcher Service" object path "/org/freedesktop/systemd1/unit/networkmanager_2ddispatcher_2eservice" object path "/org/freedesktop/systemd1/unit/networkmanager_2ddispatcher_2eservice" string "auditd.service" string "Security Auditing Service" object path "/org/freedesktop/systemd1/unit/auditd_2eservice" object path "/org/freedesktop/systemd1/unit/auditd_2eservice" string "httpd.service" string "The Apache HTTP Server" object path "/org/freedesktop/systemd1/unit/httpd_2eservice" Copyright Finnbarr P. Murphy. All rights reserved. 20/56

21 object path "/org/freedesktop/systemd1/unit/httpd_2eservice" string "arp-ethers.service" string "Load static arp entries" object path "/org/freedesktop/systemd1/unit/arp_2dethers_2eservice" object path "/org/freedesktop/systemd1/unit/arp_2dethers_2eservice" string "chronyd.service" string "NTP client/server" object path "/org/freedesktop/systemd1/unit/chronyd_2eservice" object path "/org/freedesktop/systemd1/unit/chronyd_2eservice" string "sendmail.service" string "Sendmail Mail Transport Agent" object path "/org/freedesktop/systemd1/unit/sendmail_2eservice" object path "/org/freedesktop/systemd1/unit/sendmail_2eservice" string "atd.service" string "Job spooling tools" object path "/org/freedesktop/systemd1/unit/atd_2eservice" object path "/org/freedesktop/systemd1/unit/atd_2eservice" string "getty.target" string "Login Prompts" object path "/org/freedesktop/systemd1/unit/getty_2etarget" object path "/org/freedesktop/systemd1/unit/getty_2etarget" string "plymouth-quit-wait.service" string "Wait for Plymouth Boot Screen to Quit" Copyright Finnbarr P. Murphy. All rights reserved. 21/56

22 object path "/org/freedesktop/systemd1/unit/plymouth_2dquit_2dwait_2eservice" object path "/org/freedesktop/systemd1/unit/plymouth_2dquit_2dwait_2eservice" string "systemd-logind.service" string "Login Service" object path "/org/freedesktop/systemd1/unit/systemd_2dlogind_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dlogind_2eservice" string "systemd-ask-password-wall.path" string "Forward Password Requests to Wall Directory Watch" string "waiting" object path "/org/freedesktop/systemd1/unit/systemd_2dask_2dpassword_2dwall_2epat h" object path "/org/freedesktop/systemd1/unit/systemd_2dask_2dpassword_2dwall_2epat h" string "paths.target" string "Paths" object path "/org/freedesktop/systemd1/unit/paths_2etarget" object path "/org/freedesktop/systemd1/unit/paths_2etarget" string "systemd-ask-password-wall.service" string "Forward Password Requests to Wall" object path "/org/freedesktop/systemd1/unit/systemd_2dask_2dpassword_2dwall_2eser vice" object path "/org/freedesktop/systemd1/unit/systemd_2dask_2dpassword_2dwall_2eser vice" string "user.slice" string "User and Session Slice" object path "/org/freedesktop/systemd1/unit/user_2eslice" Copyright Finnbarr P. Murphy. All rights reserved. 22/56

23 object path "/org/freedesktop/systemd1/unit/user_2eslice" string "nss-user-lookup.target" string "User and Group Name Lookups" object path "/org/freedesktop/systemd1/unit/nss_2duser_2dlookup_2etarget" object path "/org/freedesktop/systemd1/unit/nss_2duser_2dlookup_2etarget" string "slices.target" string "Slices" object path "/org/freedesktop/systemd1/unit/slices_2etarget" object path "/org/freedesktop/systemd1/unit/slices_2etarget" string "-.slice" string "Root Slice" object path "/org/freedesktop/systemd1/unit/_2d_2eslice" object path "/org/freedesktop/systemd1/unit/_2d_2eslice" string "rc-local.service" string "/etc/rc.d/rc.local Compatibility" object path "/org/freedesktop/systemd1/unit/rc_2dlocal_2eservice" object path "/org/freedesktop/systemd1/unit/rc_2dlocal_2eservice" string "syslog.target" string "syslog.target" string "not-found" object path "/org/freedesktop/systemd1/unit/syslog_2etarget" object path "/org/freedesktop/systemd1/unit/syslog_2etarget" string "postfix.service" string "postfix.service" string "not-found" Copyright Finnbarr P. Murphy. All rights reserved. 23/56

24 object path "/org/freedesktop/systemd1/unit/postfix_2eservice" object path "/org/freedesktop/systemd1/unit/postfix_2eservice" string "exim.service" string "exim.service" string "not-found" object path "/org/freedesktop/systemd1/unit/exim_2eservice" object path "/org/freedesktop/systemd1/unit/exim_2eservice" string "ntpdate.service" string "ntpdate.service" string "not-found" object path "/org/freedesktop/systemd1/unit/ntpdate_2eservice" object path "/org/freedesktop/systemd1/unit/ntpdate_2eservice" string "sntp.service" string "sntp.service" string "not-found" object path "/org/freedesktop/systemd1/unit/sntp_2eservice" object path "/org/freedesktop/systemd1/unit/sntp_2eservice" string "ntpd.service" string "ntpd.service" string "not-found" object path "/org/freedesktop/systemd1/unit/ntpd_2eservice" object path "/org/freedesktop/systemd1/unit/ntpd_2eservice" string "rpcbind.socket" string "RPCbind Server Activation Socket" object path "/org/freedesktop/systemd1/unit/rpcbind_2esocket" object path "/org/freedesktop/systemd1/unit/rpcbind_2esocket" Copyright Finnbarr P. Murphy. All rights reserved. 24/56

25 string "libvirt-guests.service" string "Suspend Active Libvirt Guests" object path "/org/freedesktop/systemd1/unit/libvirt_2dguests_2eservice" object path "/org/freedesktop/systemd1/unit/libvirt_2dguests_2eservice" string "iscsid.service" string "Open-iSCSI" object path "/org/freedesktop/systemd1/unit/iscsid_2eservice" object path "/org/freedesktop/systemd1/unit/iscsid_2eservice" string "iscsiuio.service" string "iscsi UserSpace I/O driver" object path "/org/freedesktop/systemd1/unit/iscsiuio_2eservice" object path "/org/freedesktop/systemd1/unit/iscsiuio_2eservice" string "remote-fs-pre.target" string "Remote File Systems (Pre)" object path "/org/freedesktop/systemd1/unit/remote_2dfs_2dpre_2etarget" object path "/org/freedesktop/systemd1/unit/remote_2dfs_2dpre_2etarget" string "abrtd.service" string "ABRT Automated Bug Reporting Tool" object path "/org/freedesktop/systemd1/unit/abrtd_2eservice" object path "/org/freedesktop/systemd1/unit/abrtd_2eservice" string "livesys.service" string "livesys.service" string "not-found" object path "/org/freedesktop/systemd1/unit/livesys_2eservice" Copyright Finnbarr P. Murphy. All rights reserved. 25/56

26 object path "/org/freedesktop/systemd1/unit/livesys_2eservice" string "cups.service" string "CUPS Printing Service" object path "/org/freedesktop/systemd1/unit/cups_2eservice" object path "/org/freedesktop/systemd1/unit/cups_2eservice" string "systemd-udevd-control.socket" string "udev Control Socket" object path "/org/freedesktop/systemd1/unit/systemd_2dudevd_2dcontrol_2esocket" object path "/org/freedesktop/systemd1/unit/systemd_2dudevd_2dcontrol_2esocket" string "systemd-udevd-kernel.socket" string "udev Kernel Socket" object path "/org/freedesktop/systemd1/unit/systemd_2dudevd_2dkernel_2esocket" object path "/org/freedesktop/systemd1/unit/systemd_2dudevd_2dkernel_2esocket" string "proc-sys-fs-binfmt_misc.mount" string "Arbitrary Executable File Formats File System" string "mounted" object path "/org/freedesktop/systemd1/unit/proc_2dsys_2dfs_2dbinfmt_5fmisc_2emou nt" object path "/org/freedesktop/systemd1/unit/proc_2dsys_2dfs_2dbinfmt_5fmisc_2emou nt" string "systemd-ask-password-console.service" string "Dispatch Password Requests to Console" object path "/org/freedesktop/systemd1/unit/systemd_2dask_2dpassword_2dconsole_2e service" object path "/org/freedesktop/systemd1/unit/systemd_2dask_2dpassword_2dconsole_2e service" Copyright Finnbarr P. Murphy. All rights reserved. 26/56

27 string "systemd-ask-password-plymouth.path" string "Forward Password Requests to Plymouth Directory Watch" string "waiting" object path "/org/freedesktop/systemd1/unit/systemd_2dask_2dpassword_2dplymouth_2 epath" object path "/org/freedesktop/systemd1/unit/systemd_2dask_2dpassword_2dplymouth_2 epath" string "systemd-ask-password-plymouth.service" string "Forward Password Requests to Plymouth" object path "/org/freedesktop/systemd1/unit/systemd_2dask_2dpassword_2dplymouth_2 eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dask_2dpassword_2dplymouth_2 eservice" string "syslog.socket" string "Syslog Socket" object path "/org/freedesktop/systemd1/unit/syslog_2esocket" object path "/org/freedesktop/systemd1/unit/syslog_2esocket" string "dm-event.socket" string "Device-mapper event daemon FIFOs" string "listening" object path "/org/freedesktop/systemd1/unit/dm_2devent_2esocket" object path "/org/freedesktop/systemd1/unit/dm_2devent_2esocket" string "lvm2-lvmetad.socket" string "LVM2 metadata daemon socket" string "listening" object path "/org/freedesktop/systemd1/unit/lvm2_2dlvmetad_2esocket" object path "/org/freedesktop/systemd1/unit/lvm2_2dlvmetad_2esocket" string "lvm2-activation.service" string "lvm2-activation.service" string "not-found" Copyright Finnbarr P. Murphy. All rights reserved. 27/56

28 object path "/org/freedesktop/systemd1/unit/lvm2_2dactivation_2eservice" object path "/org/freedesktop/systemd1/unit/lvm2_2dactivation_2eservice" string "lvm2-lvmetad.service" string "LVM2 metadata daemon" object path "/org/freedesktop/systemd1/unit/lvm2_2dlvmetad_2eservice" object path "/org/freedesktop/systemd1/unit/lvm2_2dlvmetad_2eservice" string "dm-event.service" string "Device-mapper event daemon" object path "/org/freedesktop/systemd1/unit/dm_2devent_2eservice" object path "/org/freedesktop/systemd1/unit/dm_2devent_2eservice" string "iscsi.service" string "Login and scanning of iscsi devices" object path "/org/freedesktop/systemd1/unit/iscsi_2eservice" object path "/org/freedesktop/systemd1/unit/iscsi_2eservice" string "lvm2-activation-early.service" string "lvm2-activation-early.service" string "not-found" object path "/org/freedesktop/systemd1/unit/lvm2_2dactivation_2dearly_2eservice" object path "/org/freedesktop/systemd1/unit/lvm2_2dactivation_2dearly_2eservice" string "dev-disk-by\x2duuid-b0f4534d\x2d8495\x2d4d06\x2dbbd0\x2dcf4d6af689c6.swap" string "/dev/disk/by-uuid/b0f4534d d06-bbd0-cf4d6af689c6" string "dev-sda4.swap" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2duuid_2db0f4534d_ 5cx2d8495_5cx2d4d06_5cx2dbbd0_5cx2dcf4d6af689c6_2eswap" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2duuid_2db0f4534d_ 5cx2d8495_5cx2d4d06_5cx2dbbd0_5cx2dcf4d6af689c6_2eswap" Copyright Finnbarr P. Murphy. All rights reserved. 28/56

29 string "dev-sda4.swap" string "/dev/sda4" object path "/org/freedesktop/systemd1/unit/dev_2dsda4_2eswap" object path "/org/freedesktop/systemd1/unit/dev_2dsda4_2eswap" string "dev-sda4.device" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda-sda4.device" object path "/org/freedesktop/systemd1/unit/dev_2dsda4_2edevice" object path "/org/freedesktop/systemd1/unit/dev_2dsda4_2edevice" string "dev-disk-by\x2duuid-b0f4534d\x2d8495\x2d4d06\x2dbbd0\x2dcf4d6af689c6.devi ce" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda-sda4.device" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2duuid_2db0f4534d_ 5cx2d8495_5cx2d4d06_5cx2dbbd0_5cx2dcf4d6af689c6_2edevice" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2duuid_2db0f4534d_ 5cx2d8495_5cx2d4d06_5cx2dbbd0_5cx2dcf4d6af689c6_2edevice" string "home-fpm.mount" string "/home/fpm" string "mounted" object path "/org/freedesktop/systemd1/unit/home_2dfpm_2emount" object path "/org/freedesktop/systemd1/unit/home_2dfpm_2emount" string "home.mount" string "/home" string "mounted" object path "/org/freedesktop/systemd1/unit/home_2emount" object path "/org/freedesktop/systemd1/unit/home_2emount" string "boot-efi.mount" Copyright Finnbarr P. Murphy. All rights reserved. 29/56

30 string "/boot/efi" string "mounted" object path "/org/freedesktop/systemd1/unit/boot_2defi_2emount" object path "/org/freedesktop/systemd1/unit/boot_2defi_2emount" string "boot.mount" string "/boot" string "mounted" object path "/org/freedesktop/systemd1/unit/boot_2emount" object path "/org/freedesktop/systemd1/unit/boot_2emount" string "-.mount" string "/" string "mounted" object path "/org/freedesktop/systemd1/unit/_2d_2emount" object path "/org/freedesktop/systemd1/unit/_2d_2emount" string "fedora-import-state.service" string "Import network configuration from initramfs" string "exited" object path "/org/freedesktop/systemd1/unit/fedora_2dimport_2dstate_2eservice" object path "/org/freedesktop/systemd1/unit/fedora_2dimport_2dstate_2eservice" string "tmp.mount" string "Temporary Directory" string "mounted" object path "/org/freedesktop/systemd1/unit/tmp_2emount" object path "/org/freedesktop/systemd1/unit/tmp_2emount" string "fedora-readonly.service" string "Configure read-only root support" string "exited" object path "/org/freedesktop/systemd1/unit/fedora_2dreadonly_2eservice" Copyright Finnbarr P. Murphy. All rights reserved. 30/56

31 object path "/org/freedesktop/systemd1/unit/fedora_2dreadonly_2eservice" string "systemd-random-seed-load.service" string "systemd-random-seed-load.service" string "not-found" object path "/org/freedesktop/systemd1/unit/systemd_2drandom_2dseed_2dload_2eserv ice" object path "/org/freedesktop/systemd1/unit/systemd_2drandom_2dseed_2dload_2eserv ice" string 1d2e1b25.service" string "File System Check on /dev/disk/by-uuid/810fc4a4-551a-4a9a-ae4b-31a11d2e1b 25" string "exited" object path "/org/freedesktop/systemd1/unit/systemd_2dfsck_40dev_2ddisk_2dby_5cx2 duuid_2d810fc4a4_5cx2d551a_5cx2d4a9a_5cx2dae4b_5cx2d31a11d2e1b25_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dfsck_40dev_2ddisk_2dby_5cx2 duuid_2d810fc4a4_5cx2d551a_5cx2d4a9a_5cx2dae4b_5cx2d31a11d2e1b25_2eservice" string "dev-disk-by\x2duuid-810fc4a4\x2d551a\x2d4a9a\x2dae4b\x2d31a11d2e1b25.devi ce" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda-sda2.device" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2duuid_2d810fc4a4_ 5cx2d551a_5cx2d4a9a_5cx2dae4b_5cx2d31a11d2e1b25_2edevice" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2duuid_2d810fc4a4_ 5cx2d551a_5cx2d4a9a_5cx2dae4b_5cx2d31a11d2e1b25_2edevice" string "system-systemd\x2dfsck.slice" string "system-systemd\x2dfsck.slice" object path "/org/freedesktop/systemd1/unit/system_2dsystemd_5cx2dfsck_2eslice" object path "/org/freedesktop/systemd1/unit/system_2dsystemd_5cx2dfsck_2eslice" string "dev-disk-by\x2duuid-26a8\x2dabef.device" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda-sda1.device" Copyright Finnbarr P. Murphy. All rights reserved. 31/56

32 object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2duuid_2d26a8_5cx2 dabef_2edevice" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2duuid_2d26a8_5cx2 dabef_2edevice" string f1.service" string "File System Check on /dev/disk/by-uuid/53303df6-9c6e-4020-adab f1" string "exited" object path "/org/freedesktop/systemd1/unit/systemd_2dfsck_40dev_2ddisk_2dby_5cx2 duuid_2d53303df6_5cx2d9c6e_5cx2d4020_5cx2dadab_5cx2d f1_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dfsck_40dev_2ddisk_2dby_5cx2 duuid_2d53303df6_5cx2d9c6e_5cx2d4020_5cx2dadab_5cx2d f1_2eservice" string "dev-disk-by\x2duuid-53303df6\x2d9c6e\x2d4020\x2dadab\x2d f1.devi ce" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda-sda5.device" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2duuid_2d53303df6_ 5cx2d9c6e_5cx2d4020_5cx2dadab_5cx2d f1_2edevice" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2duuid_2d53303df6_ 5cx2d9c6e_5cx2d4020_5cx2dadab_5cx2d f1_2edevice" string string "File System Check on /dev/disk/by-label/fpmwork" string "exited" object path "/org/freedesktop/systemd1/unit/systemd_2dfsck_40dev_2ddisk_2dby_5cx2 dlabel_2dfpmwork_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dfsck_40dev_2ddisk_2dby_5cx2 dlabel_2dfpmwork_2eservice" string "dev-disk-by\x2dlabel-fpmwork.device" string "ST500NM0011" string "sys-devices-pci0000: :00:1f.2-ata2-host1-target1:0:0-1:0:0:0-blocksdb-sdb1.device" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2dlabel_2dfpmwork_ 2edevice" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2dlabel_2dfpmwork_ 2edevice" Copyright Finnbarr P. Murphy. All rights reserved. 32/56

33 string "pcscd.socket" string "PC/SC Smart Card Daemon Activation Socket" object path "/org/freedesktop/systemd1/unit/pcscd_2esocket" object path "/org/freedesktop/systemd1/unit/pcscd_2esocket" string "iscsid.socket" string "Open-iSCSI iscsid Socket" string "listening" object path "/org/freedesktop/systemd1/unit/iscsid_2esocket" object path "/org/freedesktop/systemd1/unit/iscsid_2esocket" string "iscsiuio.socket" string "Open-iSCSI iscsiuio Socket" string "listening" object path "/org/freedesktop/systemd1/unit/iscsiuio_2esocket" object path "/org/freedesktop/systemd1/unit/iscsiuio_2esocket" string "cups.socket" string "CUPS Printing Service Sockets" object path "/org/freedesktop/systemd1/unit/cups_2esocket" object path "/org/freedesktop/systemd1/unit/cups_2esocket" string "systemd-initctl.socket" string "/dev/initctl Compatibility Named Pipe" string "listening" object path "/org/freedesktop/systemd1/unit/systemd_2dinitctl_2esocket" object path "/org/freedesktop/systemd1/unit/systemd_2dinitctl_2esocket" string "systemd-shutdownd.socket" string "Delayed Shutdown Socket" string "listening" object path "/org/freedesktop/systemd1/unit/systemd_2dshutdownd_2esocket" Copyright Finnbarr P. Murphy. All rights reserved. 33/56

34 object path "/org/freedesktop/systemd1/unit/systemd_2dshutdownd_2esocket" string "systemd-shutdownd.service" string "Delayed Shutdown Service" object path "/org/freedesktop/systemd1/unit/systemd_2dshutdownd_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dshutdownd_2eservice" string "systemd-initctl.service" string "/dev/initctl Compatibility Daemon" object path "/org/freedesktop/systemd1/unit/systemd_2dinitctl_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dinitctl_2eservice" string "pcscd.service" string "PC/SC Smart Card Daemon" object path "/org/freedesktop/systemd1/unit/pcscd_2eservice" object path "/org/freedesktop/systemd1/unit/pcscd_2eservice" string "system-getty.slice" string "system-getty.slice" object path "/org/freedesktop/systemd1/unit/system_2dgetty_2eslice" object path "/org/freedesktop/systemd1/unit/system_2dgetty_2eslice" string "timers.target" string "Timers" object path "/org/freedesktop/systemd1/unit/timers_2etarget" object path "/org/freedesktop/systemd1/unit/timers_2etarget" string "firewalld.service" string "firewalld - dynamic firewall daemon" Copyright Finnbarr P. Murphy. All rights reserved. 34/56

35 object path "/org/freedesktop/systemd1/unit/firewalld_2eservice" object path "/org/freedesktop/systemd1/unit/firewalld_2eservice" string "fedora-autorelabel.service" string "Relabel all filesystems, if necessary" object path "/org/freedesktop/systemd1/unit/fedora_2dautorelabel_2eservice" object path "/org/freedesktop/systemd1/unit/fedora_2dautorelabel_2eservice" string "alsa-restore.service" string "Restore Sound Card State" object path "/org/freedesktop/systemd1/unit/alsa_2drestore_2eservice" object path "/org/freedesktop/systemd1/unit/alsa_2drestore_2eservice" string "fedora-autorelabel-mark.service" string "Mark the need to relabel after reboot" object path "/org/freedesktop/systemd1/unit/fedora_2dautorelabel_2dmark_2eservice" object path "/org/freedesktop/systemd1/unit/fedora_2dautorelabel_2dmark_2eservice" string "console-kit-log-system-start.service" string "Console System Startup Logging" string "exited" object path "/org/freedesktop/systemd1/unit/console_2dkit_2dlog_2dsystem_2dstart_ 2eservice" object path "/org/freedesktop/systemd1/unit/console_2dkit_2dlog_2dsystem_2dstart_ 2eservice" string "alsa-state.service" string "Manage Sound Card State (restore and store)" object path "/org/freedesktop/systemd1/unit/alsa_2dstate_2eservice" Copyright Finnbarr P. Murphy. All rights reserved. 35/56

36 object path "/org/freedesktop/systemd1/unit/alsa_2dstate_2eservice" string "fedora-loadmodules.service" string "Load legacy module configuration" object path "/org/freedesktop/systemd1/unit/fedora_2dloadmodules_2eservice" object path "/org/freedesktop/systemd1/unit/fedora_2dloadmodules_2eservice" string "fedora-configure.service" string "Reconfigure the system on administrator request" object path "/org/freedesktop/systemd1/unit/fedora_2dconfigure_2eservice" object path "/org/freedesktop/systemd1/unit/fedora_2dconfigure_2eservice" string "iptables.service" string "IPv4 firewall with iptables" object path "/org/freedesktop/systemd1/unit/iptables_2eservice" object path "/org/freedesktop/systemd1/unit/iptables_2eservice" string "ip6tables.service" string "IPv6 firewall with ip6tables" object path "/org/freedesktop/systemd1/unit/ip6tables_2eservice" object path "/org/freedesktop/systemd1/unit/ip6tables_2eservice" string "ebtables.service" string "Ethernet Bridge Filtering tables" object path "/org/freedesktop/systemd1/unit/ebtables_2eservice" object path "/org/freedesktop/systemd1/unit/ebtables_2eservice" string "systemd-tmpfiles-clean.timer" string "Daily Cleanup of Temporary Directories" string "waiting" Copyright Finnbarr P. Murphy. All rights reserved. 36/56

37 object path "/org/freedesktop/systemd1/unit/systemd_2dtmpfiles_2dclean_2etimer" object path "/org/freedesktop/systemd1/unit/systemd_2dtmpfiles_2dclean_2etimer" string "systemd-tmpfiles-clean.service" string "Cleanup of Temporary Directories" object path "/org/freedesktop/systemd1/unit/systemd_2dtmpfiles_2dclean_2eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dtmpfiles_2dclean_2eservice" string "sys-devices-pci0000: :00:02.0-backlight-acpi_video0.device" string "/sys/devices/pci0000:00/0000:00:02.0/backlight/acpi_video0" object path "/org/freedesktop/systemd1/unit/sys_2ddevices_2dpci0000_3a00_2d0000_3 a00_3a02_2e0_2dbacklight_2dacpi_5fvideo0_2edevice" object path "/org/freedesktop/systemd1/unit/sys_2ddevices_2dpci0000_3a00_2d0000_3 a00_3a02_2e0_2dbacklight_2dacpi_5fvideo0_2edevice" string string "Load/Save Screen Backlight Brightness of acpi_video0" object path "/org/freedesktop/systemd1/unit/systemd_2dbacklight_40acpi_5fvideo0_2 eservice" object path "/org/freedesktop/systemd1/unit/systemd_2dbacklight_40acpi_5fvideo0_2 eservice" string "system-systemd\x2dbacklight.slice" string "system-systemd\x2dbacklight.slice" object path "/org/freedesktop/systemd1/unit/system_2dsystemd_5cx2dbacklight_2esli ce" object path "/org/freedesktop/systemd1/unit/system_2dsystemd_5cx2dbacklight_2esli ce" string "sys-devices-pci0000: :00:1b.0-sound-card0.device" string "7 Series/C210 Series Chipset Family High Definition Audio Controller" object path "/org/freedesktop/systemd1/unit/sys_2ddevices_2dpci0000_3a00_2d0000_ Copyright Finnbarr P. Murphy. All rights reserved. 37/56

38 a00_3a1b_2e0_2dsound_2dcard0_2edevice" object path "/org/freedesktop/systemd1/unit/sys_2ddevices_2dpci0000_3a00_2d0000_3 a00_3a1b_2e0_2dsound_2dcard0_2edevice" string "sound.target" string "Sound Card" object path "/org/freedesktop/systemd1/unit/sound_2etarget" object path "/org/freedesktop/systemd1/unit/sound_2etarget" string "sys-devices-pci0000: :00:1c :02:00.0-net-p1p1.device" string "RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller" object path "/org/freedesktop/systemd1/unit/sys_2ddevices_2dpci0000_3a00_2d0000_3 a00_3a1c_2e1_2d0000_3a02_3a00_2e0_2dnet_2dp1p1_2edevice" object path "/org/freedesktop/systemd1/unit/sys_2ddevices_2dpci0000_3a00_2d0000_3 a00_3a1c_2e1_2d0000_3a02_3a00_2e0_2dnet_2dp1p1_2edevice" string "sys-subsystem-net-devices-p1p1.device" string "RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller" object path "/org/freedesktop/systemd1/unit/sys_2dsubsystem_2dnet_2ddevices_2dp1p 1_2edevice" object path "/org/freedesktop/systemd1/unit/sys_2dsubsystem_2dnet_2ddevices_2dp1p 1_2edevice" string "sys-devices-pci0000: :00:1c :03:00.0-net-p2p1.device" string "PRO/1000 PT Desktop Adapter" object path "/org/freedesktop/systemd1/unit/sys_2ddevices_2dpci0000_3a00_2d0000_3 a00_3a1c_2e2_2d0000_3a03_3a00_2e0_2dnet_2dp2p1_2edevice" object path "/org/freedesktop/systemd1/unit/sys_2ddevices_2dpci0000_3a00_2d0000_3 a00_3a1c_2e2_2d0000_3a03_3a00_2e0_2dnet_2dp2p1_2edevice" string "sys-subsystem-net-devices-p2p1.device" string "PRO/1000 PT Desktop Adapter" object path "/org/freedesktop/systemd1/unit/sys_2dsubsystem_2dnet_2ddevices_2dp2p Copyright Finnbarr P. Murphy. All rights reserved. 38/56

39 1_2edevice" object path "/org/freedesktop/systemd1/unit/sys_2dsubsystem_2dnet_2ddevices_2dp2p 1_2edevice" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda.device" object path "/org/freedesktop/systemd1/unit/sys_2ddevices_2dpci0000_3a00_2d0000_3 a00_3a1f_2e2_2data1_2dhost0_2dtarget0_3a0_3a0_2d0_3a0_3a0_3a0_2dblock_2dsda_2edevice" object path "/org/freedesktop/systemd1/unit/sys_2ddevices_2dpci0000_3a00_2d0000_3 a00_3a1f_2e2_2data1_2dhost0_2dtarget0_3a0_3a0_2d0_3a0_3a0_3a0_2dblock_2dsda_2edevice" string "dev-sda.device" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda.device" object path "/org/freedesktop/systemd1/unit/dev_2dsda_2edevice" object path "/org/freedesktop/systemd1/unit/dev_2dsda_2edevice" string "dev-disk-by\x2did-ata\x2dst as_z2a8jqn8.device" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda.device" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2did_2data_5cx2dst AS_5fZ2A8JQN8_2edevice" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2did_2data_5cx2dst AS_5fZ2A8JQN8_2edevice" string "dev-disk-by\x2did-wwn\x2d0x5000c500359ee597.device" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda.device" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2did_2dwwn_5cx2d0x 5000c500359ee597_2edevice" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2did_2dwwn_5cx2d0x 5000c500359ee597_2edevice" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda-sda1.device" Copyright Finnbarr P. Murphy. All rights reserved. 39/56

40 object path "/org/freedesktop/systemd1/unit/sys_2ddevices_2dpci0000_3a00_2d0000_3 a00_3a1f_2e2_2data1_2dhost0_2dtarget0_3a0_3a0_2d0_3a0_3a0_3a0_2dblock_2dsda_2dsda1_2edevic e" object path "/org/freedesktop/systemd1/unit/sys_2ddevices_2dpci0000_3a00_2d0000_3 a00_3a1f_2e2_2data1_2dhost0_2dtarget0_3a0_3a0_2d0_3a0_3a0_3a0_2dblock_2dsda_2dsda1_2edevic e" string "dev-sda1.device" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda-sda1.device" object path "/org/freedesktop/systemd1/unit/dev_2dsda1_2edevice" object path "/org/freedesktop/systemd1/unit/dev_2dsda1_2edevice" string "dev-disk-by\x2did-ata\x2dst as_z2a8jqn8\x2dpart1.device" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda-sda1.device" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2did_2data_5cx2dst AS_5fZ2A8JQN8_5cx2dpart1_2edevice" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2did_2data_5cx2dst AS_5fZ2A8JQN8_5cx2dpart1_2edevice" string "dev-disk-by\x2did-wwn\x2d0x5000c500359ee597\x2dpart1.device" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda-sda1.device" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2did_2dwwn_5cx2d0x 5000c500359ee597_5cx2dpart1_2edevice" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2did_2dwwn_5cx2d0x 5000c500359ee597_5cx2dpart1_2edevice" string "dev-disk-by\x2dlabel-esp.device" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda-sda1.device" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2dlabel_2desp_2ede vice" Copyright Finnbarr P. Murphy. All rights reserved. 40/56

41 object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2dlabel_2desp_2ede vice" string "dev-disk-by\x2dpartlabel-efi\x5cx20system\x5cx20partition.device" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda-sda1.device" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2dpartlabel_2defi_ 5cx5cx20System_5cx5cx20Partition_2edevice" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2dpartlabel_2defi_ 5cx5cx20System_5cx5cx20Partition_2edevice" string "dev-disk-by\x2dpartuuid-a2b4a2ac\x2d5677\x2d43cf\x2da820\x2db f20. device" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda-sda1.device" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2dpartuuid_2da2b4a 2ac_5cx2d5677_5cx2d43cf_5cx2da820_5cx2db f20_2edevice" object path "/org/freedesktop/systemd1/unit/dev_2ddisk_2dby_5cx2dpartuuid_2da2b4a 2ac_5cx2d5677_5cx2d43cf_5cx2da820_5cx2db f20_2edevice" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda-sda2.device" object path "/org/freedesktop/systemd1/unit/sys_2ddevices_2dpci0000_3a00_2d0000_3 a00_3a1f_2e2_2data1_2dhost0_2dtarget0_3a0_3a0_2d0_3a0_3a0_3a0_2dblock_2dsda_2dsda2_2edevic e" object path "/org/freedesktop/systemd1/unit/sys_2ddevices_2dpci0000_3a00_2d0000_3 a00_3a1f_2e2_2data1_2dhost0_2dtarget0_3a0_3a0_2d0_3a0_3a0_3a0_2dblock_2dsda_2dsda2_2edevic e" string "dev-sda2.device" string "sys-devices-pci0000: :00:1f.2-ata1-host0-target0:0:0-0:0:0:0-blocksda-sda2.device" object path "/org/freedesktop/systemd1/unit/dev_2dsda2_2edevice" object path "/org/freedesktop/systemd1/unit/dev_2dsda2_2edevice" string "dev-disk-by\x2did-ata\x2dst as_z2a8jqn8\x2dpart2.device" Copyright Finnbarr P. Murphy. All rights reserved. 41/56

AWS Icinga 2.7 Enabled Services

AWS Icinga 2.7 Enabled Services AWS Icinga 2.7 Enabled Services auditd.service UNIT FILE auth-rpcgss-module.service autovt@.service brandbot.service chronyd.service chrony-dnssrv@.service cloud-config.service cloud-final.service cloud-init.service

More information

How to Secure CENTOS 7.1 Part 1

How to Secure CENTOS 7.1 Part 1 How to Secure CENTOS 7.1 Part 1 Motivation This paper will be a multi-part series on securing CentOS Linux 7.1. This idea has been toiling around my head for almost a year and now is the time to get it

More information

systemd our next-generation init system PABLO N. HESS Instructor Red Hat São Paulo December 2011

systemd our next-generation init system PABLO N. HESS Instructor Red Hat São Paulo December 2011 systemd our next-generation init system PABLO N. HESS Instructor Red Hat São Paulo December 2011 General info & History Authors: Lennart Poettering (Red Hat) Pulseaudio, Avahi Kay Sievers (opensuse) Udev

More information

Tizen Bootup. Xiaoli Gong Nankai University, China

Tizen Bootup. Xiaoli Gong Nankai University, China Tizen Bootup Xiaoli Gong gongxiaoli@nankai.edu.cn Nankai University, China Tizen logical layers OSP(Open Services Platform, C++ APIs) Tizen physical partitions Storage partitions Tizen filesystems File

More information

Systemd. The giant monster that ate Linux

Systemd. The giant monster that ate Linux Systemd The giant monster that ate Linux SysV Init is comfy Dates back to AT&T System III from 1982 Modified up until AT&T Sys V in 1983 systemd is Easy Systemd Managing The System System Service Management

More information

GL-280: Red Hat Linux 7 Update. Course Description. Course Outline

GL-280: Red Hat Linux 7 Update. Course Description. Course Outline GL-280: Red Hat Linux 7 Update Course Description This is a differences course that focuses on the new technologies and features that made their appearance in Red Hat Enterprise Linux v7. It is intended

More information

1 LINUX KERNEL & DEVICES

1 LINUX KERNEL & DEVICES GL-250: Red Hat Linux Systems Administration Course Length: 5 days Course Description: The GL250 is an in-depth course that explores installation, configuration and maintenance of Linux systems. The course

More information

Pid Eins. systemd for Administrators, Part VII. Here's yet another installment of my ongoing series on systemd for Administrators:

Pid Eins. systemd for Administrators, Part VII. Here's yet another installment of my ongoing series on systemd for Administrators: Pid Eins レナート لينارت Google+ systemd PulseAudio Avahi Repositories Imprint POSTED ON DI 12 APRIL 2011 systemd for Administrators, Part VII Here's yet another installment of my ongoing series on systemd

More information

Enterprise Linux System Administration

Enterprise Linux System Administration Enterprise Linux System Administration Course GL250, 5 Days, Hands-On, Instructor-Led Introduction The GL250 is an in-depth course that explores installation, configuration and maintenance of Linux systems.

More information

systemd: What to Know and How to Transition

systemd: What to Know and How to Transition systemd: What to Know and How to Transition Tom Sorensen Solutions Architect, Red Hat 2 Agenda 4 What is systemd? What does systemd offer? How does this affect me? How do I transition to systemd? What

More information

"Charting the Course... Enterprise Linux System Administration. Course Summary

Charting the Course... Enterprise Linux System Administration. Course Summary Course Summary Description This is an in-depth course that explores installation, configuration and maintenance of Linux systems. The course focuses on issues universal to every workstation and server.

More information

Beyond Init: systemd

Beyond Init: systemd LinuxKongress 2010 lennart@poettering.net September 2010 Who Am I? Software Engineer at Red Hat, Inc. Developer of PulseAudio, Avahi and a few other Free Software projects http://0pointer.de/lennart/ lennart@poettering.net

More information

The Linux IPL Procedure

The Linux IPL Procedure The Linux IPL Procedure SHARE - Tampa February 13, 2007 Session 9274 Edmund MacKenty Rocket Software, Inc. Purpose De-mystify the Linux boot sequence Explain what happens each step of the way Describe

More information

Prerequisites: Students must be proficient in general computing skills but not necessarily experienced with Linux or Unix. Supported Distributions:

Prerequisites: Students must be proficient in general computing skills but not necessarily experienced with Linux or Unix. Supported Distributions: This GL124 course is designed to follow an identical set of topics as the Red Hat RH124 course with the added benefit of very comprehensive lab exercises and detailed lecture material. The Red Hat Enterprise

More information

"Charting the Course... Enterprise Linux System Administration Course Summary

Charting the Course... Enterprise Linux System Administration Course Summary Course Summary Description This is an in-depth course that explores installation, configuration and maintenance of Linux systems. The course focuses on issues universal to every workstation and server.

More information

RED HAT ENTERPRISE LINUX 7 BETA

RED HAT ENTERPRISE LINUX 7 BETA ENTERPRISE LINUX 7 BETA Michael Lessard, RHCA Senior Solutions Architect michaellessard March, 2014 1 Agenda 2 Red Hat Enterprise Linux 7 Key facts What s changed? Enhancements Summary Red Hat Enterprise

More information

"Charting the Course... RHCE Rapid Track Course. Course Summary

Charting the Course... RHCE Rapid Track Course. Course Summary Course Summary Description This course is carefully designed to match the topics found in the Red Hat RH299 exam prep course but also features the added benefit of an entire extra day of comprehensive

More information

Profiling and Improving the Duty-Cycling Performance of Linux-based IoT Devices

Profiling and Improving the Duty-Cycling Performance of Linux-based IoT Devices Journal of Ambient Intelligence and Humanized Computing, Springer, 219 1 Profiling and Improving the Duty-Cycling Performance of Linux-based IoT Devices Immanuel Amirtharaj, Tai Groot, and Behnam Dezfouli

More information

Exam LFCS/Course 55187B Linux System Administration

Exam LFCS/Course 55187B Linux System Administration Exam LFCS/Course 55187B Linux System Administration About this course This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional

More information

CompTIA Linux+/LPIC-1 COPYRIGHTED MATERIAL

CompTIA Linux+/LPIC-1 COPYRIGHTED MATERIAL CompTIA Linux+/LPIC-1 COPYRIGHTED MATERIAL Chapter System Architecture (Domain 101) THE FOLLOWING COMPTIA LINUX+/LPIC-1 EXAM OBJECTIVES ARE COVERED IN THIS CHAPTER: 101.1 Determine and Configure hardware

More information

Course 55187B Linux System Administration

Course 55187B Linux System Administration Course Outline Module 1: System Startup and Shutdown This module explains how to manage startup and shutdown processes in Linux. Understanding the Boot Sequence The Grand Unified Boot Loader GRUB Configuration

More information

LPI201 LPIC-2 Exam Prep (Course 1) (LPI201) HL965S

LPI201 LPIC-2 Exam Prep (Course 1) (LPI201) HL965S Course data sheet HPE course number Course length Delivery mode View schedule, local pricing, and register View related courses HL965S 4 days ILT,VILT View now View now LPI201 LPIC-2 Exam Prep (Course

More information

Control Center Planning Guide

Control Center Planning Guide Control Center Planning Guide Release 1.4.2 Zenoss, Inc. www.zenoss.com Control Center Planning Guide Copyright 2017 Zenoss, Inc. All rights reserved. Zenoss, Own IT, and the Zenoss logo are trademarks

More information

At course completion. Overview. Audience profile. Course Outline. : 55187B: Linux System Administration. Course Outline :: 55187B::

At course completion. Overview. Audience profile. Course Outline. : 55187B: Linux System Administration. Course Outline :: 55187B:: Module Title Duration : 55187B: Linux System Administration : 4 days Overview This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional

More information

Contents at a Glance COPYRIGHTED MATERIAL. Introduction...1 Part I: Becoming Familiar with Enterprise Linux...7

Contents at a Glance COPYRIGHTED MATERIAL. Introduction...1 Part I: Becoming Familiar with Enterprise Linux...7 Contents at a Glance Introduction...1 Part I: Becoming Familiar with Enterprise Linux...7 Chapter 1: Getting Acquainted with Enterprise Linux...9 Chapter 2: Exploring the Desktop...17 Chapter 3: Putting

More information

Red Hat System Administration I - RH124

Red Hat System Administration I - RH124 Course outline Red Hat System Administration I - RH124 Access the command line Log in to a Linux system and run simple commands using the shell. Manage files from the command line Copy, move, create, delete,

More information

exam.30q. Number: Passing Score: 800 Time Limit: 120 min File Version: 1 LPI

exam.30q. Number: Passing Score: 800 Time Limit: 120 min File Version: 1 LPI 201-450.exam.30q Number: 201-450 Passing Score: 800 Time Limit: 120 min File Version: 1 LPI 201-450 LPIC-2 Exam 201, Part 1 of 2, version 4.5 Exam D QUESTION 1 Which of the following commands creates a

More information

LPI Exam LPI Level 1 Exam 101, Junior Level Linux Certification, Part 1 of 2 Version: 6.0 [ Total Questions: 120 ]

LPI Exam LPI Level 1 Exam 101, Junior Level Linux Certification, Part 1 of 2 Version: 6.0 [ Total Questions: 120 ] s@lm@n LPI Exam 101-400 LPI Level 1 Exam 101, Junior Level Linux Certification, Part 1 of 2 Version: 6.0 [ Total Questions: 120 ] LPI 101-400 : Practice Test Topic break down Topic No. of Questions Topic

More information

Linux Administration

Linux Administration Linux Administration This course will cover all aspects of Linux Certification. At the end of the course delegates will have the skills required to administer a Linux System. It is designed for professionals

More information

Linux+ Guide to Linux Certification, Third Edition. Chapter 2 Linux Installation and Usage

Linux+ Guide to Linux Certification, Third Edition. Chapter 2 Linux Installation and Usage Linux+ Guide to Linux Certification, Third Edition Chapter 2 Linux Installation and Usage Objectives Install Red Hat Fedora Linux using good practices Outline the structure of the Linux interface Enter

More information

H7091S. Prerequisites

H7091S. Prerequisites Course data sheet Enterprise Linux System Administration (GL250) H7091S HPE course number Course length Delivery mode View schedule, local pricing, and register View related courses Why HPE Education Services?

More information

LPIC-1 Exam 101, Part 1 of 2, version 4.0

LPIC-1 Exam 101, Part 1 of 2, version 4.0 101-400 - LPIC-1 Exam 101, Part 1 of 2, version 4.0 1. Which of the following statements is correct when talking about /proc/? A. All changes to files in /proc/ are stored in /etc/proc.d/ and restored

More information

"Charting the Course... MOC B: Linux System Administration. Course Summary

Charting the Course... MOC B: Linux System Administration. Course Summary Description Course Summary This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional Linux system administrator. The course covers

More information

CompTIA Exam LX0-103 CompTIA Linux+ [Powered by LPI] Exam 1 Version: 6.0 [ Total Questions: 120 ]

CompTIA Exam LX0-103 CompTIA Linux+ [Powered by LPI] Exam 1 Version: 6.0 [ Total Questions: 120 ] s@lm@n CompTIA Exam LX0-103 CompTIA Linux+ [Powered by LPI] Exam 1 Version: 6.0 [ Total Questions: 120 ] CompTIA LX0-103 : Practice Test Topic break down Topic No. of Questions Topic 1: System Architecture

More information

OVERDRIVE Quick Start Guide. v.1.0

OVERDRIVE Quick Start Guide. v.1.0 OVERDRIVE 1000 Quick Start Guide v.1.0 TABLE OF CONTENTS 1. Introduction 3 2. Connections 3 3. Console Connection 4 3.1 Windows 4 3.2 Linux 5 3.3 Mac OS X 6 3.4 Power-up Procedure 6 3.5 Logging In 9 4.

More information

Part 1 : Getting Familiar with Linux. Hours. Part II : Administering Red Hat Enterprise Linux

Part 1 : Getting Familiar with Linux. Hours. Part II : Administering Red Hat Enterprise Linux Part 1 : Getting Familiar with Linux Chapter 1 : Getting started with Red Hat Enterprise Linux Chapter 2 Finding Your Way on the Command Line Hours Part II : Administering Red Hat Enterprise Linux Linux,

More information

Chapter 02 Linux Installation and Usage

Chapter 02 Linux Installation and Usage Chapter 02 Linux Installation and Usage TRUEFALSE 1. A swap partition contains a filesystem. 2. When a user interacts with his computer, he interacts directly with the kernel of the computer's operating

More information

Prerequisites: General computing knowledge and experience. No prior knowledge with Linux is required. Supported Distributions:

Prerequisites: General computing knowledge and experience. No prior knowledge with Linux is required. Supported Distributions: This course prepares students to take the 101 exam of the LPI level 1 certification. The Linux Professional Institute (LPI) is the go to certification body for vendor independent Linux certifications.

More information

HP-UX System Administration

HP-UX System Administration HP-UX System Administration This intensive course is designed for experienced UNIX administrators who like to understand the differences between HP-UX and standard UNIX. It is essential that students have

More information

Community Enterprise Operating System (CentOS 7) Courses

Community Enterprise Operating System (CentOS 7) Courses Community Enterprise Operating System (CentOS 7) Courses CentOS 7 Administration I Core Skills (5 days) Advanced Linux Shell Scripting Shell Scripting (bash,ksh93) and awk Programming (3 days) Advanced

More information

CSE 265: System and Network Administration

CSE 265: System and Network Administration CSE 265: System and Network Administration System startup and shutdown Bootstrapping Booting PCs Boot loaders Booting into single user mode Startup scripts Rebooting and shutting down Bootstrapping i.e.,

More information

CSE 265: System and Network Administration

CSE 265: System and Network Administration CSE 265: System and Network Administration System startup and shutdown Bootstrapping Booting PCs Boot loaders Booting into single user mode Startup scripts Rebooting and shutting down Bootstrapping i.e.,

More information

Linux for UNIX Administrators

Linux for UNIX Administrators A fast paced 5-day course that is a combination of "Enterprise Linux Systems Administration", and "Enterprise Linux Networking Services. Particular focus is given to translating Solaris and HP-UX skills

More information

Unit 2: Manage Files Graphically with Nautilus Objective: Manage files graphically and access remote systems with Nautilus

Unit 2: Manage Files Graphically with Nautilus Objective: Manage files graphically and access remote systems with Nautilus Linux system administrator-i Unit 1: Get Started with the GNOME Graphical Desktop Objective: Get started with GNOME and edit text files with gedit Unit 2: Manage Files Graphically with Nautilus Objective:

More information

LX0-103 Exam Questions Demo CompTIA. Exam Questions LX CompTIA Linux+ [Powered by LPI] 1

LX0-103 Exam Questions Demo   CompTIA. Exam Questions LX CompTIA Linux+ [Powered by LPI] 1 CompTIA Exam Questions LX0-103 CompTIA Linux+ [Powered by LPI] 1 Version:Demo 1.CORRECT TEXT Which file in the /proc filesystem lists parameters passed from the bootloader to the kernel? (Specify the file

More information

systemd: Converting sysvinit scripts

systemd: Converting sysvinit scripts systemd: Converting sysvinit scripts Welcome back for another installment of the systemd series. Throughout this series, we discuss ways to use systemd to understand and manage your system. This article

More information

SA2 v6 Linux System Administration II Net Configuration, Software, Troubleshooting

SA2 v6 Linux System Administration II Net Configuration, Software, Troubleshooting SA2 v6 Linux System Administration II Net Configuration, Software, Troubleshooting Synopsis: This is the second System Administration class, a follow-on class for new administrators with limited networking

More information

ENTERPRISE LINUX SYSTEM ADMINISTRATION

ENTERPRISE LINUX SYSTEM ADMINISTRATION ENTERPRISE LINUX SYSTEM ADMINISTRATION COURSE DESCRIPTION: The GL250 is an in-depth course that explores installation, configuration and maintenance of Linux systems. The course focuses on issues universal

More information

Control Center Planning Guide

Control Center Planning Guide Release 1.2.0 Zenoss, Inc. www.zenoss.com Copyright 2016 Zenoss, Inc. All rights reserved. Zenoss and the Zenoss logo are trademarks or registered trademarks of Zenoss, Inc., in the United States and other

More information

BOX-PC for BX-220 Series RedHat Enterprise Linux bit Operational Check Manual

BOX-PC for BX-220 Series RedHat Enterprise Linux bit Operational Check Manual IPC Series BOX-PC for BX-220 Series RedHat Enterprise Linux 7.3 64bit Operational Check Manual CONTEC CO., LTD. Copyright Copyright 2017 CONTEC CO., LTD. ALL RIGHTS RESERVED. No part of this document may

More information

Oracle Linux 7: System Administration Ed 2 Duration: 5 Days

Oracle Linux 7: System Administration Ed 2 Duration: 5 Days Oracle Linux 7: System Administration Ed 2 Duration: 5 Days The Oracle Linux 7: System Administration course covers a range of skills including installation, using the Unbreakable Enterprise Kernel, configuring

More information

Oracle Linux 5 & 6 Advanced Administration

Oracle Linux 5 & 6 Advanced Administration Oracle University Contact Us: +27 (0)11 319-4111 Oracle Linux 5 & 6 Advanced Administration Duration: 5 Days What you will learn This Oracle Linux Advanced Administration training is ideal for experienced

More information

Overview of the Cisco NCS Command-Line Interface

Overview of the Cisco NCS Command-Line Interface CHAPTER 1 Overview of the Cisco NCS -Line Interface This chapter provides an overview of how to access the Cisco Prime Network Control System (NCS) command-line interface (CLI), the different command modes,

More information

SysadminSG RHCSA Study Guide

SysadminSG RHCSA Study Guide SysadminSG RHCSA Study Guide This is the RHCSA Study Guide for the System Administration Study Group. The study guide is intended to be printed by those who wish to study common tasks performed by many

More information

Initialization: runlevels

Initialization: runlevels Initialization: init The init process is always the first started (has a PID of 1) and will remain running until the system is shut down With init running, the kernel moves to the background awaiting system

More information

SA3 E7 Advanced Linux System Administration III Internet Network Services and Security

SA3 E7 Advanced Linux System Administration III Internet Network Services and Security SA3 E7 Advanced Linux System Administration III Internet Network Services and Security Synopsis: This is a fast paced, level 3, advanced class for experienced administrators of Linux based hosts on a network

More information

DM-Multipath Guide. Version 8.2

DM-Multipath Guide. Version 8.2 DM-Multipath Guide Version 8.2 SBAdmin and DM-Multipath Guide The purpose of this guide is to provide the steps necessary to use SBAdmin in an environment where SAN storage is used in conjunction with

More information

CompTIA Linux Course Overview. Prerequisites/Audience. Course Outline. Exam Code: XK0-002 Course Length: 5 Days

CompTIA Linux Course Overview. Prerequisites/Audience. Course Outline. Exam Code: XK0-002 Course Length: 5 Days CompTIA Linux+ 2009 Exam Code: XK0-002 Course Length: 5 Days Course Overview This instructor-led course will prepare students for the 2009 CompTIA Linux+ certification exam. It provides a comprehensive

More information

Certification. System Initialization and Services

Certification. System Initialization and Services Certification System Initialization and Services UNIT 3 System Initialization and Services UNIT 3: Objectives Upon completion of this unit the student should be able to: Describe BIOS functions with respect

More information

University of Pennsylvania Zachary Goldberg. CIS c. More Kernel Bits. 10/03/09 Slide 1

University of Pennsylvania Zachary Goldberg. CIS c. More Kernel Bits. 10/03/09 Slide 1 More Kernel Bits 10/03/09 Slide 1 Rebooting Why would one ever need to reboot on Linux? Installing new driver?... (No) Installing new applications?... (No) Installing new... Anything?... (No) Reconfiguring...

More information

UNIX System Administration

UNIX System Administration $!... 14:13 $$... 14:13.netrc...12:27-28 /etc/fstab... 6:25 /etc/hosts.equiv... 8:23 /etc/inittab Entries... 4:8 /etc/netmasks... 8:22 /etc/shells... 12:25 /home... 6:69 /tmp...6:61-67 /usr... 6:70 /var...

More information

RHCSA Rapid Track Course (RH199)

RHCSA Rapid Track Course (RH199) RHCSA Rapid Track Course (RH199) DESCRIPTION: Course overview On completion of course materials, students should be prepared to take the Red Hat Certified System Administrator (RHCSA) exam. Note: This

More information

CompTIA Linux+ Guide to Linux Certification Fourth Edition. Chapter 2 Linux Installation and Usage

CompTIA Linux+ Guide to Linux Certification Fourth Edition. Chapter 2 Linux Installation and Usage CompTIA Linux+ Guide to Linux Certification Fourth Edition Chapter 2 Linux Installation and Usage Objectives Prepare for and install Fedora Linux using good practices Outline the structure of the Linux

More information

Oracle Linux 5 & 6 Advanced Administration

Oracle Linux 5 & 6 Advanced Administration Oracle Uni Contact Us: 08 Oracle Linux 5 & 6 Advanced Administration Durat5 Da What you will learn This Oracle Linux Advanced Administration training is learn more about advanced features of Oracle Linux.

More information

CIS 191A Final Exam. Fall CIS 191 Final Exam

CIS 191A Final Exam. Fall CIS 191 Final Exam CIS 191A Final Exam Fall 2008 CIS 191 Final Exam The final for CIS 191A is composed several parts: A. (10 points) Questions B. (5 points) Checklist C. (10 points) Troubleshooting D. (35 points) Building

More information

systemd, the modern Linux service and resource manager

systemd, the modern Linux service and resource manager systemd, the modern Linux service and resource manager Alison Chaiken Sept. 8, 2015 mentor.com/automo tive Android is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.

More information

Oracle Linux 7: System Administration Ed 2 NE

Oracle Linux 7: System Administration Ed 2 NE Oracle Uni Contact Us: 08 Oracle Linux 7: System Administration Ed 2 NE Durat5 Da What you will learn The Oracle Linux 7: System Administration course cover Unbreakable Enterprise Kernel, configuring Linux

More information

Installation of the OS

Installation of the OS Lab 1 Installation of the OS 1.1 Objectives The goal of this first session is to install a Debian/Linux operating system from scratch on a Intel x86- based computer. The installation will be made on a

More information

Certified Ubuntu Professional VS-1140

Certified Ubuntu Professional VS-1140 VS-1140 Certification Code VS-1140 Vskills certification for Ubuntu Professional assesses the candidate as per the company s need for managing Ubuntu Linux server. The certification tests the candidates

More information

Oracle Linux 7: Advanced Administration Ed 1

Oracle Linux 7: Advanced Administration Ed 1 Oracle University Contact Us: +33 15 7602 081 Oracle Linux 7: Advanced Administration Ed 1 Duration: 5 Days What you will learn This Oracle Linux 7: Advanced Administration training is ideal for experienced

More information

RedHat Certified Engineer

RedHat Certified Engineer RedHat Certified Engineer Red Hat Certified Engineer (RHCE) is a performance-based test that measures actual competency on live systems. Called the "crown jewel of Linux certifications," RHCE proves an

More information

How to Use This Lab Manual

How to Use This Lab Manual 3 Contents How to Use This Lab Manual........................................ 5 Lab 1: Setting Up the Student System.................................. 7 Lab 2: Installing Fedora............................................

More information

HP-UX System Administration Course Overview. Skills Gained. Who will the Course Benefit?

HP-UX System Administration Course Overview. Skills Gained. Who will the Course Benefit? HP-UX System Administration Course Overview This Hewlett Packard HP-UX System Administration training course is designed to give delegates practical experience in the administration of an HP-UX UNIX System.

More information

Red Hat Certified System Administrator (RHCSA) RHCSA 7 Requirements and Syllabus

Red Hat Certified System Administrator (RHCSA) RHCSA 7 Requirements and Syllabus Red Hat Certified System Administrator (RHCSA) RHCSA 7 Requirements and Syllabus In preparation to earn the Red Hat Certified System Administrator (RHCSA), Red Hat recommends the following: For System

More information

Oracle Linux 7: System Administration Ed 1

Oracle Linux 7: System Administration Ed 1 Oracle University Contact Us: +603 2299 3600, 1 800 80 6277 Oracle Linux 7: System Administration Ed 1 Duration: 5 Days What you will learn The Oracle Linux 7: System Administration training helps you

More information

runit and ignite: a suckless init system? Christian Neukirchen slcon jun2013

runit and ignite: a suckless init system? Christian Neukirchen slcon jun2013 runit and ignite: a suckless init system? Christian Neukirchen chneukirchen@gmail.com slcon 2013 22jun2013 1 Motivation Since mid-2012, there has been a strong drive by many Linux distributions towards

More information

What this Guide Covers. Additional Info. 1. Linux based Servers. 2. Windows Servers. 3. GoldLite and Virtual Servers. 4. Other servers. 5.

What this Guide Covers. Additional Info. 1. Linux based Servers. 2. Windows Servers. 3. GoldLite and Virtual Servers. 4. Other servers. 5. This guide is designed to assist in shutting down the Gold Servers ensuring a clean reboot of the systems. This should be done by the System Administrators with all users logged off the system and any

More information

ovirt Node November 1, 2011 Mike Burns Alan Pevec Perry Myers ovirt Node 1

ovirt Node November 1, 2011 Mike Burns Alan Pevec Perry Myers ovirt Node 1 ovirt Node November 1, 2011 Mike Burns Alan Pevec Perry Myers ovirt Node 1 Agenda Introduction Architecture Overview Deployment Modes Installation and Configuration Upgrading Configuration Persistence

More information

Herding Clones. Mike Kershaw August 17, urmk/

Herding Clones. Mike Kershaw August 17, urmk/ Herding Clones Mike Kershaw Michael.Kershaw@marist.edu August 17, 2004 1 Why? Computer Science department wanted to offer students their own servers for classwork which would be available for the entire

More information

Fedora 12 Essentials

Fedora 12 Essentials Fedora 12 Essentials 2 Fedora 12 Essentials First Edition 2010 Payload Media. This ebook is provided for personal use only. Unauthorized use, reproduction and/or distribution strictly prohibited. All rights

More information

The kernel constitutes the core part of the Linux operating system. Kernel duties:

The kernel constitutes the core part of the Linux operating system. Kernel duties: The Linux Kernel The kernel constitutes the core part of the Linux operating system. Kernel duties: System initialization: detects hardware resources and boots up the system. Process scheduling: determines

More information

Oracle Linux 7: System Administration Ed 1

Oracle Linux 7: System Administration Ed 1 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Linux 7: System Administration Ed 1 Duration: 5 Days What you will learn The Oracle Linux 7: System Administration training

More information

Oracle Linux 7: System Administration Ed 1 LVC

Oracle Linux 7: System Administration Ed 1 LVC Oracle University Contact Us: +27 (0)11 319-4111 Oracle Linux 7: System Administration Ed 1 LVC Duration: 5 Days What you will learn The Oracle Linux 7: System Administration training helps you develop

More information

Linux Bible. Negus, C. Table of Contents ISBN-13: Part I: Getting Started 1 Chapter 1: Starting with Linux 3

Linux Bible. Negus, C. Table of Contents ISBN-13: Part I: Getting Started 1 Chapter 1: Starting with Linux 3 Linux Bible Negus, C ISBN-13: 9781118218549 Table of Contents Introduction xxxiii Part I: Getting Started 1 Chapter 1: Starting with Linux 3 Understanding What Linux Is 4 Understanding How Linux Differs

More information

Zenoss Resource Manager Planning Guide

Zenoss Resource Manager Planning Guide Zenoss Resource Manager Planning Guide Release 6.2.0 Zenoss, Inc. www.zenoss.com Zenoss Resource Manager Planning Guide Copyright 2018 Zenoss, Inc. All rights reserved. Zenoss, Own IT, and the Zenoss logo

More information

Linux+ Guide to Linux Certification, Third Edition

Linux+ Guide to Linux Certification, Third Edition Linux+ Guide to Linux Certification, Third Edition Chapter 14 Troubleshooting, Performance, and Security Objectives Describe and outline good troubleshooting practices Effectively troubleshoot common hardware-

More information

The table below lists the domains measured by this examination and the extent to which they are represented in the examination.

The table below lists the domains measured by this examination and the extent to which they are represented in the examination. Introduction The Linux+ Certification is designed to measure the competencies of the Linux Professional with six to twelve months experience with the Linux operating system. This person provides basic

More information

RHEL 5 Essentials. Red Hat Enterprise Linux 5 Essentials

RHEL 5 Essentials. Red Hat Enterprise Linux 5 Essentials Red Hat Enterprise Linux 5 Essentials 2 Red Hat Enterprise Linux 5 Essentials First Edition 2010 Payload Media. This ebook is provided for personal use only. Unauthorized use, reproduction and/or distribution

More information

DRIVER PERSISTENCE. vr384 October Driver Persistence

DRIVER PERSISTENCE. vr384 October Driver Persistence DRIVER PERSISTENCE vr384 October 2017 TABLE OF CONTENTS Chapter 1. Overview... 1 1.1. Windows... 1 1.2. Linux... 2 Chapter 2. Data Persistence... 3 2.1. GPU Initialization Lifecycle... 3 2.2. Kernel Driver

More information

Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7

Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7 Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7 Disclaimer: I haven t gone through RHCSA/RHCE EL 7. I am preparing for upgrade of my RHCE certificate from RHCE EL4 to RHCE EL7. I don

More information

Oracle 1Z Enterprise Linux System Administration. Download Full Version :

Oracle 1Z Enterprise Linux System Administration. Download Full Version : Oracle 1Z0-403 Enterprise Linux System Administration Download Full Version : http://killexams.com/pass4sure/exam-detail/1z0-403 B. It does not provide any protection to remote X connections. C. It allows

More information

1Z Oracle Linux 5 and 6 System Administration Exam Summary Syllabus Questions

1Z Oracle Linux 5 and 6 System Administration Exam Summary Syllabus Questions 1Z0-100 Oracle Linux 5 and 6 System Administration Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-100 Exam on Oracle Linux 5 and 6 System Administration2 Oracle 1Z0-100 Certification

More information

UNIT V. Dr.T.Logeswari. Unix Shell Programming - Forouzan

UNIT V. Dr.T.Logeswari. Unix Shell Programming - Forouzan UNIT V UNIX SYSTEM COMMUNICATION Dr.T.Logeswari 1 Electronic mail or email is easiest way of communication on unix. Fast and cheap Used to exchange graphics, sound and video files 2 3 Elements of a communication

More information

ovirt Node June 9, 2012 Mike Burns ovirt Node 1

ovirt Node June 9, 2012 Mike Burns ovirt Node 1 ovirt Node June 9, 2012 Mike Burns ovirt Node 1 Agenda Introduction Architecture Overview Deployment Modes Installation and Configuration Upgrading Configuration Persistence Future Features Discussion

More information

System control mechanisms

System control mechanisms System control mechanisms David Morgan System control - boot and after passing kernel boot parameters sysconfig: boot process control /proc and sysctrl: tuning kernel config others controlling default

More information

Oracle Linux 7: Advanced Administration Ed 1 LVC

Oracle Linux 7: Advanced Administration Ed 1 LVC Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Linux 7: Advanced Administration Ed 1 LVC Duration: 5 Days What you will learn This Oracle Linux 7: Advanced Administration

More information

Chapter 13: I/O Systems

Chapter 13: I/O Systems Chapter 13: I/O Systems Silberschatz, Galvin and Gagne 2013! Chapter 13: I/O Systems I/O Hardware" Application I/O Interface" Kernel I/O Subsystem" Transforming I/O Requests to Hardware Operations" STREAMS"

More information

LPIC-l/CompTIA. Certification. Lmux+ ONE. ALL a IN. (Exams LPIC-1/LX0-101 & LXO-102) Robb H. Tracy EXAM GUIDE. Graw Hill

LPIC-l/CompTIA. Certification. Lmux+ ONE. ALL a IN. (Exams LPIC-1/LX0-101 & LXO-102) Robb H. Tracy EXAM GUIDE. Graw Hill ALL a IN ONE LPIC-l/CompTIA t Lmux+ TM Certification EXAM GUIDE (Exams LPIC-1/LX0-101 & LXO-102) Robb H. Tracy TECHNISCHE INFORMATIONSBiBLIOTHEK UNIVER! ivjc Graw Hill BIBUOTHEK VER New York Chicago San

More information

Oracle Linux System AdministrationNEW

Oracle Linux System AdministrationNEW Oracle University Contact Us: 1.800.529.0165 Oracle Linux System AdministrationNEW Duration: 5 Days What you will learn The Oracle Linux System Administration course covers a range of skills including

More information

Oracle Linux 5 & 6 System Administration TOD

Oracle Linux 5 & 6 System Administration TOD Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Linux 5 & 6 System Administration TOD Duration: 5 Days What you will learn The Oracle Linux System Administration course

More information