[Touch-packages] [Bug 981461] Re: Network interfaces are not correctly brought down on halt, disrupting Wake-on-LAN

2020-10-07 Thread no!chance
no wake-on-lan with Ubuntu 20., too!

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ifupdown in Ubuntu.
https://bugs.launchpad.net/bugs/981461

Title:
  Network interfaces are not correctly brought down on halt, disrupting
  Wake-on-LAN

Status in ifupdown package in Ubuntu:
  Triaged
Status in upstart package in Ubuntu:
  Confirmed
Status in ifupdown source package in Precise:
  Triaged

Bug description:
  I found the workaround (and proof) for this bug is posted here:
  
http://confoundedtech.blogspot.com/2011/06/enable-wol-on-ubuntu-hp-microserver.html

  The relevant info is below
  =
  To get WOL to work the ethernet interface must be properly brought down as 
part of the system shutdown. This should be performed as part of run levels rc0 
and rc6, noting that Linux typically has 7 different run levels (or operating 
modes):
  rc0.d - System Halted
  rc1.d - Single User Mode
  rc2.d - Single User Mode with Networking
  rc3.d - Multi-User Mode - boot up in text mode
  rc4.d - Not yet Defined
  rc5.d - Multi-User Mode - boot up in X Windows
  rc6.d - Shutdown & Reboot
  A simple script can be created to bring the ethernet interface down properly 
at shutdown:
  sudo vi /etc/rc6.d/wol_poweroff.sh

  
  It may contain:
  #!/bin/bash
  ifconfig eth0 down
  poweroff

  
  Change the script's permissions to make it executable:

  sudo chmod 755 /etc/rc6.d/wol_poweroff.sh

  
  Copy the script to work on system halt as well:

  sudo cp /etc/rc6.d/wol_poweroff.sh /etc/rc0.d/wol_poweroff.sh

  
  Change permissions to make it executable:

  sudo chmod 755 /etc/rc0.d/wol_poweroff.sh

  
  Job done. 

  
  To test power down the machine, sudo shutdown now or sudo poweroff , and use 
your favourite WOL tool to send a magic packet. Thanks to rockafeller and 
everyone else who have commented with various solutions.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: ifupdown 0.7~beta2ubuntu8
  ProcVersionSignature: Ubuntu 3.2.0-23.36-generic 3.2.14
  Uname: Linux 3.2.0-23-generic x86_64
  ApportVersion: 2.0.1-0ubuntu2
  Architecture: amd64
  Date: Sat Apr 14 05:12:38 2012
  ProcEnviron:
   TERM=xterm
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ifupdown
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 341817] Re: dhcpd wont start due to rndc.key permissions

2015-11-07 Thread no!chance
I wonder, noone provides a real solution for this bug ... AFTER MORE
THAN 3 YEARS.

It is not a bug! But it looks like nobody documented the changes.
Simply chown the rndc.key-File to root:root. Start the dhcp server! That's it!

$ sudo chown dhcpd: rndc.key 
$ sudo service isc-dhcp-server start
start: Job failed to start
$ sudo chown root: rndc.key 
$ sudo service isc-dhcp-server start
isc-dhcp-server start/running, process 19126

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to isc-dhcp in Ubuntu.
https://bugs.launchpad.net/bugs/341817

Title:
  dhcpd wont start due to rndc.key permissions

Status in isc-dhcp package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: dhcp3-server

  System information:
  #lsb_release -rd
  Description:Ubuntu 8.04.1
  Release:8.04
  #apt-cache policy dhcp3-server
  dhcp3-server:
Installed: 3.0.6.dfsg-1ubuntu9
Candidate: 3.0.6.dfsg-1ubuntu9
Version table:
   *** 3.0.6.dfsg-1ubuntu9 0
  500 http://nl.archive.ubuntu.com hardy/main Packages
  100 /var/lib/dpkg/status
  #apt-cache policy bind9
  bind9:
Installed: 1:9.4.2.dfsg.P2-2ubuntu0.1
Candidate: 1:9.4.2.dfsg.P2-2ubuntu0.1
Version table:
   *** 1:9.4.2.dfsg.P2-2ubuntu0.1 0
  500 http://nl.archive.ubuntu.com hardy-updates/main Packages
  500 http://security.ubuntu.com hardy-security/main Packages
  100 /var/lib/dpkg/status
   1:9.4.2-10 0
  500 http://nl.archive.ubuntu.com hardy/main Packages

  Problem:
  dhcpd wont start - "/etc/bind/rndc.key: Permission denied"
  Workaround found but is a potential security issue ("/etc/bind/rndc.conf" 
world readable)

  Brief:
  Trying to get dhcp3-server and bind9 to work together nicely.
  The "/etc/bind/rndc.key" file is owned by bind:bind w. 640 perms by default 
and dhcpd3 process runs under user "dhcpd". Adding user "dhcpd" to group "bind" 
does not seem to work. Permissions of "/etc/bind/rndc.key" need to be changed 
to 644 for dhcp3-server to start (I could find no other solution - after a few 
hours of google and 30 minutes of play, at least ;-)

  Steps:
  - Install & configure bind9 (configuration tested and working)
  - Install & configure dhcp3-server
  - sudo /etc/init.d/dhcp3-server start

  Expected result:
  dhcpd starts

  Actual result:
  #/etc/init.d/dhcp3-server start
  dhcpd self-test failed. Please fix the config file.
  The error was:
  Can't open /etc/bind/rndc.key: Permission denied
  #ls -l `which dhcpd3`
  -rwxr-xr-x 1 root root 516164 2008-04-02 15:38 /usr/sbin/dhcpd3
  #ls -l /etc/bind/rndc.key
  -rw-r- 1 bind bind 77 2009-03-12 14:30 /etc/bind/rndc.key
  #id -a dhcpd
  uid=111(dhcpd) gid=122(dhcpd) groups=122(dhcpd),121(bind)

  Workaround:
  - Change permissions of /etc/bind/rndc.key to world readable (from 640 -> 644)
note: adding 'dhcpd' user to 'bind' group does not work for some reason
  - Start dhcpd:
  #chmod 644 /etc/bind/rndc.key
  #/etc/init.d/dhcp3-server start
   * Starting DHCP server dhcpd3
 [ OK ]
  #ps -ef | grep dhcpd
  dhcpd 3292 1  0 17:11 ?00:00:00 /usr/sbin/dhcpd3 -q -pf 
/var/run/dhcp3-server/dhcpd.pid -cf /etc/dhcp3/dhcpd.conf eth0
  root  3298  3090  0 17:11 pts/000:00:00 grep dhcpd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/341817/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1186662] Re: isc-dhcp-server fails to renew lease file

2015-05-31 Thread no!chance
This bug exists since 2 years ... I am sure this will never been fixed
in ubuntu.  ... since you switch to another distro!

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to isc-dhcp in Ubuntu.
https://bugs.launchpad.net/bugs/1186662

Title:
  isc-dhcp-server fails to renew lease file

Status in isc-dhcp package in Ubuntu:
  Triaged
Status in isc-dhcp source package in Trusty:
  Confirmed

Bug description:
  After raring upgrade, the dhcp server fails to renew lease file when
  it tries to (about every hour).

  The syslog says:
  dhcpd: Can't create new lease file: Permission denied

  It looks like a permission problem, because

  # chown -R dhcpd:dhcpd /var/lib/dhcp

  the above command temporarily solves the issue, until dhcpd is
  restarted: at that time, the ownership of the directory and the lease
  file is set back to root:root.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1186662/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 845920] Re: Unity works very sloooooow.

2014-09-18 Thread no!chance
Since Ubuntu14.04 graphics is very slow on

1. a VMware  installation
2. on RS780 AMD graphics

On Ubuntu12.04 there was no problem, including watching movies with
RS780 graphics. With Ubuntu14.04 it is impossible (too slow).

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/845920

Title:
  Unity works very sloow.

Status in Unity:
  Expired
Status in “unity” package in Ubuntu:
  Expired

Bug description:
  When I press Super button, dash will show only after 3-5 seconds.
  If I press alt+tab, list of windows shows afret 5 seconds or more.
  Pages in browser scrolls very slow. When I click on link, browser freezes on 
10 seconds (sometimes more, sometimes less). It's in all browsers (FF, Chrome, 
Opera).
  When I run gwibber (or some another program) I must wait more than 10 seconds 
while it loading.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: unity 4.12.0-0ubuntu2
  ProcVersionSignature: Ubuntu 3.0.0-10.16-generic 3.0.4
  Uname: Linux 3.0.0-10-generic i686
  NonfreeKernelModules: nvidia
  .proc.driver.nvidia.gpus.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/0'
  .proc.driver.nvidia.registry: Binary: 
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86 Kernel Module  280.13  Wed Jul 27 16:55:43 PDT 
2011
   GCC version:  gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu2)
  .tmp.unity.support.test.0:
   
  Architecture: i386
  CompizPlugins: 
[core,bailer,detection,composite,opengl,compiztoolbox,decor,gnomecompat,grid,imgpng,mousepoll,move,place,regex,resize,session,snap,unitymtgrabhandles,vpswitch,wall,thumbnail,animation,expo,ezoom,fade,scale,unityshell,workarounds]
  CompositorRunning: compiz
  Date: Fri Sep  9 21:49:54 2011
  DistUpgraded: Fresh install
  DistroCodename: oneiric
  DistroVariant: ubuntu
  DkmsStatus:
   nvidia-current, 280.13, 3.0.0-10-generic, i686: installed
   nvidia-current, 280.13, 3.0.0-9-generic, i686: installed
  GraphicsCard:
   nVidia Corporation G86 [GeForce 8600M GS] [10de:0425] (rev a1) (prog-if 00 
[VGA controller])
 Subsystem: LG Electronics, Inc. Device [1854:0094]
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Beta i386 (20110901)
  JockeyStatus:
   xorg:nvidia_173 - NVIDIA accelerated graphics driver (Proprietary, Disabled, 
Not in use)
   xorg:nvidia_current-update - NVIDIA accelerated graphics driver 
(post-release updates) (Proprietary, Disabled, Not in use)
   xorg:nvidia_current - NVIDIA accelerated graphics driver (Proprietary, 
Enabled, Not in use)
   xorg:nvidia_173-update - NVIDIA accelerated graphics driver (post-release 
updates) (Proprietary, Disabled, Not in use)
  MachineType: LG Electronics R500-U.CP21R1
  PccardctlIdent:
   Socket 0:
 no product info available
  PccardctlStatus:
   Socket 0:
 no card
  ProcEnviron:
   PATH=(custom, no user)
   LANG=uk_UA.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.0.0-10-generic 
root=UUID=d1297443-a1be-403d-8941-167ab2a1acfa ro quiet splash vt.handoff=7
  SourcePackage: unity
  UnitySupportTest: Error: command ['/usr/lib/nux/unity_support_test', '-p', 
'-f'] failed with exit code -11:
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/29/2007
  dmi.bios.vendor: Phoenix Technologies LTD
  dmi.bios.version: COLSSF10
  dmi.board.name: COLUMBIA
  dmi.board.vendor: LG Electronics
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LG Electronics
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLTD:bvrCOLSSF10:bd08/29/2007:svnLGElectronics:pnR500-U.CP21R1:pvrNotApplicable:rvnLGElectronics:rnCOLUMBIA:rvrNotApplicable:cvnLGElectronics:ct10:cvrN/A:
  dmi.product.name: R500-U.CP21R1
  dmi.product.version: Not Applicable
  dmi.sys.vendor: LG Electronics
  version.compiz: compiz 1:0.9.5.92+bzr2791-0ubuntu2
  version.libdrm2: libdrm2 2.4.26-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 7.11-0ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 7.11-0ubuntu3
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg: xserver-xorg 1:7.6+7ubuntu6
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.6.0-1ubuntu13
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20110811.g93fc084-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.15.901-1ubuntu2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20110411+8378443-1

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/845920/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 647437] Re: [ati] unity extremely slow

2014-09-18 Thread no!chance
Even the desktop edition has very poor graphics performance. On RS780
graphics, which was fast enough to view hd-movies in  Ubuntu12.04.

VMware graphics is EXTREME slow compared to ubuntu12.04.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/647437

Title:
  [ati] unity extremely slow

Status in Mutter:
  New
Status in Unity:
  Won't Fix
Status in “unity” package in Ubuntu:
  Won't Fix

Bug description:
  Binary package hint: unity

   Desktop edition works fine, but the netbook edition is extremely
  slow. I have an ATI HD3470 graphic card and use the latest fglrx
  driver. If I uses the free driver I get a corrupted display. I've
  never got unity or gnome shell to work properly in this laptop.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.10
  Package: unity 0.2.44-0ubuntu1
  ProcVersionSignature: Ubuntu 2.6.35-22.33-generic 2.6.35.4
  Uname: Linux 2.6.35-22-generic i686
  NonfreeKernelModules: fglrx
  Architecture: i386
  Date: Sat Sep 25 12:30:14 2010
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Beta i386 (20100901.1)
  ProcEnviron:
   LANG=fr_FR.utf8
   SHELL=/bin/bash
  SourcePackage: unity

To manage notifications about this bug go to:
https://bugs.launchpad.net/mutter/+bug/647437/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp