DHCP Issues after simultaneous Plex/Pihole install Ubuntu 18.04ISC DHCP IssuesNetwork issue after clean install of Ubuntu Server & choosing DHCPSending DNS requests through VPNConfigure bonded 802.3ad network using netplan on Ubuntu 18.04Find DHCP Lease & DNS Info In 18.04 LTSDoes Ubuntu 18.04 use dhclient?Ubuntu 18.04 Login window loopnetplan issue with Ubuntu 18.04.1 Server. No network connectivity (no routes either)Intermittent network after upgrading to Ubuntu server 18.04Netplan on Ubuntu 18.10 (Cosmic Cuttlefish): DHCP4 + static routes

Can I sign legal documents with a smiley face?

Drawing ramified coverings with tikz

We have a love-hate relationship

Can someone explain how this makes sense electrically?

Why has "pence" been used in this sentence, not "pences"?

Why we can't differentiate a polynomial equation as many times as we wish?

Longest common substring in linear time

How to decide convergence of Integrals

Why did the HMS Bounty go back to a time when whales are already rare?

When quoting, must I also copy hyphens used to divide words that continue on the next line?

Can we have a perfect cadence in a minor key?

How will losing mobility of one hand affect my career as a programmer?

Global amount of publications over time

Do Legal Documents Require Signing In Standard Pen Colors?

Do varchar(max), nvarchar(max) and varbinary(max) columns affect select queries?

What (else) happened July 1st 1858 in London?

How to color a curve

A Permanent Norse Presence in America

Two-sided logarithm inequality

Why does Async/Await work properly when the loop is inside the async function and not the other way around?

Do the concepts of IP address and network interface not belong to the same layer?

Freedom of speech and where it applies

Will adding a BY-SA image to a blog post make the entire post BY-SA?

Could the E-bike drivetrain wear down till needing replacement after 400 km?



DHCP Issues after simultaneous Plex/Pihole install Ubuntu 18.04


ISC DHCP IssuesNetwork issue after clean install of Ubuntu Server & choosing DHCPSending DNS requests through VPNConfigure bonded 802.3ad network using netplan on Ubuntu 18.04Find DHCP Lease & DNS Info In 18.04 LTSDoes Ubuntu 18.04 use dhclient?Ubuntu 18.04 Login window loopnetplan issue with Ubuntu 18.04.1 Server. No network connectivity (no routes either)Intermittent network after upgrading to Ubuntu server 18.04Netplan on Ubuntu 18.10 (Cosmic Cuttlefish): DHCP4 + static routes













0















Usually my Google-Fu allows me to solve most issues with Linux after enough time, but this one has me stumped.



I recently tried to install Pihole on my Plex box, which is running ubuntu 18.04.2. Everything worked fine, but pihole wasn't able to reliably block the main things I wanted blocked (mainly youtube ads over my roku), so I uninstalled it. Ever since I did that, I've been having DHCP issues with my Plex server.



I've figured out two band-aids to get things working, but I want a proper fix.



  1. I can edit the resolv.conf file to add my router, or cloudflare as a DNS, which fixes all issues.

  2. I can edit the netplan .yaml file to force DHCP on my ethernet device, and then apply the netplan config. This also fixes all issues.

The problem with both of these fixes is they don't persist after reboot. I think something somewhere is going wrong with Network-Manager but I'm not sure what, and I'm not sure how to fix it. I'm guessing it has something to do with PiHole not really having a true "clean" uninstall option.



I've tried the following without success:



  1. Unplug and replug all networking hardware coupled with a restart of the Plex

  2. sudo apt-get -d --reinstall network-manager network-manager-gnome

Upon reboot dig www.google.com is always unsuccessful, and ping -c 3 8.8.8.8 is always successful. Trying to access google via 8.8.8.8 is always unsuccessful until one of the top fixes is applied.



I'm not quite sure what will be needed to fix this but I appreciate the time of anyone who's reading this. I realize I could probably make something that runs at startup which runs the netplan apply command, but I feel like there's a better solution to this.



Thanks!



EDIT: I added this after another question similar to mine had the output requested.--------------------------
sudo lshw -C network gives:



 *-network 
description: Ethernet interface
product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:01:00.0
logical name: enp1s0
version: 15
serial: 30:9c:23:d6:d4:c8
size: 1Gbit/s
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168h-2_0.0.2 02/26/15 ip=10.0.1.9 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
resources: irq:16 ioport:3000(size=256) memory:a1104000-a1104fff memory:a1100000-a1103fff


ifconfig gives:



enp1s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 10.0.1.9 netmask 255.255.255.0 broadcast 10.0.1.255
inet6 fe80::329c:23ff:fed6:d4c8 prefixlen 64 scopeid 0x20<link>
ether 30:9c:23:d6:d4:c8 txqueuelen 1000 (Ethernet)
RX packets 29929 bytes 8095074 (8.0 MB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 46972 bytes 48312760 (48.3 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 27784 bytes 41332037 (41.3 MB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 27784 bytes 41332037 (41.3 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0


cat /etc/netplan/*.yaml gives:



# Let NetworkManager manage all devices on this system
network:
version: 2
renderer: NetworkManager
ethernets:
enp1s0:
dhcp4: true









share|improve this question









New contributor




BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
























    0















    Usually my Google-Fu allows me to solve most issues with Linux after enough time, but this one has me stumped.



    I recently tried to install Pihole on my Plex box, which is running ubuntu 18.04.2. Everything worked fine, but pihole wasn't able to reliably block the main things I wanted blocked (mainly youtube ads over my roku), so I uninstalled it. Ever since I did that, I've been having DHCP issues with my Plex server.



    I've figured out two band-aids to get things working, but I want a proper fix.



    1. I can edit the resolv.conf file to add my router, or cloudflare as a DNS, which fixes all issues.

    2. I can edit the netplan .yaml file to force DHCP on my ethernet device, and then apply the netplan config. This also fixes all issues.

    The problem with both of these fixes is they don't persist after reboot. I think something somewhere is going wrong with Network-Manager but I'm not sure what, and I'm not sure how to fix it. I'm guessing it has something to do with PiHole not really having a true "clean" uninstall option.



    I've tried the following without success:



    1. Unplug and replug all networking hardware coupled with a restart of the Plex

    2. sudo apt-get -d --reinstall network-manager network-manager-gnome

    Upon reboot dig www.google.com is always unsuccessful, and ping -c 3 8.8.8.8 is always successful. Trying to access google via 8.8.8.8 is always unsuccessful until one of the top fixes is applied.



    I'm not quite sure what will be needed to fix this but I appreciate the time of anyone who's reading this. I realize I could probably make something that runs at startup which runs the netplan apply command, but I feel like there's a better solution to this.



    Thanks!



    EDIT: I added this after another question similar to mine had the output requested.--------------------------
    sudo lshw -C network gives:



     *-network 
    description: Ethernet interface
    product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
    vendor: Realtek Semiconductor Co., Ltd.
    physical id: 0
    bus info: pci@0000:01:00.0
    logical name: enp1s0
    version: 15
    serial: 30:9c:23:d6:d4:c8
    size: 1Gbit/s
    capacity: 1Gbit/s
    width: 64 bits
    clock: 33MHz
    capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
    configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168h-2_0.0.2 02/26/15 ip=10.0.1.9 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
    resources: irq:16 ioport:3000(size=256) memory:a1104000-a1104fff memory:a1100000-a1103fff


    ifconfig gives:



    enp1s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
    inet 10.0.1.9 netmask 255.255.255.0 broadcast 10.0.1.255
    inet6 fe80::329c:23ff:fed6:d4c8 prefixlen 64 scopeid 0x20<link>
    ether 30:9c:23:d6:d4:c8 txqueuelen 1000 (Ethernet)
    RX packets 29929 bytes 8095074 (8.0 MB)
    RX errors 0 dropped 0 overruns 0 frame 0
    TX packets 46972 bytes 48312760 (48.3 MB)
    TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

    lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
    inet 127.0.0.1 netmask 255.0.0.0
    inet6 ::1 prefixlen 128 scopeid 0x10<host>
    loop txqueuelen 1000 (Local Loopback)
    RX packets 27784 bytes 41332037 (41.3 MB)
    RX errors 0 dropped 0 overruns 0 frame 0
    TX packets 27784 bytes 41332037 (41.3 MB)
    TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0


    cat /etc/netplan/*.yaml gives:



    # Let NetworkManager manage all devices on this system
    network:
    version: 2
    renderer: NetworkManager
    ethernets:
    enp1s0:
    dhcp4: true









    share|improve this question









    New contributor




    BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      0












      0








      0








      Usually my Google-Fu allows me to solve most issues with Linux after enough time, but this one has me stumped.



      I recently tried to install Pihole on my Plex box, which is running ubuntu 18.04.2. Everything worked fine, but pihole wasn't able to reliably block the main things I wanted blocked (mainly youtube ads over my roku), so I uninstalled it. Ever since I did that, I've been having DHCP issues with my Plex server.



      I've figured out two band-aids to get things working, but I want a proper fix.



      1. I can edit the resolv.conf file to add my router, or cloudflare as a DNS, which fixes all issues.

      2. I can edit the netplan .yaml file to force DHCP on my ethernet device, and then apply the netplan config. This also fixes all issues.

      The problem with both of these fixes is they don't persist after reboot. I think something somewhere is going wrong with Network-Manager but I'm not sure what, and I'm not sure how to fix it. I'm guessing it has something to do with PiHole not really having a true "clean" uninstall option.



      I've tried the following without success:



      1. Unplug and replug all networking hardware coupled with a restart of the Plex

      2. sudo apt-get -d --reinstall network-manager network-manager-gnome

      Upon reboot dig www.google.com is always unsuccessful, and ping -c 3 8.8.8.8 is always successful. Trying to access google via 8.8.8.8 is always unsuccessful until one of the top fixes is applied.



      I'm not quite sure what will be needed to fix this but I appreciate the time of anyone who's reading this. I realize I could probably make something that runs at startup which runs the netplan apply command, but I feel like there's a better solution to this.



      Thanks!



      EDIT: I added this after another question similar to mine had the output requested.--------------------------
      sudo lshw -C network gives:



       *-network 
      description: Ethernet interface
      product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
      vendor: Realtek Semiconductor Co., Ltd.
      physical id: 0
      bus info: pci@0000:01:00.0
      logical name: enp1s0
      version: 15
      serial: 30:9c:23:d6:d4:c8
      size: 1Gbit/s
      capacity: 1Gbit/s
      width: 64 bits
      clock: 33MHz
      capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
      configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168h-2_0.0.2 02/26/15 ip=10.0.1.9 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
      resources: irq:16 ioport:3000(size=256) memory:a1104000-a1104fff memory:a1100000-a1103fff


      ifconfig gives:



      enp1s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
      inet 10.0.1.9 netmask 255.255.255.0 broadcast 10.0.1.255
      inet6 fe80::329c:23ff:fed6:d4c8 prefixlen 64 scopeid 0x20<link>
      ether 30:9c:23:d6:d4:c8 txqueuelen 1000 (Ethernet)
      RX packets 29929 bytes 8095074 (8.0 MB)
      RX errors 0 dropped 0 overruns 0 frame 0
      TX packets 46972 bytes 48312760 (48.3 MB)
      TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

      lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
      inet 127.0.0.1 netmask 255.0.0.0
      inet6 ::1 prefixlen 128 scopeid 0x10<host>
      loop txqueuelen 1000 (Local Loopback)
      RX packets 27784 bytes 41332037 (41.3 MB)
      RX errors 0 dropped 0 overruns 0 frame 0
      TX packets 27784 bytes 41332037 (41.3 MB)
      TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0


      cat /etc/netplan/*.yaml gives:



      # Let NetworkManager manage all devices on this system
      network:
      version: 2
      renderer: NetworkManager
      ethernets:
      enp1s0:
      dhcp4: true









      share|improve this question









      New contributor




      BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      Usually my Google-Fu allows me to solve most issues with Linux after enough time, but this one has me stumped.



      I recently tried to install Pihole on my Plex box, which is running ubuntu 18.04.2. Everything worked fine, but pihole wasn't able to reliably block the main things I wanted blocked (mainly youtube ads over my roku), so I uninstalled it. Ever since I did that, I've been having DHCP issues with my Plex server.



      I've figured out two band-aids to get things working, but I want a proper fix.



      1. I can edit the resolv.conf file to add my router, or cloudflare as a DNS, which fixes all issues.

      2. I can edit the netplan .yaml file to force DHCP on my ethernet device, and then apply the netplan config. This also fixes all issues.

      The problem with both of these fixes is they don't persist after reboot. I think something somewhere is going wrong with Network-Manager but I'm not sure what, and I'm not sure how to fix it. I'm guessing it has something to do with PiHole not really having a true "clean" uninstall option.



      I've tried the following without success:



      1. Unplug and replug all networking hardware coupled with a restart of the Plex

      2. sudo apt-get -d --reinstall network-manager network-manager-gnome

      Upon reboot dig www.google.com is always unsuccessful, and ping -c 3 8.8.8.8 is always successful. Trying to access google via 8.8.8.8 is always unsuccessful until one of the top fixes is applied.



      I'm not quite sure what will be needed to fix this but I appreciate the time of anyone who's reading this. I realize I could probably make something that runs at startup which runs the netplan apply command, but I feel like there's a better solution to this.



      Thanks!



      EDIT: I added this after another question similar to mine had the output requested.--------------------------
      sudo lshw -C network gives:



       *-network 
      description: Ethernet interface
      product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
      vendor: Realtek Semiconductor Co., Ltd.
      physical id: 0
      bus info: pci@0000:01:00.0
      logical name: enp1s0
      version: 15
      serial: 30:9c:23:d6:d4:c8
      size: 1Gbit/s
      capacity: 1Gbit/s
      width: 64 bits
      clock: 33MHz
      capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
      configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168h-2_0.0.2 02/26/15 ip=10.0.1.9 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
      resources: irq:16 ioport:3000(size=256) memory:a1104000-a1104fff memory:a1100000-a1103fff


      ifconfig gives:



      enp1s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
      inet 10.0.1.9 netmask 255.255.255.0 broadcast 10.0.1.255
      inet6 fe80::329c:23ff:fed6:d4c8 prefixlen 64 scopeid 0x20<link>
      ether 30:9c:23:d6:d4:c8 txqueuelen 1000 (Ethernet)
      RX packets 29929 bytes 8095074 (8.0 MB)
      RX errors 0 dropped 0 overruns 0 frame 0
      TX packets 46972 bytes 48312760 (48.3 MB)
      TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

      lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
      inet 127.0.0.1 netmask 255.0.0.0
      inet6 ::1 prefixlen 128 scopeid 0x10<host>
      loop txqueuelen 1000 (Local Loopback)
      RX packets 27784 bytes 41332037 (41.3 MB)
      RX errors 0 dropped 0 overruns 0 frame 0
      TX packets 27784 bytes 41332037 (41.3 MB)
      TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0


      cat /etc/netplan/*.yaml gives:



      # Let NetworkManager manage all devices on this system
      network:
      version: 2
      renderer: NetworkManager
      ethernets:
      enp1s0:
      dhcp4: true






      networking 18.04 dhcp plex






      share|improve this question









      New contributor




      BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question









      New contributor




      BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question








      edited 2 mins ago







      BesselFunct













      New contributor




      BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 24 mins ago









      BesselFunctBesselFunct

      11




      11




      New contributor




      BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      BesselFunct is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















          0






          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "89"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );






          BesselFunct is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1128383%2fdhcp-issues-after-simultaneous-plex-pihole-install-ubuntu-18-04%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          BesselFunct is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          BesselFunct is a new contributor. Be nice, and check out our Code of Conduct.












          BesselFunct is a new contributor. Be nice, and check out our Code of Conduct.











          BesselFunct is a new contributor. Be nice, and check out our Code of Conduct.














          Thanks for contributing an answer to Ask Ubuntu!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1128383%2fdhcp-issues-after-simultaneous-plex-pihole-install-ubuntu-18-04%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Are there any comparative studies done between Ashtavakra Gita and Buddhim?How is it wrong to believe that a self exists, or that it doesn't?Can you criticise or improve Ven. Bodhi's description of MahayanaWas the doctrine of 'Anatta', accepted as doctrine by modern Buddhism, actually taught by the Buddha?Relationship between Buddhism, Hinduism and Yoga?Comparison of Nirvana, Tao and Brahman/AtmaIs there a distinction between “ego identity” and “craving/hating”?Are there many differences between Taoism and Buddhism?Loss of “faith” in buddhismSimilarity between creation in Abrahamic religions and beginning of life in Earth mentioned Agganna Sutta?Are there studies about the difference between meditating in the morning versus in the evening?Can one follow Hinduism and Buddhism at the same time?Are there any prohibitions on participating in other religion's practices?Psychology of 'flow'

          Where else does the Shulchan Aruch quote an authority by name?Parashat Metzora+HagadolPesach/PassoverShulchan Aruch UTF-8Anonymous glosses in the Shulchan AruchWhy is the Shulchan Aruch definitive?Siman 32, Kitzur Shulchan Aruch: UntranslatedLitvaks/Yeshivish and Shulchan AruchBuying a Shulchan AruchEnglish version of SHULCHAN ARUCHIs there any place where Shulchan Aruch rules with the Rosh against the Rif and Rambam?Are there practices where Sepharadim do not hold by Shulchan Aruch?5th part of the shulchan aruch

          fallocate: fallocate failed: Text file busy in Ubuntu 17.04? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)defragmenting and increasing performance of old lubuntu system with swap partitionIssue with increasing the root partition from the swapthis /usr/bin/dpkg returned error || ubuntu-16.04, 64bitDefault 17.04 swap file locationHow to Resize Ubuntu 17.04 Zesty Swap file size?Ubuntu freezes from online formsMy Laptop is not starting after upgrade ubuntu 16.04 (Kernel 4.8.0-38 to 04.10.0-36)hcp: ERROR: FALLOCATE FAILED!Not sure my swap is being usedWine 3.0 asking for more virtual free swap