Re: Network bridge and MAC address exposure

2022-09-04 Thread Igor Cicimov
On Sun, Sep 4, 2022 at 4:40 PM Rand Pritelrohm wrote: > Hello, > > I am not a network specialist and despite a lot of documentation > readings and searchs on the net I haven't get a simple and clear answer > to my question. > > Consider this simple schematic: > > > | VM | -> | HOST |

Re: failing HDD, ddrescue says remaning time is 7104d

2022-09-04 Thread David Wright
On Sat 03 Sep 2022 at 17:46:39 (+0200), ppr wrote: > Le 01/09/2022 à 00:24, David Wright a écrit : > > > -R --reverse will start an attempt from the end of the disk, and if > > you're extremely lucky, it might copy most of the remaining 960-odd GB > > of data. OTOH it might only confirm that the d

Re: Seeing progross during fsck on boot

2022-09-04 Thread Greg Wooledge
On Mon, Sep 05, 2022 at 01:19:29AM +1000, David wrote: > 6) e2fsck is capable of checking multiple filesystems at the same time, for >faster completion when there are multiple drives with the same number in >the 'passno' field of /etc/fstab. > >But, as noted by David Wright, e2fsck is

Re: Seeing progross during fsck on boot

2022-09-04 Thread David
On Sun, 4 Sept 2022 at 22:15, Mike wrote: > Thanks for the very detailed description. This was just what I was > after. I'd kind of figured a few things, that it likely needed some > kind of switch to fsck to produce output and likely systemd was either > not passing that flag or swallowing the

Re: Network bridge and MAC address exposure

2022-09-04 Thread tomas
On Sun, Sep 04, 2022 at 09:42:34AM +0200, john doe wrote: > On 9/4/2022 8:39 AM, Rand Pritelrohm wrote: [...] > > #Then I have to enable routing > > echo '1' > /proc/sys/net/ipv4/ip_forward > > iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE > > > > You are answering your ow

Re: Seeing progross during fsck on boot

2022-09-04 Thread David Wright
On Sun 04 Sep 2022 at 13:15:24 (+0100), Mike wrote: > On Sun, Sep 04, 2022 at 01:01:03AM +1000, David wrote: > > On Sun, 4 Sept 2022 at 00:18, Charles Curley > > wrote: > > > On Sat, 3 Sep 2022 22:57:19 +1000 David wrote: > > > > > > I imagine that could be overcome by copying the above service

Re: booting 5.10 686-pae kernel on domU

2022-09-04 Thread Tim Woodall
On Sun, 4 Sep 2022, Andy Smith wrote: Hello, On Sun, Sep 04, 2022 at 11:07:35AM +0100, Tim Woodall wrote: Should I be able to boot a 686-pae i686 kernel on a xen domU (bullseye - but bookworm fails too) The Linux kernel removed PV mode 32-bit Xen domU support at version 5.9. What type of vir

Re: Seeing progross during fsck on boot

2022-09-04 Thread Mike
On Sun, Sep 04, 2022 at 01:01:03AM +1000, David wrote: > On Sun, 4 Sept 2022 at 00:18, Charles Curley > wrote: > > On Sat, 3 Sep 2022 22:57:19 +1000 David wrote: > > > > I imagine that could be overcome by copying the above service file to > > > /etc/lib/systemd/system/systemd-fsck-root.servic

Re: Want to contibute to debian

2022-09-04 Thread The Wanderer
On 2022-09-04 at 07:19, piorunz wrote: > On 03/09/2022 08:44, 5HROUD wrote: > >> Hi there, >> I am a student who develops software application for Linux. Because all >> my project are opensource I wish I could work as a debian developer. >> Since I love using debian and also wanted to contribute t

Re: Want to contibute to debian

2022-09-04 Thread piorunz
On 03/09/2022 08:44, 5HROUD wrote: Hi there, I am a student who develops software application for Linux. Because all my project are opensource I wish I could work as a debian developer. Since I love using debian and also wanted to contribute to it. Thanks, Shroud Sent with Proton Mail

Re: booting 5.10 686-pae kernel on domU

2022-09-04 Thread Andy Smith
Hello, On Sun, Sep 04, 2022 at 11:07:35AM +0100, Tim Woodall wrote: > Should I be able to boot a 686-pae i686 kernel on a xen domU (bullseye - > but bookworm fails too) The Linux kernel removed PV mode 32-bit Xen domU support at version 5.9. What type of virtualisation are you using? (show us you

booting 5.10 686-pae kernel on domU

2022-09-04 Thread Tim Woodall
Hi, Should I be able to boot a 686-pae i686 kernel on a xen domU (bullseye - but bookworm fails too) (XEN) d46v0 Unhandled page fault fault/trap [#14, ec=0010] (XEN) Pagetable walk from 0100: (XEN) L4[0x000] = 09790027 1f90 (XEN) L3[0x000] = 097a4027 000

Re: Want to contibute to debian

2022-09-04 Thread john doe
On 9/3/2022 9:44 AM, 5HROUD wrote: Hi there, I am a student who develops software application for Linux. Because all my project are opensource I wish I could work as a debian developer. Since I love using debian and also wanted to contribute to it. Sent with [Proton Mail](https://proton.me/) se

Re: Network bridge and MAC address exposure

2022-09-04 Thread john doe
On 9/4/2022 8:39 AM, Rand Pritelrohm wrote: Consider this simple schematic: | VM | -> | HOST | -> | GW | -> ISP Lets say the physical interface name on the 'host' is eth0 and the LAN subnet is 192.168.0.0. I want to configure the network on the 'host' in order for the VM to

Re: Network bridge and MAC address exposure

2022-09-04 Thread Jeremy Ardley
On 4/9/22 2:39 pm, Rand Pritelrohm wrote: 1. Bridge using routed subnet: ip link add dev br0 type bridge ip addr add 192.168.222.1/24 dev br0 ip link set dev br0 up ip tuntap add tap0 mode tap ip link set dev tap0 up ip link set dev tap0 master br0 #Then I h