[Bug 1355714] Re: blueproximity is not working

2020-04-17 Thread phanky5
Same problem on Ubuntu 19.10.

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

Title:
  blueproximity is not working

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

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

[Bug 1856584] [NEW] Graceful Shutdown [wishlist]

2019-12-16 Thread phanky5
Public bug reported:

I am having this issue with Ubuntu 18.04. where it does not shutdown
gracefully and then boots into Grub recovery mode when I start it back
up. This typically happens if I don't close each and every program
properly before shutdown. I am aware this is caused by the faulty
shutdown behaviour of certain programs. However, this does not make it
any better as there are many programs which don't close themselves
properly on shutdown and I have no influence on this. This is not very
convenient.

This is what I would expect (how it works on Windows for example):

- When I power off a screen should appear showing me a list of programs
which are still open and asking me if I want to aboard the power off to
save my progress or if I want to proceed with the shutdown.

- In case I proceed with the shutdown Ubuntu closes the programs
properly and then powers off.

Intermediate fix: You can disable Grub recovery from showing by putting
this line into /etc/default/grub : GRUB_RECORDFAIL_TIMEOUT="0" This is
not a proper solution though as Ubuntu still fails to shutdown
gracefully. Grub recovery mode is merely hidden (not recommended).

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: shutdown

** Package changed: partman-auto (Ubuntu) => ubuntu

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

Title:
  Graceful Shutdown [wishlist]

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

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

[Bug 1767299] Re: Ubuntu 18.04 Installer creates swap partition too small

2019-12-16 Thread phanky5
@mjm3413 The steps I outlined further above work just fine with an
encrypted SSD.

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

Title:
  Ubuntu 18.04 Installer creates swap partition too small

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/partman-auto/+bug/1767299/+subscriptions

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

[Bug 1844875] [NEW] Recover from Suspend fails if displays are changed

2019-09-21 Thread phanky5
Public bug reported:

When I have a second screen connected and I issue suspend and then
disconnect the display the system will be unable to recover from
suspend.

I would expect it not to matter if external displays are connected to my
laptop or not in between suspending and recovering from suspend. It's
normal to suspend a laptop before unplugging the display and for example
going to the office.

Ubuntu 18.04.3, Lenovo U330P

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


** Tags: suspend-resume

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

Title:
  Recover from Suspend fails if displays are changed

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

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

[Bug 1844874] [NEW] Hibernation fails with second display connected

2019-09-21 Thread phanky5
Public bug reported:

Hibernation fails if a second display is connected via HDMI. Fails
consistently.

Ubuntu 18.04.3, Lenovo U330P, second display connected over HDMI, using
a Swap file.

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


** Tags: hibernate

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

Title:
  Hibernation fails with second display connected

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

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

[Bug 1767299] Re: Ubuntu 18.04 Installer creates swap partition too small

2019-09-18 Thread phanky5
For reasons stated further above I like to propose changing the status
of this bug to critical.

I eventually managed to setup a swap file and enable hibernation. The
following steps are copy pasted together from various different
websites. Here are the changes I have made:

First find out how large your swap file should be. There are several
recommendation tables you can find on Google. Adjust the needed size of
the swap file below to your needs.

Setup swap file:

sudo swapoff -a# Turn off all swap space.
sudo rm /swapfile  # Delete current swap file.
sudo dd if=/dev/zero of=/swapfile bs=1M count=16384 # Make a new 16GB swap 
file. (Adjust to your needs)
sudo chown root:root /swapfile # Set owner to root, group 
root
sudo chmod 0600 /swapfile  # Set permission to root
sudo mkswap /swapfile  # Convert file to swap format
sudo swapon /swapfile  # Enable

Enable to swap file on boot. Add the following line to /etc/fstab using your 
favorite editor: 
/swapfile   noneswapsw  0   0

Enable hibernation:
sudo apt install uswsusp
sudo apt install hibernate

Test if hibernation works with this command:
sudo hibernate

If everything looks good continue by changing the hibernation engine to use the 
hibernate command. Edit hibernation service:
sudo systemctl edit systemd-hibernate.service

Paste the following code:
[Service]
ExecStart=
ExecStartPre=-/bin/run-parts -v -a pre /usr/lib/systemd/system-sleep
ExecStart=/usr/sbin/s2disk
ExecStartPost=-/bin/run-parts -v --reverse -a post /usr/lib/systemd/system-sleep

Next update systemd:
sudo systemctl daemon-reload

Now you should be able to hibernate with the default system command:
sudo systemctl hibernate

Enable hibernation in the UI by following this guide:
http://ubuntuhandbook.org/index.php/2018/05/add-hibernate-option-ubuntu-18-04/

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

Title:
  Ubuntu 18.04 Installer creates swap partition too small

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/partman-auto/+bug/1767299/+subscriptions

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

[Bug 1351267] Re: partman-auto prefers to give disk to swap, leaving root too small

2019-09-18 Thread phanky5
I find it a very questionable decision to release an installer that
focuses on uncommon high-memory systems while the average user is
screwed over with a way too low swap partition. It should be the other
way around: Normal setups should take precedence over unusual high-
memory setups.

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

Title:
  partman-auto prefers to give disk to swap, leaving root too small

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/partman-auto/+bug/1351267/+subscriptions

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

[Bug 1767299] Re: Ubuntu 18.04 Installer creates swap partition too small

2019-09-18 Thread phanky5
Setting up a Swap file is easy enough. Yet it's not the same as having a
Swap partition with the correct size. It brings problems down the road
with hibernation. I believe the average user wants a large enough Swap
partition out of the box with hibernation enabled. More advanced users
who don't like this kind of setup can feel free to change this to
whatever they want. It's important to make Ubuntu Desktop usable for the
average person out of the box without any advanced trickery or important
features like hibernation disabled.

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

Title:
  Ubuntu 18.04 Installer creates swap partition too small

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/partman-auto/+bug/1767299/+subscriptions

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

[Bug 1767299] Re: Ubuntu 18.04 Installer creates swap partition too small

2019-09-18 Thread phanky5
This is a major problem. I am now forced to do a full reinstall with
proper swap allocation. This will set me back at least 1 full business
day until I synced all my files again. There are not many common users
out there who will go to that extend just to move over to Ubuntu.

If there is any solution to easily resize the swap partition on LUKS/
LVM instructions would be greatly appreciated.

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

Title:
  Ubuntu 18.04 Installer creates swap partition too small

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/partman-auto/+bug/1767299/+subscriptions

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