[Bug 1624320] Re: systemd-resolved appends 127.0.0.53 to resolv.conf alongside existing entries

2019-12-15 Thread FFO
Problem exist with Ubuntu 19.10
The netplan configuration below just works
then after some time (I can't say when) it just stops resolving.
executing netplan apply make the DNS resolution work again.

--
root@nas:/home/ff# nslookup www.cisco.com
Server: 127.0.0.53
Address:127.0.0.53#53

** server can't find www.cisco.com: SERVFAIL

root@nas:/home/ff# netplan apply
root@nas:/home/ff# nslookup www.cisco.com
Server: 127.0.0.53
Address:127.0.0.53#53

Non-authoritative answer:
www.cisco.com   canonical name = www.cisco.com.akadns.net.
www.cisco.com.akadns.netcanonical name = wwwds.cisco.com.edgekey.net.
wwwds.cisco.com.edgekey.net canonical name = 
wwwds.cisco.com.edgekey.net.globalredir.akadns.net.
wwwds.cisco.com.edgekey.net.globalredir.akadns.net  canonical name = 
e2867.dsca.akamaiedge.net.
Name:   e2867.dsca.akamaiedge.net
Address: 104.69.84.242
Name:   e2867.dsca.akamaiedge.net
Address: 2a02:26f0:e1:391::b33
Name:   e2867.dsca.akamaiedge.net
Address: 2a02:26f0:e1:381::b33


--

network:
ethernets:
eth0:
dhcp4: no
eth1:
dhcp4: no
eth2:
dhcp4: no
eth3:
dhcp4: no
bridges:
br0:
interfaces: [eth0, eth1, eth2, eth3]
macaddress: 00:51:82:f1:f0:02
dhcp4: no
addresses: [192.168.0.32/24]
gateway4: 192.168.0.2
nameservers:
  addresses: [192.168.0.2]

version: 2

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

Title:
  systemd-resolved appends 127.0.0.53 to resolv.conf alongside existing
  entries

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

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

[Bug 1390520] Re: virtual machine fails to start with connected audio cd

2017-03-29 Thread FFO
Same on Yakketi: can access data CDs but not audio CDs from Windows VM.

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

Title:
  virtual machine fails to start with connected audio cd

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

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


[Bug 1390520] Re: virtual machine fails to start with connected audio cd

2017-03-29 Thread FFO
Same on Yakketi: can access data CDs but not audio CDs from Windows VM.
Either with SATA or SCSI CDROM from QEMU (last test SCSI):


  
  
  
  
  
  



  
  
  
  
  


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

Title:
  virtual machine fails to start with connected audio cd

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

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


[Bug 1668291] [NEW] [libfdt]: does not create array nodes properly

2017-02-27 Thread FFO
Public bug reported:

Note: this is a bug of DTC version 1.4.0 that is working properly with
1.4.2 (don't know what version actually solved the bug)

Way to reproduce: 
compile the test program below:

gcc -o testdt testdt.c -lfdt
./testdt > test.dtb
fdtdump test.dtb

The values of reg are incorrect for 1.4.0 and correct for 1.4.2

-
# testdt.c

#include 
#include 
#include 

#define _FDT(code) \
{ \
int err = (code); \
if (err) \
fprintf(stderr, #code ": %s", fdt_strerror(err)); \
}

static inline int fdt_property_reg64(void *fdt, const char *name, uint64_t 
val1, uint32_t val2)
{
struct {
fdt64_t address;
fdt32_t size;
}  __attribute__((packed)) val;
val.address = cpu_to_fdt64(val1);
val.size = cpu_to_fdt32(val2);
return fdt_property(fdt, name, (void*), sizeof(val));
}

int main(void)
{
#define SIZE 4096
void *staging_fdt = calloc(SIZE, 1);
_FDT(fdt_create(staging_fdt, SIZE));
_FDT(fdt_finish_reservemap(staging_fdt));
_FDT(fdt_begin_node(staging_fdt, ""));
_FDT(fdt_begin_node(staging_fdt, "soc"));
_FDT(fdt_property_cell(staging_fdt, "#address-cells", 0x2));
_FDT(fdt_property_cell(staging_fdt, "#size-cells", 0x1));
_FDT(fdt_begin_node(staging_fdt, "kvm-gpio@0e"));
_FDT(fdt_property_string(staging_fdt, "compatible", "basic-mmio-gpio"));
_FDT(fdt_property_reg64(staging_fdt, "reg", 0xeULL, 4));
_FDT(fdt_end_node(staging_fdt));
_FDT(fdt_end_node(staging_fdt));
_FDT(fdt_end_node(staging_fdt));
_FDT(fdt_finish(staging_fdt));

fwrite(staging_fdt, fdt_totalsize(staging_fdt), 1, stdout);

return 0;
}

** Affects: device-tree-compiler (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  [libfdt]: does not create array nodes properly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/device-tree-compiler/+bug/1668291/+subscriptions

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


[Bug 685096] Re: USB Passthrough not working for Windows 7 guest

2015-12-22 Thread FFO
The only way to see my iPhone (or any USB device) in the Windows guest
is to have it redirected via "Spice", not with libvirt xml capture
elements.

Select Redirect USB device in virt-viewer and it just works.

I have upgraded to Qemu 2.4, libvirt 1.2.21 and upgraded the qemu machine to 
"q35" as I tried hard to make it work via xml.
Now that I have it working, I don't plan to check if it works with less current 
software / machines.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu in Ubuntu.
https://bugs.launchpad.net/bugs/685096

Title:
  USB Passthrough not working for Windows 7 guest

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 685096] Re: USB Passthrough not working for Windows 7 guest

2015-12-22 Thread FFO
The only way to see my iPhone (or any USB device) in the Windows guest
is to have it redirected via "Spice", not with libvirt xml capture
elements.

Select Redirect USB device in virt-viewer and it just works.

I have upgraded to Qemu 2.4, libvirt 1.2.21 and upgraded the qemu machine to 
"q35" as I tried hard to make it work via xml.
Now that I have it working, I don't plan to check if it works with less current 
software / machines.

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

Title:
  USB Passthrough not working for Windows 7 guest

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

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