[Touch-packages] [Bug 1975865] Re: Hash and size mismatch with http://ddebs.ubuntu.com/dists/bionic-updates/main/binary-amd64/Packages.gz

2024-04-13 Thread Bram Stolk
This now happens for noble:

```
Err:12 http://ddebs.ubuntu.com noble/universe amd64 Packages
   
  File has unexpected size (5097972 != 5076444). Mirror sync in progress? [IP: 
185.125.190.18 80]
  Hashes of expected file:
   - Filesize:5076444 [weak]
   - 
SHA512:4a12f4b6c12396bf02c70a1a1bd8933d2cf0b7a151c6f1efcd3feb0644392e8539a542499637d7981fd47e5f3dc922d878bb77630aaa47f9be169194e65fbe0c
   - SHA256:4b2177c1b5f6aa3772056116eb80630a6032445253b9248f06db30cd707bc910
   - SHA1:3ba083c6ee31195a7d6851bb14a2c741083fe580 [weak]
   - MD5Sum:6845e2ee862b5570f928bbd4d2d7525e [weak]
  Release file created at: Sat, 13 Apr 2024 15:46:30 +
Fetched 31.9 MB in 3s (10.4 MB/s)   
   
Reading package lists... Done
E: Failed to fetch 
http://ddebs.ubuntu.com/dists/noble/universe/binary-amd64/Packages.xz  File has 
unexpected size (5097972 != 5076444). Mirror sync in progress? [IP: 
185.125.190.18 80]
   Hashes of expected file:
- Filesize:5076444 [weak]
- 
SHA512:4a12f4b6c12396bf02c70a1a1bd8933d2cf0b7a151c6f1efcd3feb0644392e8539a542499637d7981fd47e5f3dc922d878bb77630aaa47f9be169194e65fbe0c
- SHA256:4b2177c1b5f6aa3772056116eb80630a6032445253b9248f06db30cd707bc910
- SHA1:3ba083c6ee31195a7d6851bb14a2c741083fe580 [weak]
- MD5Sum:6845e2ee862b5570f928bbd4d2d7525e [weak]
   Release file created at: Sat, 13 Apr 2024 15:46:30 +
E: Some index files failed to download. They have been ignored, or old ones 
used instead.
```

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

Title:
  Hash and size mismatch with http://ddebs.ubuntu.com/dists/bionic-
  updates/main/binary-amd64/Packages.gz

Status in apt package in Ubuntu:
  Fix Released

Bug description:
  When adding the debug repos, I am getting:

  E: Failed to fetch 
http://ddebs.ubuntu.com/dists/bionic-updates/main/binary-amd64/Packages.gz  
File has unexpected size (795886 != 795487). Mirror sync in progress? [IP: 
91.189.91.49 80]
 Hashes of expected file:
  - Filesize:795487 [weak]
  - 
SHA512:982169cbaaa6b0fe84e2cac755c140f52c578619beea451baa90234af2cfdaef90ac936eb7a7de24364ee860a6b021f852f11a87b7cd6dcb98923a248bc45a81
  - SHA256:4a69b95e20ac09bb3de2d5e3c652b2c027bcfa4d6df9dea0a4aed16c805869e6
  - SHA1:11dded397ab87e4fff81acf4aed6af18f8eee0b2 [weak]
  - MD5Sum:9045f9c8424cf15e897f682708f158b8 [weak]
 Release file created at: Thu, 26 May 2022 08:04:16 +
  E: Some index files failed to download. They have been ignored, or old ones 
used instead.

  When I manually go to the repositories... many (all?) of the hashes
  listed in http://ddebs.ubuntu.com/dists/bionic-updates/Release do not
  match the files (e.g. http://ddebs.ubuntu.com/dists/bionic-
  updates/main/binary-amd64/Packages.gz )

  Note: I filed this against `apt` because `ubuntu-bug` forced me to
  specify a package and I didn't know any other way to file the bug.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: apt 1.6.14
  Uname: Linux 5.16.18-1rodete2-amd64 x86_64
  ApportVersion: 2.20.9-0ubuntu7.28
  Architecture: amd64
  Date: Thu May 26 18:36:21 2022
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
  SourcePackage: apt
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1975865/+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 1999698] [NEW] Dodgy looking patch applied to our build.

2022-12-14 Thread Bram Stolk
Public bug reported:

When building accountsservice we apply patches, among of which is
`0010-set-language.patch` which raises concerns.

It will not compile without warnings: At the very least contains
misleading indentation.

```
[92/99] Compiling C object src/accounts-daemon.p/user.c.o
../src/user.c: In function ‘user_HOME_available’:
../src/user.c:1753:27: warning: this ‘else’ clause does not guard... 
[-Wmisleading-indentation]
 1753 | } else
  |   ^~~~
../src/user.c:1755:33: note: ...this statement, but the latter is misleadingly 
indented as if it were guarded by the ‘else’
 1755 | break;
  | ^
```

The code:

```
} else
g_free (path_to_entry);
break;

```

** Affects: accountsservice (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Dodgy looking patch applied to our build.

Status in accountsservice package in Ubuntu:
  New

Bug description:
  When building accountsservice we apply patches, among of which is
  `0010-set-language.patch` which raises concerns.

  It will not compile without warnings: At the very least contains
  misleading indentation.

  ```
  [92/99] Compiling C object src/accounts-daemon.p/user.c.o
  ../src/user.c: In function ‘user_HOME_available’:
  ../src/user.c:1753:27: warning: this ‘else’ clause does not guard... 
[-Wmisleading-indentation]
   1753 | } else
|   ^~~~
  ../src/user.c:1755:33: note: ...this statement, but the latter is 
misleadingly indented as if it were guarded by the ‘else’
   1755 | break;
| ^
  ```

  The code:

  ```
  } else
  g_free (path_to_entry);
  break;

  ```

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/accountsservice/+bug/1999698/+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 1998414] Re: libdrm-dev missing man pages

2022-11-30 Thread Bram Stolk
Debian also is missing the same pages:

https://manpages.debian.org/bullseye/libdrm-
dev/drmModeGetResources.3.en.html

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

Title:
  libdrm-dev missing man pages

Status in libdrm package in Ubuntu:
  New

Bug description:
  When I access the man-page for drmModeGetResources I am referred to
  other pages in "SEE ALSO"

  
  ```
  SEE ALSO
 drm(7),  drm-kms(7), drmModeGetFB(3), drmModeAddFB(3), drmMod‐
 eAddFB2(3),   drmModeRmFB(3),drmModeDirtyFB(3),drmMod‐
 eGetCrtc(3),  drmModeSetCrtc  (3), drmModeGetEncoder (3), drm‐
 ModeGetConnector(3)

  ```

  However, almost none of these other man-pages exist:

  ```
  $ man drmModeGetEncoder
  No manual entry for drmModeGetEncoder
  ```

  libdrm-dev is installed: 2.4.113-2

  OS: Ubuntu 22.10

  
  ```
  $ dpkg -L libdrm-dev
  /.
  /usr
  /usr/include
  /usr/include/libdrm
  /usr/include/libdrm/amdgpu.h
  /usr/include/libdrm/amdgpu_drm.h
  /usr/include/libdrm/drm.h
  /usr/include/libdrm/drm_fourcc.h
  /usr/include/libdrm/drm_mode.h
  /usr/include/libdrm/drm_sarea.h
  /usr/include/libdrm/i915_drm.h
  /usr/include/libdrm/intel_aub.h
  /usr/include/libdrm/intel_bufmgr.h
  /usr/include/libdrm/intel_debug.h
  /usr/include/libdrm/mach64_drm.h
  /usr/include/libdrm/mga_drm.h
  /usr/include/libdrm/msm_drm.h
  /usr/include/libdrm/nouveau
  /usr/include/libdrm/nouveau/nouveau.h
  /usr/include/libdrm/nouveau/nvif
  /usr/include/libdrm/nouveau/nvif/cl0080.h
  /usr/include/libdrm/nouveau/nvif/cl9097.h
  /usr/include/libdrm/nouveau/nvif/class.h
  /usr/include/libdrm/nouveau/nvif/if0002.h
  /usr/include/libdrm/nouveau/nvif/if0003.h
  /usr/include/libdrm/nouveau/nvif/ioctl.h
  /usr/include/libdrm/nouveau/nvif/unpack.h
  /usr/include/libdrm/nouveau_drm.h
  /usr/include/libdrm/qxl_drm.h
  /usr/include/libdrm/r128_drm.h
  /usr/include/libdrm/r600_pci_ids.h
  /usr/include/libdrm/radeon_bo.h
  /usr/include/libdrm/radeon_bo_gem.h
  /usr/include/libdrm/radeon_bo_int.h
  /usr/include/libdrm/radeon_cs.h
  /usr/include/libdrm/radeon_cs_gem.h
  /usr/include/libdrm/radeon_cs_int.h
  /usr/include/libdrm/radeon_drm.h
  /usr/include/libdrm/radeon_surface.h
  /usr/include/libdrm/savage_drm.h
  /usr/include/libdrm/sis_drm.h
  /usr/include/libdrm/tegra_drm.h
  /usr/include/libdrm/vc4_drm.h
  /usr/include/libdrm/via_drm.h
  /usr/include/libdrm/virtgpu_drm.h
  /usr/include/libdrm/vmwgfx_drm.h
  /usr/include/libsync.h
  /usr/include/xf86drm.h
  /usr/include/xf86drmMode.h
  /usr/lib
  /usr/lib/x86_64-linux-gnu
  /usr/lib/x86_64-linux-gnu/libdrm.a
  /usr/lib/x86_64-linux-gnu/libdrm_amdgpu.a
  /usr/lib/x86_64-linux-gnu/libdrm_intel.a
  /usr/lib/x86_64-linux-gnu/libdrm_nouveau.a
  /usr/lib/x86_64-linux-gnu/libdrm_radeon.a
  /usr/lib/x86_64-linux-gnu/pkgconfig
  /usr/lib/x86_64-linux-gnu/pkgconfig/libdrm.pc
  /usr/lib/x86_64-linux-gnu/pkgconfig/libdrm_amdgpu.pc
  /usr/lib/x86_64-linux-gnu/pkgconfig/libdrm_intel.pc
  /usr/lib/x86_64-linux-gnu/pkgconfig/libdrm_nouveau.pc
  /usr/lib/x86_64-linux-gnu/pkgconfig/libdrm_radeon.pc
  /usr/share
  /usr/share/doc
  /usr/share/doc/libdrm-dev
  /usr/share/doc/libdrm-dev/copyright
  /usr/share/man
  /usr/share/man/man3
  /usr/share/man/man3/drmAvailable.3.gz
  /usr/share/man/man3/drmHandleEvent.3.gz
  /usr/share/man/man3/drmModeGetResources.3.gz
  /usr/share/man/man7
  /usr/share/man/man7/drm-kms.7.gz
  /usr/share/man/man7/drm-memory.7.gz
  /usr/share/man/man7/drm.7.gz
  /usr/lib/x86_64-linux-gnu/libdrm.so
  /usr/lib/x86_64-linux-gnu/libdrm_amdgpu.so
  /usr/lib/x86_64-linux-gnu/libdrm_intel.so
  /usr/lib/x86_64-linux-gnu/libdrm_nouveau.so
  /usr/lib/x86_64-linux-gnu/libdrm_radeon.so
  /usr/share/doc/libdrm-dev/changelog.Debian.gz

  ```

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libdrm/+bug/1998414/+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 1998414] [NEW] libdrm-dev missing man pages

2022-11-30 Thread Bram Stolk
Public bug reported:

When I access the man-page for drmModeGetResources I am referred to
other pages in "SEE ALSO"


```
SEE ALSO
   drm(7),  drm-kms(7), drmModeGetFB(3), drmModeAddFB(3), drmMod‐
   eAddFB2(3),   drmModeRmFB(3),drmModeDirtyFB(3),drmMod‐
   eGetCrtc(3),  drmModeSetCrtc  (3), drmModeGetEncoder (3), drm‐
   ModeGetConnector(3)

```

However, almost none of these other man-pages exist:

```
$ man drmModeGetEncoder
No manual entry for drmModeGetEncoder
```

libdrm-dev is installed: 2.4.113-2

OS: Ubuntu 22.10


```
$ dpkg -L libdrm-dev
/.
/usr
/usr/include
/usr/include/libdrm
/usr/include/libdrm/amdgpu.h
/usr/include/libdrm/amdgpu_drm.h
/usr/include/libdrm/drm.h
/usr/include/libdrm/drm_fourcc.h
/usr/include/libdrm/drm_mode.h
/usr/include/libdrm/drm_sarea.h
/usr/include/libdrm/i915_drm.h
/usr/include/libdrm/intel_aub.h
/usr/include/libdrm/intel_bufmgr.h
/usr/include/libdrm/intel_debug.h
/usr/include/libdrm/mach64_drm.h
/usr/include/libdrm/mga_drm.h
/usr/include/libdrm/msm_drm.h
/usr/include/libdrm/nouveau
/usr/include/libdrm/nouveau/nouveau.h
/usr/include/libdrm/nouveau/nvif
/usr/include/libdrm/nouveau/nvif/cl0080.h
/usr/include/libdrm/nouveau/nvif/cl9097.h
/usr/include/libdrm/nouveau/nvif/class.h
/usr/include/libdrm/nouveau/nvif/if0002.h
/usr/include/libdrm/nouveau/nvif/if0003.h
/usr/include/libdrm/nouveau/nvif/ioctl.h
/usr/include/libdrm/nouveau/nvif/unpack.h
/usr/include/libdrm/nouveau_drm.h
/usr/include/libdrm/qxl_drm.h
/usr/include/libdrm/r128_drm.h
/usr/include/libdrm/r600_pci_ids.h
/usr/include/libdrm/radeon_bo.h
/usr/include/libdrm/radeon_bo_gem.h
/usr/include/libdrm/radeon_bo_int.h
/usr/include/libdrm/radeon_cs.h
/usr/include/libdrm/radeon_cs_gem.h
/usr/include/libdrm/radeon_cs_int.h
/usr/include/libdrm/radeon_drm.h
/usr/include/libdrm/radeon_surface.h
/usr/include/libdrm/savage_drm.h
/usr/include/libdrm/sis_drm.h
/usr/include/libdrm/tegra_drm.h
/usr/include/libdrm/vc4_drm.h
/usr/include/libdrm/via_drm.h
/usr/include/libdrm/virtgpu_drm.h
/usr/include/libdrm/vmwgfx_drm.h
/usr/include/libsync.h
/usr/include/xf86drm.h
/usr/include/xf86drmMode.h
/usr/lib
/usr/lib/x86_64-linux-gnu
/usr/lib/x86_64-linux-gnu/libdrm.a
/usr/lib/x86_64-linux-gnu/libdrm_amdgpu.a
/usr/lib/x86_64-linux-gnu/libdrm_intel.a
/usr/lib/x86_64-linux-gnu/libdrm_nouveau.a
/usr/lib/x86_64-linux-gnu/libdrm_radeon.a
/usr/lib/x86_64-linux-gnu/pkgconfig
/usr/lib/x86_64-linux-gnu/pkgconfig/libdrm.pc
/usr/lib/x86_64-linux-gnu/pkgconfig/libdrm_amdgpu.pc
/usr/lib/x86_64-linux-gnu/pkgconfig/libdrm_intel.pc
/usr/lib/x86_64-linux-gnu/pkgconfig/libdrm_nouveau.pc
/usr/lib/x86_64-linux-gnu/pkgconfig/libdrm_radeon.pc
/usr/share
/usr/share/doc
/usr/share/doc/libdrm-dev
/usr/share/doc/libdrm-dev/copyright
/usr/share/man
/usr/share/man/man3
/usr/share/man/man3/drmAvailable.3.gz
/usr/share/man/man3/drmHandleEvent.3.gz
/usr/share/man/man3/drmModeGetResources.3.gz
/usr/share/man/man7
/usr/share/man/man7/drm-kms.7.gz
/usr/share/man/man7/drm-memory.7.gz
/usr/share/man/man7/drm.7.gz
/usr/lib/x86_64-linux-gnu/libdrm.so
/usr/lib/x86_64-linux-gnu/libdrm_amdgpu.so
/usr/lib/x86_64-linux-gnu/libdrm_intel.so
/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so
/usr/lib/x86_64-linux-gnu/libdrm_radeon.so
/usr/share/doc/libdrm-dev/changelog.Debian.gz

```

** Affects: libdrm (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: manpage

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

Title:
  libdrm-dev missing man pages

Status in libdrm package in Ubuntu:
  New

Bug description:
  When I access the man-page for drmModeGetResources I am referred to
  other pages in "SEE ALSO"

  
  ```
  SEE ALSO
 drm(7),  drm-kms(7), drmModeGetFB(3), drmModeAddFB(3), drmMod‐
 eAddFB2(3),   drmModeRmFB(3),drmModeDirtyFB(3),drmMod‐
 eGetCrtc(3),  drmModeSetCrtc  (3), drmModeGetEncoder (3), drm‐
 ModeGetConnector(3)

  ```

  However, almost none of these other man-pages exist:

  ```
  $ man drmModeGetEncoder
  No manual entry for drmModeGetEncoder
  ```

  libdrm-dev is installed: 2.4.113-2

  OS: Ubuntu 22.10

  
  ```
  $ dpkg -L libdrm-dev
  /.
  /usr
  /usr/include
  /usr/include/libdrm
  /usr/include/libdrm/amdgpu.h
  /usr/include/libdrm/amdgpu_drm.h
  /usr/include/libdrm/drm.h
  /usr/include/libdrm/drm_fourcc.h
  /usr/include/libdrm/drm_mode.h
  /usr/include/libdrm/drm_sarea.h
  /usr/include/libdrm/i915_drm.h
  /usr/include/libdrm/intel_aub.h
  /usr/include/libdrm/intel_bufmgr.h
  /usr/include/libdrm/intel_debug.h
  /usr/include/libdrm/mach64_drm.h
  /usr/include/libdrm/mga_drm.h
  /usr/include/libdrm/msm_drm.h
  /usr/include/libdrm/nouveau
  /usr/include/libdrm/nouveau/nouveau.h
  /usr/include/libdrm/nouveau/nvif
  /usr/include/libdrm/nouveau/nvif/cl0080.h
  /usr/include/libdrm/nouveau/nvif/cl9097.h
  /usr/include/libdrm/nouveau/nvif/class.h
  

[Touch-packages] [Bug 1998001] [NEW] Missing tests from libdrm-tests

2022-11-25 Thread Bram Stolk
Public bug reported:

It is advertised by the OS that kms-universal-planes can be installed
via libdrm-tests but this is false:

$ kms-universal-planes
Command 'kms-universal-planes' not found, but can be installed with:
sudo apt install libdrm-tests

$ sudo apt install libdrm-tests
[sudo] password for stolk: 
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following NEW packages will be installed:
  libdrm-tests
0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
Need to get 47.5 kB of archives.
After this operation, 193 kB of additional disk space will be used.
Get:1 http://ca.archive.ubuntu.com/ubuntu kinetic/universe amd64 libdrm-tests 
amd64 2.4.113-2 [47.5 kB]
Fetched 47.5 kB in 0s (142 kB/s)  
Selecting previously unselected package libdrm-tests.
(Reading database ... 308766 files and directories currently installed.)
Preparing to unpack .../libdrm-tests_2.4.113-2_amd64.deb ...
Unpacking libdrm-tests (2.4.113-2) ...
Setting up libdrm-tests (2.4.113-2) ...

$ kms-universal-planes
Command 'kms-universal-planes' not found, but can be installed with:
sudo apt install libdrm-tests

OS: Ubuntu 22.10

** Affects: libdrm (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Missing tests from libdrm-tests

Status in libdrm package in Ubuntu:
  New

Bug description:
  It is advertised by the OS that kms-universal-planes can be installed
  via libdrm-tests but this is false:

  $ kms-universal-planes
  Command 'kms-universal-planes' not found, but can be installed with:
  sudo apt install libdrm-tests

  $ sudo apt install libdrm-tests
  [sudo] password for stolk: 
  Reading package lists... Done
  Building dependency tree... Done
  Reading state information... Done
  The following NEW packages will be installed:
libdrm-tests
  0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
  Need to get 47.5 kB of archives.
  After this operation, 193 kB of additional disk space will be used.
  Get:1 http://ca.archive.ubuntu.com/ubuntu kinetic/universe amd64 libdrm-tests 
amd64 2.4.113-2 [47.5 kB]
  Fetched 47.5 kB in 0s (142 kB/s)  
  Selecting previously unselected package libdrm-tests.
  (Reading database ... 308766 files and directories currently installed.)
  Preparing to unpack .../libdrm-tests_2.4.113-2_amd64.deb ...
  Unpacking libdrm-tests (2.4.113-2) ...
  Setting up libdrm-tests (2.4.113-2) ...

  $ kms-universal-planes
  Command 'kms-universal-planes' not found, but can be installed with:
  sudo apt install libdrm-tests

  OS: Ubuntu 22.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libdrm/+bug/1998001/+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 1954534] [NEW] package left in uninstallable state, due to "phased 20%"

2021-12-10 Thread Bram Stolk
Public bug reported:

My system has been left unable to install libpulse-dev because the
staging has caused a dead-lock.

The maintainer of libpulse has instructed me to open a bug against apt.

See:
https://answers.launchpad.net/ubuntu/+source/pulseaudio/+question/699828

libpulse-dev wants a matched libpulse0 which is impossible.

This is on Ubuntu 21.10 impish-updates

There never was a non-ubuntu apt source in the config.

The apt db is up to date.

The system is up to date.

xander@gamer2:~$ sudo apt install libpulse-dev
[sudo] password for xander:
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help resolve the situation:

The following packages have unmet dependencies:
 libpulse-dev : Depends: libpulse0 (= 1:15.0+dfsg1-1ubuntu2) but 
1:15.0+dfsg1-1ubuntu2.1 is to be installed
Depends: libpulse-mainloop-glib0 (= 1:15.0+dfsg1-1ubuntu2) but 
1:15.0+dfsg1-1ubuntu2.1 is to be installed
E: Unable to correct problems, you have held broken packages.
xander@gamer2:~$ apt-cache policy libpulse0
libpulse0:
  Installed: 1:15.0+dfsg1-1ubuntu2.1
  Candidate: 1:15.0+dfsg1-1ubuntu2.1
  Version table:
 1:15.0+dfsg1-1ubuntu2.2 1 (phased 20%)
500 http://ca.archive.ubuntu.com/ubuntu impish-updates/main amd64 
Packages
 *** 1:15.0+dfsg1-1ubuntu2.1 100
100 /var/lib/dpkg/status
 1:15.0+dfsg1-1ubuntu2 500
500 http://ca.archive.ubuntu.com/ubuntu impish/main amd64 Packages
xander@gamer2:~$ apt-cache policy libpulse-dev
libpulse-dev:
  Installed: (none)
  Candidate: 1:15.0+dfsg1-1ubuntu2
  Version table:
 1:15.0+dfsg1-1ubuntu2.2 1 (phased 20%)
500 http://ca.archive.ubuntu.com/ubuntu impish-updates/main amd64 
Packages
 1:15.0+dfsg1-1ubuntu2 500
500 http://ca.archive.ubuntu.com/ubuntu impish/main amd64 Packages

** Affects: apt (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  package left in uninstallable state, due to "phased 20%"

Status in apt package in Ubuntu:
  New

Bug description:
  My system has been left unable to install libpulse-dev because the
  staging has caused a dead-lock.

  The maintainer of libpulse has instructed me to open a bug against
  apt.

  See:
  https://answers.launchpad.net/ubuntu/+source/pulseaudio/+question/699828

  libpulse-dev wants a matched libpulse0 which is impossible.

  This is on Ubuntu 21.10 impish-updates

  There never was a non-ubuntu apt source in the config.

  The apt db is up to date.

  The system is up to date.

  xander@gamer2:~$ sudo apt install libpulse-dev
  [sudo] password for xander:
  Reading package lists... Done
  Building dependency tree... Done
  Reading state information... Done
  Some packages could not be installed. This may mean that you have
  requested an impossible situation or if you are using the unstable
  distribution that some required packages have not yet been created
  or been moved out of Incoming.
  The following information may help resolve the situation:

  The following packages have unmet dependencies:
   libpulse-dev : Depends: libpulse0 (= 1:15.0+dfsg1-1ubuntu2) but 
1:15.0+dfsg1-1ubuntu2.1 is to be installed
  Depends: libpulse-mainloop-glib0 (= 1:15.0+dfsg1-1ubuntu2) 
but 1:15.0+dfsg1-1ubuntu2.1 is to be installed
  E: Unable to correct problems, you have held broken packages.
  xander@gamer2:~$ apt-cache policy libpulse0
  libpulse0:
Installed: 1:15.0+dfsg1-1ubuntu2.1
Candidate: 1:15.0+dfsg1-1ubuntu2.1
Version table:
   1:15.0+dfsg1-1ubuntu2.2 1 (phased 20%)
  500 http://ca.archive.ubuntu.com/ubuntu impish-updates/main amd64 
Packages
   *** 1:15.0+dfsg1-1ubuntu2.1 100
  100 /var/lib/dpkg/status
   1:15.0+dfsg1-1ubuntu2 500
  500 http://ca.archive.ubuntu.com/ubuntu impish/main amd64 Packages
  xander@gamer2:~$ apt-cache policy libpulse-dev
  libpulse-dev:
Installed: (none)
Candidate: 1:15.0+dfsg1-1ubuntu2
Version table:
   1:15.0+dfsg1-1ubuntu2.2 1 (phased 20%)
  500 http://ca.archive.ubuntu.com/ubuntu impish-updates/main amd64 
Packages
   1:15.0+dfsg1-1ubuntu2 500
  500 http://ca.archive.ubuntu.com/ubuntu impish/main amd64 Packages

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1954534/+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 1834794] Re: Uses too much memory (6Gbyte process)

2019-06-30 Thread Bram Stolk
Thanks for the reply. It is 3.7G byte mapped hardware memory, not just virtual.
Here's the output you asked:

$ cat status 
Name:   pulseaudio
Umask:  0022
State:  S (sleeping)
Tgid:   25499
Ngid:   0
Pid:25499
PPid:   1
TracerPid:  0
Uid:1000100010001000
Gid:1000100010001000
FDSize: 128
Groups: 4 24 27 30 46 116 126 129 131 1000 1001 64055 
NStgid: 25499
NSpid:  25499
NSpgid: 25498
NSsid:  25498
VmPeak:  7469272 kB
VmSize:  7207128 kB
VmLck: 0 kB
VmPin: 0 kB
VmHWM:   3694032 kB
VmRSS:   3694032 kB
RssAnon: 3672980 kB
RssFile:9136 kB
RssShmem:  11916 kB
VmData:  3688908 kB
VmStk:   132 kB
VmExe:84 kB
VmLib: 14096 kB
VmPTE:  7792 kB
VmSwap:0 kB
HugetlbPages:  0 kB
CoreDumping:0
Threads:3
SigQ:   0/95728
SigPnd: 
ShdPnd: 
SigBlk: 
SigIgn: 00381000
SigCgt: 000180004a43
CapInh: 
CapPrm: 
CapEff: 
CapBnd: 003f
CapAmb: 
NoNewPrivs: 0
Seccomp:0
Speculation_Store_Bypass:   thread vulnerable
Cpus_allowed:   f
Cpus_allowed_list:  0-3
Mems_allowed:   
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0001
Mems_allowed_list:  0
voluntary_ctxt_switches:64080270
nonvoluntary_ctxt_switches: 3402344

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

Title:
  Uses too much memory (6Gbyte process)

Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  So, my pulseaudio process is 6Gbyte large, 3.5Gb of that resident in
  memory.

  version: 1:11.1-1ubuntu7.2

  OS: Ubuntu 18.04.2 LTS

  System uptime: 11 days

  Desktop: GNOME

  pmap output:

  $ pmap 25499
  25499:   /usr/bin/pulseaudio --start --log-target=syslog
  55e3bb805000 84K r-x-- pulseaudio
  55e3bba1a000  4K r pulseaudio
  55e3bba1b000  4K rw--- pulseaudio
  55e3bd1b9000132K rw---   [ anon ]
  55e3bd1da000 3671036K rw---   [ anon ]
  7f705c00  65536K rw-s- memfd:pulseaudio (deleted)
  7f706000  65536K rw-s- memfd:pulseaudio (deleted)
  7f706400  65536K rw-s- memfd:pulseaudio (deleted)
  7f706800  65536K rw-s- memfd:pulseaudio (deleted)
  7f706c00  65536K rw-s- memfd:pulseaudio (deleted)
  7f707000  65536K rw-s- memfd:pulseaudio (deleted)
  7f707400  65536K rw-s- memfd:pulseaudio (deleted)
  7f707800  65536K rw-s- memfd:pulseaudio (deleted)
  7f707c00  65536K rw-s- memfd:pulseaudio (deleted)
  7f708000  65536K rw-s- memfd:pulseaudio (deleted)
  7f708400  65536K rw-s- memfd:pulseaudio (deleted)
  7f708800  65536K rw-s- memfd:pulseaudio (deleted)
  7f70bc00  65536K rw-s- memfd:pulseaudio (deleted)
  7f70c000  65536K rw-s- memfd:pulseaudio (deleted)
  7f70c400  65536K rw-s- memfd:pulseaudio (deleted)
  7f70c800  65536K rw-s- memfd:pulseaudio (deleted)
  7f70ec00  65536K rw-s- memfd:pulseaudio (deleted)
  7f70f000  65536K rw-s- memfd:pulseaudio (deleted)
  7f70f400  65536K rw-s- memfd:pulseaudio (deleted)
  7f70f800  65536K rw-s- memfd:pulseaudio (deleted)
  7f70fc00  65536K rw-s- memfd:pulseaudio (deleted)
  7f71  65536K rw-s- memfd:pulseaudio (deleted)
  7f710400  65536K rw-s- memfd:pulseaudio (deleted)
  7f710800  65536K rw-s- memfd:pulseaudio (deleted)
  7f710c00  65536K rw-s- memfd:pulseaudio (deleted)
  7f711000  65536K rw-s- memfd:pulseaudio (deleted)
  7f711400  65536K rw-s- memfd:pulseaudio (deleted)
  7f711800  65536K rw-s- memfd:pulseaudio (deleted)
  7f711c00172K rw---   [ anon ]
  7f711c02b000  65364K -   [ anon ]
  7f7120957000 24K r-x-- libuuid.so.1.3.0
  7f712095d000   2044K - libuuid.so.1.3.0
  7f7120b5c000  4K r libuuid.so.1.3.0
  7f7120b5d000  4K rw--- libuuid.so.1.3.0
  7f7120b5e000 28K r-x-- libSM.so.6.0.1
  7f7120b65000   2044K - libSM.so.6.0.1
  7f7120d64000  4K r libSM.so.6.0.1
  7f7120d65000  4K rw--- libSM.so.6.0.1
  7f7120d66000 92K r-x-- libICE.so.6.3.0
  7f7120d7d000   2044K - libICE.so.6.3.0
  7f7120f7c000  4K r libICE.so.6.3.0
  7f7120f7d000  4K rw--- libICE.so.6.3.0
  7f7120f7e000 12K rw---   [ anon ]
  7f7120f81000  8K r-x-- module-x11-xsmp.so
  7f7120f83000   2048K - module-x11-xsmp.so
  7f7121183000  4K r module-x11-xsmp.so
  

[Touch-packages] [Bug 1834794] Re: Uses too much memory (6Gbyte process)

2019-06-30 Thread Bram Stolk
Running with 'pmap -x' gives this info:

$ pmap -x 25499
25499:   /usr/bin/pulseaudio --start --log-target=syslog
Address   Kbytes RSS   Dirty Mode  Mapping
55e3bb805000  84  84   0 r-x-- pulseaudio
55e3bb805000   0   0   0 r-x-- pulseaudio
55e3bba1a000   4   4   4 r pulseaudio
55e3bba1a000   0   0   0 r pulseaudio
55e3bba1b000   4   4   4 rw--- pulseaudio
55e3bba1b000   0   0   0 rw--- pulseaudio
55e3bd1b9000 132 132 132 rw---   [ anon ]
55e3bd1b9000   0   0   0 rw---   [ anon ]
55e3bd1da000 3671036 3671036 3671036 rw---   [ anon ]
55e3bd1da000   0   0   0 rw---   [ anon ]
...

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

Title:
  Uses too much memory (6Gbyte process)

Status in pulseaudio package in Ubuntu:
  New

Bug description:
  So, my pulseaudio process is 6Gbyte large, 3.5Gb of that resident in
  memory.

  version: 1:11.1-1ubuntu7.2

  OS: Ubuntu 18.04.2 LTS

  System uptime: 11 days

  Desktop: GNOME

  pmap output:

  $ pmap 25499
  25499:   /usr/bin/pulseaudio --start --log-target=syslog
  55e3bb805000 84K r-x-- pulseaudio
  55e3bba1a000  4K r pulseaudio
  55e3bba1b000  4K rw--- pulseaudio
  55e3bd1b9000132K rw---   [ anon ]
  55e3bd1da000 3671036K rw---   [ anon ]
  7f705c00  65536K rw-s- memfd:pulseaudio (deleted)
  7f706000  65536K rw-s- memfd:pulseaudio (deleted)
  7f706400  65536K rw-s- memfd:pulseaudio (deleted)
  7f706800  65536K rw-s- memfd:pulseaudio (deleted)
  7f706c00  65536K rw-s- memfd:pulseaudio (deleted)
  7f707000  65536K rw-s- memfd:pulseaudio (deleted)
  7f707400  65536K rw-s- memfd:pulseaudio (deleted)
  7f707800  65536K rw-s- memfd:pulseaudio (deleted)
  7f707c00  65536K rw-s- memfd:pulseaudio (deleted)
  7f708000  65536K rw-s- memfd:pulseaudio (deleted)
  7f708400  65536K rw-s- memfd:pulseaudio (deleted)
  7f708800  65536K rw-s- memfd:pulseaudio (deleted)
  7f70bc00  65536K rw-s- memfd:pulseaudio (deleted)
  7f70c000  65536K rw-s- memfd:pulseaudio (deleted)
  7f70c400  65536K rw-s- memfd:pulseaudio (deleted)
  7f70c800  65536K rw-s- memfd:pulseaudio (deleted)
  7f70ec00  65536K rw-s- memfd:pulseaudio (deleted)
  7f70f000  65536K rw-s- memfd:pulseaudio (deleted)
  7f70f400  65536K rw-s- memfd:pulseaudio (deleted)
  7f70f800  65536K rw-s- memfd:pulseaudio (deleted)
  7f70fc00  65536K rw-s- memfd:pulseaudio (deleted)
  7f71  65536K rw-s- memfd:pulseaudio (deleted)
  7f710400  65536K rw-s- memfd:pulseaudio (deleted)
  7f710800  65536K rw-s- memfd:pulseaudio (deleted)
  7f710c00  65536K rw-s- memfd:pulseaudio (deleted)
  7f711000  65536K rw-s- memfd:pulseaudio (deleted)
  7f711400  65536K rw-s- memfd:pulseaudio (deleted)
  7f711800  65536K rw-s- memfd:pulseaudio (deleted)
  7f711c00172K rw---   [ anon ]
  7f711c02b000  65364K -   [ anon ]
  7f7120957000 24K r-x-- libuuid.so.1.3.0
  7f712095d000   2044K - libuuid.so.1.3.0
  7f7120b5c000  4K r libuuid.so.1.3.0
  7f7120b5d000  4K rw--- libuuid.so.1.3.0
  7f7120b5e000 28K r-x-- libSM.so.6.0.1
  7f7120b65000   2044K - libSM.so.6.0.1
  7f7120d64000  4K r libSM.so.6.0.1
  7f7120d65000  4K rw--- libSM.so.6.0.1
  7f7120d66000 92K r-x-- libICE.so.6.3.0
  7f7120d7d000   2044K - libICE.so.6.3.0
  7f7120f7c000  4K r libICE.so.6.3.0
  7f7120f7d000  4K rw--- libICE.so.6.3.0
  7f7120f7e000 12K rw---   [ anon ]
  7f7120f81000  8K r-x-- module-x11-xsmp.so
  7f7120f83000   2048K - module-x11-xsmp.so
  7f7121183000  4K r module-x11-xsmp.so
  7f7121184000  4K rw--- module-x11-xsmp.so
  7f7121185000 68K r-x-- libXext.so.6.4.0
  7f7121196000   2044K - libXext.so.6.4.0
  7f7121395000  4K r libXext.so.6.4.0
  7f7121396000  4K rw--- libXext.so.6.4.0
  7f7121397000 20K r-x-- libXtst.so.6.1.0
  7f712139c000   2044K - libXtst.so.6.1.0
  7f712159b000  4K r libXtst.so.6.1.0
  7f712159c000  4K rw--- libXtst.so.6.1.0
  7f712159d000  8K r-x-- module-x11-cork-request.so
  7f712159f000   2044K - module-x11-cork-request.so
  7f712179e000  4K r module-x11-cork-request.so
  7f712179f000  4K rw--- module-x11-cork-request.so
  7f71217a  8K r-x-- module-x11-bell.so
  7f71217a2000   2044K - module-x11-bell.so
  7f71219a1000  4K r module-x11-bell.so
  7f71219a2000  4K rw--- module-x11-bell.so
 

[Touch-packages] [Bug 1834794] [NEW] Uses too much memory (6Gbyte process)

2019-06-30 Thread Bram Stolk
Public bug reported:

So, my pulseaudio process is 6Gbyte large, 3.5Gb of that resident in
memory.

version: 1:11.1-1ubuntu7.2

OS: Ubuntu 18.04.2 LTS

System uptime: 11 days

Desktop: GNOME

pmap output:

$ pmap 25499
25499:   /usr/bin/pulseaudio --start --log-target=syslog
55e3bb805000 84K r-x-- pulseaudio
55e3bba1a000  4K r pulseaudio
55e3bba1b000  4K rw--- pulseaudio
55e3bd1b9000132K rw---   [ anon ]
55e3bd1da000 3671036K rw---   [ anon ]
7f705c00  65536K rw-s- memfd:pulseaudio (deleted)
7f706000  65536K rw-s- memfd:pulseaudio (deleted)
7f706400  65536K rw-s- memfd:pulseaudio (deleted)
7f706800  65536K rw-s- memfd:pulseaudio (deleted)
7f706c00  65536K rw-s- memfd:pulseaudio (deleted)
7f707000  65536K rw-s- memfd:pulseaudio (deleted)
7f707400  65536K rw-s- memfd:pulseaudio (deleted)
7f707800  65536K rw-s- memfd:pulseaudio (deleted)
7f707c00  65536K rw-s- memfd:pulseaudio (deleted)
7f708000  65536K rw-s- memfd:pulseaudio (deleted)
7f708400  65536K rw-s- memfd:pulseaudio (deleted)
7f708800  65536K rw-s- memfd:pulseaudio (deleted)
7f70bc00  65536K rw-s- memfd:pulseaudio (deleted)
7f70c000  65536K rw-s- memfd:pulseaudio (deleted)
7f70c400  65536K rw-s- memfd:pulseaudio (deleted)
7f70c800  65536K rw-s- memfd:pulseaudio (deleted)
7f70ec00  65536K rw-s- memfd:pulseaudio (deleted)
7f70f000  65536K rw-s- memfd:pulseaudio (deleted)
7f70f400  65536K rw-s- memfd:pulseaudio (deleted)
7f70f800  65536K rw-s- memfd:pulseaudio (deleted)
7f70fc00  65536K rw-s- memfd:pulseaudio (deleted)
7f71  65536K rw-s- memfd:pulseaudio (deleted)
7f710400  65536K rw-s- memfd:pulseaudio (deleted)
7f710800  65536K rw-s- memfd:pulseaudio (deleted)
7f710c00  65536K rw-s- memfd:pulseaudio (deleted)
7f711000  65536K rw-s- memfd:pulseaudio (deleted)
7f711400  65536K rw-s- memfd:pulseaudio (deleted)
7f711800  65536K rw-s- memfd:pulseaudio (deleted)
7f711c00172K rw---   [ anon ]
7f711c02b000  65364K -   [ anon ]
7f7120957000 24K r-x-- libuuid.so.1.3.0
7f712095d000   2044K - libuuid.so.1.3.0
7f7120b5c000  4K r libuuid.so.1.3.0
7f7120b5d000  4K rw--- libuuid.so.1.3.0
7f7120b5e000 28K r-x-- libSM.so.6.0.1
7f7120b65000   2044K - libSM.so.6.0.1
7f7120d64000  4K r libSM.so.6.0.1
7f7120d65000  4K rw--- libSM.so.6.0.1
7f7120d66000 92K r-x-- libICE.so.6.3.0
7f7120d7d000   2044K - libICE.so.6.3.0
7f7120f7c000  4K r libICE.so.6.3.0
7f7120f7d000  4K rw--- libICE.so.6.3.0
7f7120f7e000 12K rw---   [ anon ]
7f7120f81000  8K r-x-- module-x11-xsmp.so
7f7120f83000   2048K - module-x11-xsmp.so
7f7121183000  4K r module-x11-xsmp.so
7f7121184000  4K rw--- module-x11-xsmp.so
7f7121185000 68K r-x-- libXext.so.6.4.0
7f7121196000   2044K - libXext.so.6.4.0
7f7121395000  4K r libXext.so.6.4.0
7f7121396000  4K rw--- libXext.so.6.4.0
7f7121397000 20K r-x-- libXtst.so.6.1.0
7f712139c000   2044K - libXtst.so.6.1.0
7f712159b000  4K r libXtst.so.6.1.0
7f712159c000  4K rw--- libXtst.so.6.1.0
7f712159d000  8K r-x-- module-x11-cork-request.so
7f712159f000   2044K - module-x11-cork-request.so
7f712179e000  4K r module-x11-cork-request.so
7f712179f000  4K rw--- module-x11-cork-request.so
7f71217a  8K r-x-- module-x11-bell.so
7f71217a2000   2044K - module-x11-bell.so
7f71219a1000  4K r module-x11-bell.so
7f71219a2000  4K rw--- module-x11-bell.so
7f71219a3000 12K r-x-- module-x11-publish.so
7f71219a6000   2044K - module-x11-publish.so
7f7121ba5000  4K r module-x11-publish.so
7f7121ba6000  4K rw--- module-x11-publish.so
7f7121ba7000  8K r-x-- libcli.so
7f7121ba9000   2044K - libcli.so
7f7121da8000  4K r libcli.so
7f7121da9000  4K rw--- libcli.so
7f7121daa000  8K r-x-- libprotocol-cli.so
7f7121dac000   2044K - libprotocol-cli.so
7f7121fab000  4K r libprotocol-cli.so
7f7121fac000  4K rw--- libprotocol-cli.so
7f7121fad000  8K r-x-- module-cli-protocol-unix.so
7f7121faf000   2044K - module-cli-protocol-unix.so
7f71221ae000  4K r module-cli-protocol-unix.so
7f71221af000  4K rw--- module-cli-protocol-unix.so
7f71221b 24K r-x-- module-filter-apply.so
7f71221b6000   2044K - module-filter-apply.so
7f71223b5000  4K r module-filter-apply.so
7f71223b6000  4K rw--- module-filter-apply.so
7f71223b7000 12K r-x-- module-filter-heuristics.so
7f71223ba000   2044K - module-filter-heuristics.so
7f71225b9000  4K r 

[Touch-packages] [Bug 1438003] Re: (1) Creating object for path '/org/freedesktop/NetworkManager/ActiveConnection/0' failed in libnm-glib.

2015-06-25 Thread Bram Stolk
I'm hitting this after moving to 15.04 while 14.04 was fine.
In the dialog window:
(1) Creating object for path 
'/org/freedesktop/NetworkManager/ActiveConnection/6' failed in libnm-glib.
In /var/log/syslog:
(nm-applet:1417): libnm-glib-WARNING **: async_got_type: could not read 
properties for /org/freedesktop/NetworkManager/ActiveConnection/5: Method Get 
with signature ss on interface org.freedesktop.DBus.Properties doesn't exist

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

Title:
  (1) Creating object for path
  '/org/freedesktop/NetworkManager/ActiveConnection/0' failed in libnm-
  glib.

Status in NetworkManager:
  Confirmed
Status in network-manager package in Ubuntu:
  Triaged

Bug description:
  While attempting to connect to an SSID for the first time, it fails, and I 
consistently get:
  (1) Creating object for path 
'/org/freedesktop/NetworkManager/ActiveConnection/0' failed in libnm-glib.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: network-manager 0.9.10.0-4ubuntu11
  ProcVersionSignature: Ubuntu 3.19.0-10.10-generic 3.19.2
  Uname: Linux 3.19.0-10-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.16.2-0ubuntu5
  Architecture: amd64
  CurrentDesktop: GNOME-Flashback:Unity
  Date: Sun Mar 29 23:08:37 2015
  IfupdownConfig:
   # interfaces(5) file used by ifup(8) and ifdown(8)
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2015-03-29 (0 days ago)
  InstallationMedia: Ubuntu 15.04 Vivid Vervet - Beta amd64 (20150326)
  IpRoute:
   default via 192.168.1.1 dev wlan0  proto static  metric 1024 
   169.254.0.0/16 dev wlan0  scope link  metric 1000 
   192.168.1.0/24 dev wlan0  proto kernel  scope link  src 192.168.1.2
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=true
   WWANEnabled=true
   WimaxEnabled=true
  SourcePackage: network-manager
  UpgradeStatus: No upgrade log present (probably fresh install)
  nmcli-dev:
   DEVICE  TYPE  STATE DBUS-PATH  
CONNECTION  CON-UUID  CON-PATH  
 
   wlan0   wifi  connected /org/freedesktop/NetworkManager/Devices/4  
www.ubuntu.com  71c36534-c491-4479-aa91-9238b10f3945  
/org/freedesktop/NetworkManager/ActiveConnection/1 
   wlan1   wifi  disconnected  /org/freedesktop/NetworkManager/Devices/2  
--  ----
 
   eth0ethernet  unavailable   /org/freedesktop/NetworkManager/Devices/1  
--  ----
 
   lo  loopback  unmanaged /org/freedesktop/NetworkManager/Devices/0  
--  ----
  nmcli-nm: Error: command ['nmcli', '-f', 'all', 'nm'] failed with exit code 
2: Error: Object 'nm' is unknown, try 'nmcli help'.

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager/+bug/1438003/+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