You are not logged in.

#1 2014-05-28 21:47:39

lnxsurf
Member
Registered: 2014-05-28
Posts: 75

[SOLVED] Cannot connect to my WIFI

Hello guys,
I need your help to fix my issue with WLAN. I cannot connect to my WIFI. It is trying to connect but then I receive the message that the connection is deactivated. Here is my output of

systemctl --type=service

. Maybe you can see some conflicts:

  UNIT                                  LOAD   ACTIVE SUB     DESCRIPTION
  acpid.service                         loaded active running ACPI event daemon
  avahi-daemon.service                  loaded active running Avahi mDNS/DNS-SD Stack
  bumblebeed.service                    loaded active running Bumblebee C Daemon
  cronie.service                        loaded active running Periodic Command Scheduler
  cups.service                          loaded active running CUPS Printing Service
  dbus.service                          loaded active running D-Bus System Message Bus
  getty@tty1.service                    loaded active running Getty on tty1
  kdm.service                           loaded active running K Display Manager
  kmod-static-nodes.service             loaded active exited  Create list of required static device
  NetworkManager.service                loaded active running Network Manager
  ntpd.service                          loaded active running Network Time Service
  polkit.service                        loaded active running Authorization Manager
  systemd-backlight@backlight:acpi_video0.service loaded active exited  Load/Save Screen Backlight 
  systemd-backlight@backlight:intel_backlight.service loaded active exited  Load/Save Screen Backli
  systemd-journald.service              loaded active running Journal Service
  systemd-logind.service                loaded active running Login Service
  systemd-random-seed.service           loaded active exited  Load/Save Random Seed
  systemd-remount-fs.service            loaded active exited  Remount Root and Kernel File Systems
  systemd-rfkill@rfkill0.service        loaded active exited  Load/Save RF Kill Switch Status of rf
  systemd-rfkill@rfkill1.service        loaded active exited  Load/Save RF Kill Switch Status of rf
  systemd-rfkill@rfkill2.service        loaded active exited  Load/Save RF Kill Switch Status of rf
● systemd-rfkill@rfkill3.service        loaded failed failed  Load/Save RF Kill Switch Status of rf
  systemd-sysctl.service                loaded active exited  Apply Kernel Variables
  systemd-tmpfiles-setup-dev.service    loaded active exited  Create Static Device Nodes in /dev
  systemd-tmpfiles-setup.service        loaded active exited  Create Volatile Files and Directories
  systemd-udev-trigger.service          loaded active exited  udev Coldplug all Devices
  systemd-udevd.service                 loaded active running udev Kernel Device Manager
  systemd-update-utmp.service           loaded active exited  Update UTMP about System Boot/Shutdow
  systemd-user-sessions.service         loaded active exited  Permit User Sessions
  systemd-vconsole-setup.service        loaded active exited  Setup Virtual Console
  udisks2.service                       loaded active running Disk Manager
  upower.service                        loaded active running Daemon for power management
  user@1000.service                     loaded active running User Manager for UID 1000
  wpa_supplicant.service                loaded active running WPA supplicant

LOAD   = Reflects whether the unit definition was properly loaded.
ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
SUB    = The low-level unit activation state, values depend on unit type.

34 loaded units listed. Pass --all to see loaded but inactive units, too.
To show all installed unit files use 'systemctl list-unit-files'.

Last edited by lnxsurf (2016-11-13 13:35:05)

Offline

#2 2014-05-28 21:52:39

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 30,335
Website

Re: [SOLVED] Cannot connect to my WIFI

Welcome to the forums.  Could you please click 'edit' on your post and replace the [ quote ] tags with [ code ] tags - this will fix the alignment of the output and make it easier to read.

It seems both networkmanager and wpa_supplicant are running - these would conflict.  Which one do you intend to use?  Pick one connection method and deactivate any others.

EDIT: I'm also not sure why there are all those rfkill services - but this isn't likely contributing to the immediate issue.

Last edited by Trilby (2014-05-28 21:53:47)


"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman

Offline

#3 2014-05-28 22:06:59

lnxsurf
Member
Registered: 2014-05-28
Posts: 75

Re: [SOLVED] Cannot connect to my WIFI

Hello,
now edited it...
Well can I deactivate the service? I tried

systemctl stop wpa_supplicant.service

. This did not stop the service...

Offline

#4 2014-05-28 22:14:33

Head_on_a_Stick
Member
From: The Wirral
Registered: 2014-02-20
Posts: 8,796
Website

Re: [SOLVED] Cannot connect to my WIFI

# systemctl disable wpa_supplicant.service
man sytemctl wrote:

       disable NAME...
           Disables one or more units. This removes all symlinks to the specified unit files from the unit configuration directory, and hence undoes the
           changes made by enable. Note however that this removes all symlinks to the unit files (i.e. including manual additions), not just those actually
           created by enable. This call implicitly reloads the systemd daemon configuration after completing the disabling of the units. Note that this
           command does not implicitly stop the units that are being disabled. If this is desired, an additional stop command should be executed
           afterwards.


Jin, Jîyan, Azadî

Offline

#5 2014-05-28 22:27:38

lnxsurf
Member
Registered: 2014-05-28
Posts: 75

Re: [SOLVED] Cannot connect to my WIFI

Something is going wrong here. I disabled the service wpa_supplicant.service with this command:

# systemctl disable wpa_supplicant.service

Then I restarted my system but the service is still loaded and running...

EDIT: It seems that the NetworkManager depends on the wpa_supplicant...

Last edited by lnxsurf (2014-05-28 22:49:04)

Offline

#6 2014-05-29 02:21:03

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,354

Re: [SOLVED] Cannot connect to my WIFI

I believe that is true.  wpa_supplicant is started by NetworkManager.  Is the service started, or just the daemon ?


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way

Offline

#7 2014-05-29 10:11:05

lnxsurf
Member
Registered: 2014-05-28
Posts: 75

Re: [SOLVED] Cannot connect to my WIFI

So I don't know how to check that is a daemon or service started. When I stop the NetworkManager the wpa_supplicant is also stopped. My recent version of networkmanager is 0.9.8.10-1. Maybe I updated to an unstable version?

Offline

#8 2014-05-29 10:42:05

heyom
Member
Registered: 2013-12-03
Posts: 43

Re: [SOLVED] Cannot connect to my WIFI

lnxsurf wrote:

Hello guys,
I need your help to fix my issue with WLAN. I cannot connect to my WIFI. It is trying to connect but then I receive the message that the connection is deactivated. Here is my output of

systemctl --type=service

. Maybe you can see some conflicts:

  UNIT                                  LOAD   ACTIVE SUB     DESCRIPTION
  acpid.service                         loaded active running ACPI event daemon
  avahi-daemon.service                  loaded active running Avahi mDNS/DNS-SD Stack
  bumblebeed.service                    loaded active running Bumblebee C Daemon
  cronie.service                        loaded active running Periodic Command Scheduler
  cups.service                          loaded active running CUPS Printing Service
  dbus.service                          loaded active running D-Bus System Message Bus
  getty@tty1.service                    loaded active running Getty on tty1
  kdm.service                           loaded active running K Display Manager
  kmod-static-nodes.service             loaded active exited  Create list of required static device
  NetworkManager.service                loaded active running Network Manager
  ntpd.service                          loaded active running Network Time Service
  polkit.service                        loaded active running Authorization Manager
  systemd-backlight@backlight:acpi_video0.service loaded active exited  Load/Save Screen Backlight 
  systemd-backlight@backlight:intel_backlight.service loaded active exited  Load/Save Screen Backli
  systemd-journald.service              loaded active running Journal Service
  systemd-logind.service                loaded active running Login Service
  systemd-random-seed.service           loaded active exited  Load/Save Random Seed
  systemd-remount-fs.service            loaded active exited  Remount Root and Kernel File Systems
  systemd-rfkill@rfkill0.service        loaded active exited  Load/Save RF Kill Switch Status of rf
  systemd-rfkill@rfkill1.service        loaded active exited  Load/Save RF Kill Switch Status of rf
  systemd-rfkill@rfkill2.service        loaded active exited  Load/Save RF Kill Switch Status of rf
● systemd-rfkill@rfkill3.service        loaded failed failed  Load/Save RF Kill Switch Status of rf
  systemd-sysctl.service                loaded active exited  Apply Kernel Variables
  systemd-tmpfiles-setup-dev.service    loaded active exited  Create Static Device Nodes in /dev
  systemd-tmpfiles-setup.service        loaded active exited  Create Volatile Files and Directories
  systemd-udev-trigger.service          loaded active exited  udev Coldplug all Devices
  systemd-udevd.service                 loaded active running udev Kernel Device Manager
  systemd-update-utmp.service           loaded active exited  Update UTMP about System Boot/Shutdow
  systemd-user-sessions.service         loaded active exited  Permit User Sessions
  systemd-vconsole-setup.service        loaded active exited  Setup Virtual Console
  udisks2.service                       loaded active running Disk Manager
  upower.service                        loaded active running Daemon for power management
  user@1000.service                     loaded active running User Manager for UID 1000
  wpa_supplicant.service                loaded active running WPA supplicant

LOAD   = Reflects whether the unit definition was properly loaded.
ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
SUB    = The low-level unit activation state, values depend on unit type.

34 loaded units listed. Pass --all to see loaded but inactive units, too.
To show all installed unit files use 'systemctl list-unit-files'.

Do you have any issues when you're using wired connection? because I have more or less the same problem that you're experiencing.

Offline

#9 2014-05-29 10:45:49

lnxsurf
Member
Registered: 2014-05-28
Posts: 75

Re: [SOLVED] Cannot connect to my WIFI

I have now the problem that I cannot connect to any WIFI... I thought it was especially for the hidden WIFI but no! Now I see that upgraded the package on tuesday. I don't know how to downgrade the networkmanager.
EDIT: I downgraded the networkmanager but it did not help.

Last edited by lnxsurf (2014-05-29 11:08:37)

Offline

#10 2014-05-29 14:48:19

lnxsurf
Member
Registered: 2014-05-28
Posts: 75

Re: [SOLVED] Cannot connect to my WIFI

Here some more informations:

# cat /usr/lib/systemd/system/wpa_supplicant.service
[Unit]                                                                                             
Description=WPA supplicant                                                                         
                                                                                                   
[Service]
Type=dbus
BusName=fi.epitest.hostap.WPASupplicant
ExecStart=/usr/bin/wpa_supplicant -u

[Install]
WantedBy=multi-user.target
Alias=dbus-fi.epitest.hostap.WPASupplicant.service

Under /sbin there is also wpa_supplicant.

EDIT: How to find out that only the daemon or the service is started?

Last edited by lnxsurf (2014-05-29 14:54:39)

Offline

#11 2014-05-29 18:27:44

Head_on_a_Stick
Member
From: The Wirral
Registered: 2014-02-20
Posts: 8,796
Website

Re: [SOLVED] Cannot connect to my WIFI

Try running

systemctl status

This will show you a "tree" of the processes running --- is wpa_supplicant a "branch" of the Network Manager service?


Jin, Jîyan, Azadî

Offline

#12 2014-05-29 20:27:29

lnxsurf
Member
Registered: 2014-05-28
Posts: 75

Re: [SOLVED] Cannot connect to my WIFI

Hello,
As you will see wpa_supplicant is not a branch of the NetworkManager.service. It is a branch of System.slice. So I see it multiple times as NetworkManager.
Here is the tree...

● coco-lap
    State: running
     Jobs: 0 queued
   Failed: 0 units
    Since: Do 2014-05-29 16:55:58 CEST; 5h 20min ago
   CGroup: /
           ├─1 /sbin/init
           ├─system.slice
           │ ├─cups.service
           │ │ └─1100 /usr/bin/cupsd -f
           │ ├─udisks2.service
           │ │ └─904 /usr/lib/udisks2/udisksd --no-debug
           │ ├─upower.service
           │ │ └─880 /usr/lib/upower/upowerd
           │ ├─ntpd.service
           │ │ └─793 /usr/bin/ntpd -g -u ntp:ntp -p /run/ntpd.pid
           │ ├─kdm.service
           │ │ ├─779 /usr/bin/kdm -nodaemon
           │ │ └─784 /usr/bin/X -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:
           │ ├─polkit.service
           │ │ └─774 /usr/lib/polkit-1/polkitd --no-debug
           │ ├─bumblebeed.service
           │ │ └─770 /usr/bin/bumblebeed
           │ ├─dbus.service
           │ │ └─603 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --system
           │ ├─systemd-logind.service
           │ │ └─602 /usr/lib/systemd/systemd-logind                                               
           │ ├─avahi-daemon.service                                                                
           │ │ ├─601 avahi-daemon: running [coco-lap.local                                         
           │ │ └─610 avahi-daemon: chroot helpe                                                    
           │ ├─cronie.service                                                                      
           │ │ └─600 /usr/bin/crond -n                                                             
           │ ├─wpa_supplicant.service                                                              
           │ │ └─599 /usr/bin/wpa_supplicant -u
           │ ├─acpid.service
           │ │ └─598 /usr/bin/acpid -f
           │ ├─NetworkManager.service
           │ │ ├─ 597 /usr/bin/NetworkManager --no-daemon
           │ │ └─4264 /usr/bin/dhcpcd -B -K -L -G -c /usr/lib/networkmanager/nm-dhcp-client.action 
           │ ├─systemd-udevd.service
           │ │ └─160 /usr/lib/systemd/systemd-udevd
           │ ├─systemd-journald.service
           │ │ └─152 /usr/lib/systemd/systemd-journald
           │ └─system-getty.slice
           │   └─getty@tty1.service
           │     └─778 /sbin/agetty --noclear tty1 linux
           └─user.slice
             └─user-1000.slice
               ├─session-c1.scope
               │ ├─ 801 -:0                   
               │ ├─ 816 /bin/sh /usr/bin/startkde
               │ ├─ 825 dbus-launch --sh-syntax --exit-with-session
               │ ├─ 826 /usr/bin/dbus-daemon --fork --print-pid 4 --print-address 6 --session
               │ ├─ 849 /usr/bin/gpg-agent -s --daemon --pinentry-program /usr/bin/pinentry-qt4 --w
               │ ├─ 863 /usr/lib/kde4/libexec/start_kdeinit +kcminit_startup
               │ ├─ 864 kdeinit4: kdeinit4 Running...                  
               │ ├─ 865 kdeinit4: klauncher [kdeinit] --fd=9           
               │ ├─ 867 kdeinit4: kded4 [kdeinit]                      
               │ ├─ 874 kdeinit4: kglobalaccel [kdeinit]               
               │ ├─ 879 /usr/bin/kactivitymanagerd
● coco-lap
    State: running
     Jobs: 0 queued
   Failed: 0 units
    Since: Do 2014-05-29 16:55:58 CEST; 5h 20min ago
   CGroup: /
           ├─1 /sbin/init
           ├─system.slice
           │ ├─cups.service
           │ │ └─1100 /usr/bin/cupsd -f
● coco-lap
    State: running
     Jobs: 0 queued
   Failed: 0 units
    Since: Do 2014-05-29 16:55:58 CEST; 5h 20min ago
   CGroup: /
           ├─1 /sbin/init
           ├─system.slice
           │ ├─cups.service
           │ │ └─1100 /usr/bin/cupsd -f
           │ ├─udisks2.service
           │ │ └─904 /usr/lib/udisks2/udisksd --no-debug
           │ ├─upower.service
           │ │ └─880 /usr/lib/upower/upowerd
           │ ├─ntpd.service
           │ │ └─793 /usr/bin/ntpd -g -u ntp:ntp -p /run/ntpd.pid
           │ ├─kdm.service
           │ │ ├─779 /usr/bin/kdm -nodaemon
           │ │ └─784 /usr/bin/X -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:
           │ ├─polkit.service
           │ │ └─774 /usr/lib/polkit-1/polkitd --no-debug
           │ ├─bumblebeed.service
           │ │ └─770 /usr/bin/bumblebeed
           │ ├─dbus.service
           │ │ └─603 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --system
           │ ├─systemd-logind.service
           │ │ └─602 /usr/lib/systemd/systemd-logind
           │ ├─avahi-daemon.service
           │ │ ├─601 avahi-daemon: running [coco-lap.local
           │ │ └─610 avahi-daemon: chroot helpe
           │ ├─cronie.service
           │ │ └─600 /usr/bin/crond -n
           │ ├─wpa_supplicant.service
           │ │ └─599 /usr/bin/wpa_supplicant -u
           │ ├─acpid.service
           │ │ └─598 /usr/bin/acpid -f
           │ ├─NetworkManager.service
           │ │ ├─ 597 /usr/bin/NetworkManager --no-daemon
           │ │ └─4264 /usr/bin/dhcpcd -B -K -L -G -c /usr/lib/networkmanager/nm-dhcp-client.action 
           │ ├─systemd-udevd.service
           │ │ └─160 /usr/lib/systemd/systemd-udevd
           │ ├─systemd-journald.service
           │ │ └─152 /usr/lib/systemd/systemd-journald
           │ └─system-getty.slice
           │   └─getty@tty1.service
           │     └─778 /sbin/agetty --noclear tty1 linux
           └─user.slice
             └─user-1000.slice
               ├─session-c1.scope
               │ ├─ 801 -:0                   
               │ ├─ 816 /bin/sh /usr/bin/startkde
               │ ├─ 825 dbus-launch --sh-syntax --exit-with-session
               │ ├─ 826 /usr/bin/dbus-daemon --fork --print-pid 4 --print-address 6 --session
               │ ├─ 849 /usr/bin/gpg-agent -s --daemon --pinentry-program /usr/bin/pinentry-qt4 --w
               │ ├─ 863 /usr/lib/kde4/libexec/start_kdeinit +kcminit_startup
               │ ├─ 864 kdeinit4: kdeinit4 Running...                  
               │ ├─ 865 kdeinit4: klauncher [kdeinit] --fd=9           
               │ ├─ 867 kdeinit4: kded4 [kdeinit]                      
               │ ├─ 874 kdeinit4: kglobalaccel [kdeinit]               
               │ ├─ 879 /usr/bin/kactivitymanagerd
               │ ├─ 898 kwrapper4 ksmserver
               │ ├─ 900 kdeinit4: ksmserver [kdeinit]                  
               │ ├─ 916 kwin -session 1090dbc4df000138592065300000010620000_1401375338_484081
               │ ├─ 922 kdeinit4: krunner [kdeinit]                    
               │ ├─ 924 kdeinit4: plasma-desktop [kdeinit]             
               │ ├─ 929 /usr/bin/akonadi_control
               │ ├─ 932 akonadiserver
               │ ├─ 934 /usr/bin/mysqld --defaults-file=/home/dejo/.local/share/akonadi/mysql.conf 
               │ ├─ 958 /usr/bin/baloo_file
               │ ├─ 968 /usr/bin/kuiserver
               │ ├─ 981 /usr/bin/akonadi_agent_launcher akonadi_akonotes_resource akonadi_akonotes_
               │ ├─ 983 /usr/bin/akonadi_archivemail_agent --identifier akonadi_archivemail_agent
               │ ├─ 984 /usr/bin/akonadi_baloo_indexer --identifier akonadi_baloo_indexer
               │ ├─ 987 /usr/bin/akonadi_agent_launcher akonadi_contacts_resource akonadi_contacts_
               │ ├─ 988 /usr/bin/akonadi_agent_launcher akonadi_ical_resource akonadi_ical_resource
               │ ├─ 989 /usr/bin/akonadi_agent_launcher akonadi_maildir_resource akonadi_maildir_re
               │ ├─ 990 /usr/bin/akonadi_maildispatcher_agent --identifier akonadi_maildispatcher_a
               │ ├─ 997 /usr/bin/akonadi_mailfilter_agent --identifier akonadi_mailfilter_agent
               │ ├─ 998 /usr/bin/akonadi_migration_agent --identifier akonadi_migration_agent
               │ ├─1006 /usr/bin/akonadi_newmailnotifier_agent --identifier akonadi_newmailnotifier
               │ ├─1007 /usr/bin/akonadi_notes_agent --identifier akonadi_notes_agent
               │ ├─1008 /usr/bin/akonadi_sendlater_agent --identifier akonadi_sendlater_agent
               │ ├─1023 /bin/cat
               │ ├─1033 /bin/cat
               │ ├─1038 /bin/cat
               │ ├─1051 /bin/cat
               │ ├─1060 kdeinit4: kmix [kdeinit] -session 1090dbc4df00013859206640000
               │ ├─1061 /usr/bin/okular -session 1090dbc4df000138645542500000011050175_1401375338_4
               │ ├─1062 /usr/bin/kde-nm-connection-editor -session 1090dbc4df0001399667692000000533
               │ ├─1063 /usr/bin/okular -session 1090dbc4df000140035951600000018680027_1401375338_4
               │ ├─1065 kdeinit4: konsole [kdeinit] -session 1090dbc4df00014011264960
               │ ├─1066 kdeinit4: kate [kdeinit] -session 1090dbc4df00014013154960000
               │ ├─1069 /usr/lib32/skype/skype -session 1090dbc4df000139534305000000009400026_14013
               │ ├─1071 /bin/bash
               │ ├─1080 /usr/bin/korgac --icon korgac
               │ ├─1086 /usr/lib/kde4/libexec/polkit-kde-authentication-agent-1
               │ ├─1093 kdeinit4: klipper [kdeinit]                    
               │ ├─1101 firefox
               │ ├─1111 /usr/bin/knotify4
               │ ├─1249 /home/dejo/.dropbox-dist/dropbox /newerversion
               │ ├─3502 ksysguardd
               │ ├─4306 systemctl status
               │ └─4307 systemctl status
               └─user@1000.service
                 ├─813 /usr/lib/systemd/systemd --user
                 └─814 (sd-pam)  
               │ ├─ 898 kwrapper4 ksmserver
               │ ├─ 900 kdeinit4: ksmserver [kdeinit]                  
               │ ├─ 916 kwin -session 1090dbc4df000138592065300000010620000_1401375338_484081
               │ ├─ 922 kdeinit4: krunner [kdeinit]                    
               │ ├─ 924 kdeinit4: plasma-desktop [kdeinit]             
               │ ├─ 929 /usr/bin/akonadi_control
               │ ├─ 932 akonadiserver
               │ ├─ 934 /usr/bin/mysqld --defaults-file=/home/dejo/.local/share/akonadi/mysql.conf --datadir=/home/dejo/.local/share/akonadi/db_data/ --socket=/tmp/akonadi-dejo.QqWYHd/mysql.so
               │ ├─ 958 /usr/bin/baloo_file
               │ ├─ 968 /usr/bin/kuiserver
               │ ├─ 981 /usr/bin/akonadi_agent_launcher akonadi_akonotes_resource akonadi_akonotes_resource_0
               │ ├─ 983 /usr/bin/akonadi_archivemail_agent --identifier akonadi_archivemail_agent
               │ ├─ 984 /usr/bin/akonadi_baloo_indexer --identifier akonadi_baloo_indexer
               │ ├─ 987 /usr/bin/akonadi_agent_launcher akonadi_contacts_resource akonadi_contacts_resource_0
               │ ├─ 988 /usr/bin/akonadi_agent_launcher akonadi_ical_resource akonadi_ical_resource_0
               │ ├─ 989 /usr/bin/akonadi_agent_launcher akonadi_maildir_resource akonadi_maildir_resource_0
               │ ├─ 990 /usr/bin/akonadi_maildispatcher_agent --identifier akonadi_maildispatcher_agent
               │ ├─ 997 /usr/bin/akonadi_mailfilter_agent --identifier akonadi_mailfilter_agent
               │ ├─ 998 /usr/bin/akonadi_migration_agent --identifier akonadi_migration_agent
               │ ├─1006 /usr/bin/akonadi_newmailnotifier_agent --identifier akonadi_newmailnotifier_agent
               │ ├─1007 /usr/bin/akonadi_notes_agent --identifier akonadi_notes_agent
               │ ├─1008 /usr/bin/akonadi_sendlater_agent --identifier akonadi_sendlater_agent
               │ ├─1023 /bin/cat
               │ ├─1033 /bin/cat
               │ ├─1038 /bin/cat
               │ ├─1051 /bin/cat
               │ ├─1060 kdeinit4: kmix [kdeinit] -session 1090dbc4df00013859206640000
               │ ├─1061 /usr/bin/okular -session 1090dbc4df000138645542500000011050175_1401375338_433119
               │ ├─1062 /usr/bin/kde-nm-connection-editor -session 1090dbc4df000139966769200000053380022_1401375338_433414
               │ ├─1063 /usr/bin/okular -session 1090dbc4df000140035951600000018680027_1401375338_433428
               │ ├─1065 kdeinit4: konsole [kdeinit] -session 1090dbc4df00014011264960
               │ ├─1066 kdeinit4: kate [kdeinit] -session 1090dbc4df00014013154960000
               │ ├─1069 /usr/lib32/skype/skype -session 1090dbc4df000139534305000000009400026_1401375338_434753
               │ ├─1071 /bin/bash
               │ ├─1080 /usr/bin/korgac --icon korgac
               │ ├─1086 /usr/lib/kde4/libexec/polkit-kde-authentication-agent-1
               │ ├─1093 kdeinit4: klipper [kdeinit]                    
               │ ├─1101 firefox
               │ ├─1111 /usr/bin/knotify4
               │ ├─1249 /home/dejo/.dropbox-dist/dropbox /newerversion
               │ ├─3502 ksysguardd
               │ ├─4306 systemctl status
               │ └─4307 systemctl status
               └─user@1000.service
                 ├─813 /usr/lib/systemd/systemd --user
                 └─814 (sd-pam)  

Offline

Board footer

Powered by FluxBB