From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Brian Hancock" Subject: Re: Illegal user Date: Thu, 23 Feb 2006 11:34:38 +1100 Message-ID: <012a01c63810$ee629c70$6501a8c0@brianx> References: <43F9FAEC.6070509@aknet.ru> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: Sender: linux-msdos-owner@vger.kernel.org List-Id: Content-Type: text/plain; format="flowed"; charset="us-ascii"; reply-type="original" To: linux-msdos@vger.kernel.org Hi Stav, Thanks for your assistance... The webhost had put my account onto a 64-bit server... In trying to sort out the "Illegal User" message, I asked their support to try and run DOSEMU as root which they did and got a "vm86plus not available" and then they mentioned to me that it was on a 64 bit server... They moved it over to a 32-bit server and everything works fine... Sorry to send you out chasing a red herring... Regards Brian ----- Original Message ----- From: "Stas Sergeev" To: Sent: Tuesday, February 21, 2006 4:22 AM Subject: Re: Illegal user > Stas Sergeev wrote: >> If nothing helps, just remove that uid checking from >> the parser.y.in file and recompile dosemu. > No, that won't work, don't try. > Run the attached test program instead, please. > > -------------------------------------------------------------------------------- > #include > #include > #include > #include > #include > > int main() > { > printf("%p\n", getpwuid(getuid())); > perror("getpw"); > system("ls -l /etc/passwd"); > return 0; > } >