From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-ie0-f176.google.com ([209.85.223.176]) by pp; Mon Nov 24 10:37:55 EST 2014 Received: by mail-ie0-f176.google.com with SMTP id tr6so1382742ieb.35 for <9front@9front.org>; Mon, 24 Nov 2014 07:37:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type; bh=GjNZKc7kBd8L2zXodbkmMFeTzyUClg7Y4C2DbpazR7c=; b=FP1mlpgF+2LhqKagfIeTY/1/EAmB8RADnmp0ArRluiSw2JU4MnePrQdG8EdEsC7je4 ilyNYUQRPyt1VHNzQukSnZ5IOZlDgLknkzrEqmJhwjdEe0SNM1S1G3LS7aiLmU2nemKT wUbQjIVDup2wXGO6o2wwnws37GR/nPQVrBa8Deelu2joz9KGe9PLNiSzXVQbxEco8W0V 22XpnTuIhcTzp6w89BT1lJtjXON8XFCF3NmMFAJnr0jRTfvzAPoKHq6MNOTGT9iLKc7U BQOyBoVz/UxZCBSw2QeHxYRqCzDrFodrushJj8+MTAaoz1B5ie9NqkiP1A2KnTRifcRq XH4g== X-Received: by 10.107.138.5 with SMTP id m5mr17298265iod.85.1416843471950; Mon, 24 Nov 2014 07:37:51 -0800 (PST) Return-Path: Received: from ?IPv6:2601:d:c780:11b6:f46f:621b:70c8:c45a? ([2601:d:c780:11b6:f46f:621b:70c8:c45a]) by mx.google.com with ESMTPSA id sd11sm4652274igb.8.2014.11.24.07.37.51 for <9front@9front.org> (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 24 Nov 2014 07:37:51 -0800 (PST) Message-ID: <547350CE.8060708@gmail.com> List-ID: <9front.9front.org> X-Glyph: ➈ X-Bullshit: firewall template-oriented SOAP over JSON event firewall-oriented strategy-aware self-signing generator Date: Mon, 24 Nov 2014 09:37:50 -0600 From: Sean Hinchee User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: 9front@9front.org Subject: Fwd: Linuxemu References: <546D448A.70903@gmail.com> In-Reply-To: <546D448A.70903@gmail.com> X-Forwarded-Message-Id: <546D448A.70903@gmail.com> Content-Type: multipart/alternative; boundary="------------020209050305060305050201" This is a multi-part message in MIME format. --------------020209050305060305050201 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit I have no idea how useful this is for anyone, but I was told by some folks on #cat-v that this should be e-mailed out. Linuxemu3 breaks on new kernels/linux trees. Here's the fix for that error and some other little tidbits left over from experimentation. -------- Forwarded Message -------- Subject: Linuxemu, FATAL: kernel too old Date: Wed, 19 Nov 2014 19:31:54 -0600 From: Sean Hinchee To: cinap_lenrek@gmx.de Error: FATAL: kernel too old Debug: http://okturing.com/src/2478/body Debug Command: 'linux -dd -r mroot/ /bin/bash -i' FS Tree: http://download.proxmox.com/appliances/system/debian-7.0-standard_7.0-2_i386.tar.gz Notes: Does not crash, exits with an error. Fix: Debian 7.0 uses kernel 3.2.x, changed Kernel Reference: https://www.debian.org/releases/stable/amd64/release-notes/ch-whats-new.en.html open linuxemu3/proc.c strncpy(p->release, "2.6.11", 65); and change this arround to something more *modern* in sys_uname() Changed using the above to "3.2.1" then 'mk; mk install' Characters double themselves, use 'vt'. Aptitude can update itself, but not install anything: https://wiki.debian.org/SourcesList#Example_sources.list_for_Debian_7_.22Wheezy.22 apt-get update succeeds after sources.list is changed from default to ^ and you run: apt-get autoclean; apt-get clean; apt-get update apt-get install fails on: E: Couldn't determine free space in/var/cache/apt/archives/ - statvfs (38: Function not implemented) The above error was found in some Linux From Scratch threads relating to a problem in glibc, no definitive answer has yet been found. If apt-get update is run and there are no changes from the current state, an error returns: GPG Error: The following signatures were invalid: NODATA 1 NODATA 2 Ping fails on: icmp open socket: Invalid argument --------------020209050305060305050201 Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: 8bit I have no idea how useful this is for anyone, but I was told by some folks on #cat-v that this should be e-mailed out. Linuxemu3 breaks on new kernels/linux trees. Here's the fix for that error and some other little tidbits left over from experimentation.
 

-------- Forwarded Message --------
Subject: Linuxemu, FATAL: kernel too old
Date: Wed, 19 Nov 2014 19:31:54 -0600
From: Sean Hinchee <henesy.dev@gmail.com>
To: cinap_lenrek@gmx.de


Error: FATAL: kernel too old
Debug: http://okturing.com/src/2478/body
Debug Command: 'linux -dd -r mroot/ /bin/bash -i'
FS Tree: 
http://download.proxmox.com/appliances/system/debian-7.0-standard_7.0-2_i386.tar.gz
Notes: Does not crash, exits with an error.

Fix: Debian 7.0 uses kernel 3.2.x, changed
Kernel Reference: 
https://www.debian.org/releases/stable/amd64/release-notes/ch-whats-new.en.html

<cinap_lenrek> open linuxemu3/proc.c
<cinap_lenrek> strncpy(p->release, "2.6.11", 65);
<cinap_lenrek> and change this arround to something more *modern*
<cinap_lenrek> in sys_uname()
Changed using the above to "3.2.1" then 'mk; mk install'


Characters double themselves, use 'vt'.


Aptitude can update itself, but not install anything:
 
https://wiki.debian.org/SourcesList#Example_sources.list_for_Debian_7_.22Wheezy.22
apt-get update succeeds after sources.list is changed from default to ^ and you run:
apt-get autoclean; apt-get clean; apt-get update 

apt-get install fails on:
E: Couldn't determine free space in /var/cache/apt/archives/ - statvfs 
(38: Function not implemented)
The above error was found in some Linux From Scratch threads relating to 
a problem in glibc, no definitive answer has yet been found.

      
If apt-get update is run and there are no changes from the current 
state, an error returns:
GPG Error: The following signatures were invalid: NODATA 1 NODATA 2

      
Ping fails on: icmp open socket: Invalid argument

--------------020209050305060305050201--