[Bug 1764417] Re: Unrecoverable failure in required component org.gnome.SettingsDaemon.Color.desktop

2019-11-30 Thread Konstantin Hollerith
I'm using Ubuntu 18.04 since it came out, but are effected by this bug only 
since two weeks.
What I noticed: I have a couple of programs setup to start automatically (via 
gnome-session-properties). When I log in and get kicked out because of this 
bug, those programs where never started at all. On a normal Login they start 
fine.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1764417

Title:
  Unrecoverable failure in required component
  org.gnome.SettingsDaemon.Color.desktop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1764417/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1392647] Re: smbstatus reports dead connection as active

2017-12-17 Thread Konstantin Hollerith
I'm also using smbstatus to power of my server, if it's not in use, but
this bug prevents it.

I created this workaround script to ping the ip's (only ipv4) that
smbstatus reports, it reports the ip's as "online" or "offline". One
could also alter the script so the output is exactly like "smbstatus
-b", just showing the online clients only.


#!/bin/bash
# returns 1 if any  smb client is online, otherwise 0
function pingClient
{
ping -c1 -W1 -q $1 &>/dev/null
status=$( echo $? )
if [[ $status == 0 ]] ; then
 #ping success
echo "smb client $1 online"
return 1
else
 #ping failure
echo "smb client $1 offline"
fi
}
sudo /usr/bin/smbstatus -b | grep -o -P "\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}" | 
sort | uniq | while read -r a; do pingClient $a; done

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1392647

Title:
  smbstatus reports dead connection as active

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1392647/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs