экологи-аудиторы подготовка

2004-06-02 Thread jose



Эколог-аудитор – 
самая востребованная профессия на рынке!
 
Центр подготовки 
экологов-аудиторовООО «Эконедраконсалт»НП ЭА «Экологическая аудиторская 
палата»Российская экологическая академия
проводят в Москве следующие 
курсы:
 
Курсы по подготовке 
экологов-аудиторов
 
с 21 июня по 2 июля ис 12 по 23 июля 
2004 г.
 
Курсы по повышению 
квалификации экологов-аудиторов
 
с 28 июня по 2 июля ис 19 по 23 июля 
2004 г.
Подготовка специалистов для получения 
квалификации «эколог-аудитор» проводится в соответствии с 
Программой и тематическим планом по курсу «Экологическое аудирование и системы 
управления окружающей средой на предприятиях», с учетом требований отечественных 
и международных стандартов ИСО (ISO) серии 14000, утвержденной 12.05.98 
г.Программа предусматривает прохождение двух 
практических стажировок.По окончании курсов выдается 
свидетельство о прохождении обучения по экологическому аудированию.Лица, 
прошедшие обучение могут стать членами НП ЭА «Экологическая аудиторская палата», 
а также получить Удостоверение эколога-аудитора (список необходимых документов 
высылается дополнительно).Стоимость обучения: с 21.06. по 
02.07.-18120 руб.(включая НДС), с 12 по 23.07.-23200 руб.(включая НДС). 
Стоимость повышения квалификации: с 28.06. по 02.07.-10200 
руб.(включая НДС), с 19 по 23.07.-15100 руб.(включая НДС).Стоимость 
оформления Удостоверения эколога-аудитора: 1500 руб.(НДС не 
облагается).Стоимость оформления Удостоверения эколога-аудитора для 
повышающих квалификацию: 1000 руб.(НДС не облагается).
Прием заявок на участие в курсах и 
дополнительная информация:
тел.: (095) 105 18 92, 155 07 72
факс: (095) 327 95 85; (095) 455 22 84
 
семинар«Организация и 
управление природоохранной деятельностью на 
предприятии»
 
с 7 по 11 июня  2004 
года
Семинар рекомендован ГУПР МПР 
РФ
 
Программа семинара 
включает:• Оформление экологической 
отчетности• Расчет экологических платежей• Разработка
нормативов ПДВ, ПДС и ПЛРО• Нормативно-правовая база природопользования 
и др.По результатам обучения выдается Сертификат о прохождении 
обучения.Стоимость обучения: 12600 руб.(включая НДС).
 
Прием заявок на участие в 
семинаре
и дополнительная 
информация:
тел.: (095) 105 18 92, 155 07 72
факс: (095) 327 95 85; (095) 455 22 84
 
Экологический аудит, 
экологическая сертификация
и другие виды проектных работ в 
области экологииТел.: (095) 105 18 
92, 155 07 72





___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/bug-hurd


Re: [gnu-soc] GNU GSOC 2023 application

2023-02-08 Thread Jose E. Marchesi


Hi Samuel.

I added the Hurd idea to the page.  Thank you very much.

As a side note, have you heard of the GCC Rust front-end (under
development) that has been recently added to GCC?  It may be relevant to
the Hurd.

> Hello Jose,
>
> - GNU Hurd
> - The GNU Hurd is the GNU project's replacement for the Unix kernel. It
>   is a collection of servers that run on the Mach microkernel to
>   implement file systems, network protocols, file access control, and
>   other features that are implemented by the Unix kernel or similar
>   kernels (such as Linux).
> - https://www.gnu.org/software/hurd/
> - Porting Rust to GNU/Hurd
>
> - The goal of this project is to make the Rust language
> (https://www.rust-lang.org/) available on GNU/Hurd.
>
> The Rust language is being used more and more widely, and notably in
> rather fundamental libraries such as librsvg or python-cryptography. It
> is thus more and more pressing for GNU/Hurd to have a compiler for Rust.
>
> The Rust compiler itself is quite portable, but its runtime library,
> libstd, needs to be ported to the GNU/Hurd system. This essentially
> consists in telling Rust how the standard C library functions can be
> called.
>
> And example of the main part of such port can be seen for the VxWorks
> port:
> https://github.com/rust-lang/libc/blob/master/src/vxworks/mod.rs
>
> The bulk of such a file can be mostly generated from the libc C
> headers thanks to the bindgen tool, it then needs to be cleaned up and
> integrated into the Rust build infrastructure, some preliminary work had
> already been investigated in that part.
>
> A cross-bootstrap from Linux will then need to be achieved to build
> rustc and cargo, and then it will be self-hosted on GNU/Hurd.
>
> - A good level of C programming will be welcome to understand the
> questions of ABI and the libc C functions being bound.
>
> Knowing the Rust language is not required: it can be learnt along the
> way, this can be a good occasion.
>
> - bug-hurd@gnu.org
> - https://darnassus.sceen.net/~hurd-web/community/gsoc/project_ideas/rust/
> https://www.rust-lang.org/
> https://rustc-dev-guide.rust-lang.org/building/how-to-build-and-run.html
>
> Samuel



Re: [gnu-soc] GNU GSOC 2023 application

2023-02-08 Thread Jose E. Marchesi


> Jose E. Marchesi, le mer. 08 févr. 2023 12:15:31 +0100, a ecrit:
>> As a side note, have you heard of the GCC Rust front-end (under
>> development) that has been recently added to GCC?
>
> Yes.
>
>> It may be relevant to the Hurd.
>
> Actually, no: the rustc compiler itself cross-builds fine, it's libstd
> that needs porting, and the gcc front-end uses the rustc libstd too.

Oh ok.  The runtime is shared.



[IMPORTANT] GSOC 2014 ideas

2014-02-19 Thread Jose E. Marchesi

Hi hackers.

At the moment we received 0 ideas to put in our GSOC ideas page [1].
Google just notified us that GNU will be rejected from this year's GSOC
if we dont put ideas in the next 12 hours.

No project is interested in participating in GSoC this year??

[1] http://www.gnu.org/software/soc-projects/ideas-2014.html




Re: [IMPORTANT] GSOC 2014 ideas

2014-02-19 Thread Jose E. Marchesi

In the last years,
, etc.,
we'd just place a pointer to our project_ideas page onto the GNU ideas
page, so I suggest to do that again.  Separating out just a few project
ideas does not make too much sense to me -- what may make sense is to add
a high-level overview of the projects to the GNU page, like a list of
keywords: »hurd, kernel, distributed, file system, language bindings«,
etc.

Is your intention to participate under GNUs umbrella or did you apply as
a mentoring organization?



Re: [IMPORTANT] GSOC 2014 ideas

2014-02-19 Thread Jose E. Marchesi

> In the last years,
> , etc.,
> we'd just place a pointer to our project_ideas page onto the GNU ideas
> page, so I suggest to do that again.  Separating out just a few 
project
> ideas does not make too much sense to me -- what may make sense is to 
add
> a high-level overview of the projects to the GNU page, like a list of
> keywords: »hurd, kernel, distributed, file system, language bindings«,
> etc.
> 
> Is your intention to participate under GNUs umbrella or did you apply as
> a mentoring organization?

We haven't applied as a mentoring organization, we intend to participate
under GNU's umbrella.

Just added the link to your ideas page to
http://www.gnu.org/software/soc-projects/ideas-2014.html




Re: [IMPORTANT] GSOC 2014 ideas

2014-02-19 Thread Jose E. Marchesi

On Wed, 19 Feb 2014 18:26:18 +0100, "Jose E. Marchesi"  
wrote:
> In the last years,
> <http://www.gnu.org/software/soc-projects/ideas-2013.html#hurd>, etc.,
> we'd just place a pointer to our project_ideas page onto the GNU ideas
> page, so I suggest to do that again.  Separating out just a few 
project
> ideas does not make too much sense to me -- what may make sense is to 
add
> a high-level overview of the projects to the GNU page, like a list of
> keywords: »hurd, kernel, distributed, file system, language bindings«,
> etc.
> 
> Is your intention to participate under GNUs umbrella or did you apply as
> a mentoring organization?

Under the GNU umbrella, so for us, for now, please just copy the
paragraph from the ideas-2013 page.

Done.




Re: [IMPORTANT] GSOC 2014 ideas

2014-02-19 Thread Jose E. Marchesi

> At the moment we received 0 ideas to put in our GSOC ideas page [1].
> Google just notified us that GNU will be rejected from this year's GSOC
> if we dont put ideas in the next 12 hours.
> 
> [1] http://www.gnu.org/software/soc-projects/ideas-2014.html
> 
> No project is interested in participating in GSoC this year??

We are.  I personnally haven't seen a request for pushing GSOC
ideas.

See http://lists.gnu.org/archive/html/summer-of-code/2014-02/msg6.html

We always have a lot of ideas for GNU/Hurd, on

http://www.gnu.org/software/hurd/community/gsoc/project_ideas.html

so it means we should push at least some of them, or all of them? (I
would be afraid that students only see the few pushed to the
ideas-2014.html, while we have a lot of them on our project_ideas.html
page).

We added a link to your ideas pages, like in previous years.



Re: Google Summer of Code projects for the GNU C Library.

2014-02-27 Thread Jose E. Marchesi

On Wed, 26 Feb 2014 10:23:28 +0100, I wrote:
> On Wed, 19 Feb 2014 19:14:45 -0500, "Carlos O'Donell"  
wrote:
> > The GNU Project is participating in GSoC 2014 and have asked
> > individual GNU projects to nominate their own GSoC projects
> > under their umbrella.
> > 
> > We have proposed an initial three projects for the GNU C Library
> > and you can see them here:
> > http://www.gnu.org/software/soc-projects/ideas-2014.html

José, please apply the following patch to ideas-2014.html:

Done.




Re: Tags missing in Melange

2014-02-28 Thread Jose E. Marchesi


On Tue, 25 Feb 2014 19:50:33 +0100, jema...@gnu.org (Jose E. Marchesi) 
wrote:
> I just noticed that GNU's profile on Melange is missing tags. This is
> prevent GNU from appearing the search results for any tags that
> others may search for. Maybe we should add the different tags?
> 
> Yes.  Just send us a list of tags that may correspond to your project
> and we will add them in melange.
> 
> This applies to everyone.

For GNU Hurd: hurd, gnumach, kernel, microkernel, operating system, os,
filesystem, virtualization, glibc, gdb, valgrind, language bindings,
automated testing.


Done, thanks.




greetings

2001-01-22 Thread Jose Eugenio Marchesi



Hi,


 I am a new subscriber of this list.

 Also i am new to the Hurd (i installed my first Hurd a few days ago). 
 
 Now i present me: 

  My name is Jose Eugenio Marchesi, and i am a spanish last-year (hopefully :) 
  Computing Engineer student. I have a long experience with the Linux
  kernel and other UNIXes. Also, i maintain the GNU ACM package, and 
  i coordine the Free Software Foundation official branch in Spain. 


I consider the Hurd as a new exciting approach to kernel design, and i 
see it powerful architecture as the best option for the GNU project.

For now i want to study the hurd and, eventually, take part in it 
development, as long as i can.

Well, greetings from me to all the HURD community.


jemarch.

-- 

Jose E. Marchesi <[EMAIL PROTECTED]>
FSF/GNU Spain <http://es.gnu.org>

---
Usas programas sin licencia?  <_>
Quiza sea porque las licenciasoo 7   Free
que conoces no son libres.   (..) Software
Utiliza software GPL y veras la diferencia."""Foundation
 
 http://es.gnu.org
-

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Virtual Consoles in Hurd

2001-01-24 Thread Jose Eugenio Marchesi



Would be good to make virtual consoles support into the
GNU/Hurd environment.

But would be useful make it with new powerful features. Some
ideas:

 * Clone the Emacs buffer approach (!)
  (The same keystrokes?)
  (Display more than one VC at same time? C-x2?)
   
 * Built-in text flow from one VC to another.
   (How?)

 * Run-Time configuration via keystrokes (or a special configuration VC).
   (Emulation type, ...)
   (Menus?)

 * One special VC for system messages.
   (Special keystrokes?)

 * Other special VCs.

 * ...
 (Please, give ideas!)

Perhaps some of these capabilities would be builded into the 
shell?

Perhaps these capabilities are completely absurd?

What servers must be used/modified/created to do this? What would be
the best way?


I know it is a lot of work. But i am ready to start this effort ':)



-- 

Jose E. Marchesi <[EMAIL PROTECTED]>
FSF/GNU Spain <http://es.gnu.org>

---
Usas programas sin licencia?  <_>
Quiza sea porque las licenciasoo 7   Free
que conoces no son libres.   (..) Software
Utiliza software GPL y veras la diferencia."""Foundation
 
 http://es.gnu.org
-

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Re: Virtual Consoles in Hurd

2001-01-24 Thread Jose Eugenio Marchesi


   Please look also at colortext, which is a good base to build on.
   http://stekt.oulu.fi/~tosi/gnu/hurd


Ok, thanks. I will contact with the colortext author.

jemarch.


-- 

Jose E. Marchesi <[EMAIL PROTECTED]>
FSF/GNU Spain <http://es.gnu.org>

---
Usas programas sin licencia?  <_>
Quiza sea porque las licenciasoo 7   Free
que conoces no son libres.   (..) Software
Utiliza software GPL y veras la diferencia."""Foundation
 
 http://es.gnu.org
-

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



spam everywhere

2001-02-12 Thread Jose Eugenio Marchesi


uff, my anti-spam filters break out!

there isnt implemented anti-spam filters into the [EMAIL PROTECTED]
mailing list server?


jemarch.

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Re: Unattended issues

2005-08-27 Thread Jose E. Marchesi

You could have asked for a simple super-duper experimental CVS branch,
or simply given good reasons to add it to a less experimental branch
like ams-branch.

If Sergio needs more flexibility in order to espontaneous commit his
(and other people) experimental/untested patches, i think there is
nothing wrong in have a separate CVS repository for the development.

Some other experimental development on Hurd is already being hosted on
savannah, and have its own CVS repository: the powerpc port.

Anyway, the proliferation of -branches such as
ams-branch or sergio-branch would be a quite wrong strategy, imho.


-- 
José E. Marchesi <[EMAIL PROTECTED]>
 <[EMAIL PROTECTED]>

GNU España   http://es.gnu.org
GNU No es Unix!  http://www.gnu.org



___
Bug-hurd mailing list
Bug-hurd@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-hurd


Re: Unattended issues

2005-08-27 Thread Jose E. Marchesi

This is not a bad thing per se if you guys don't feel like working on
Mach anymore, but it would probably be good to communicate this clearly
to people either way, as some still seem to be interested in hacking on
it.

Since at least one of the two GNU maintainers for the Hurd (Marcus) is
primarily working on the l4 port, perhaps would be a good idea to
think on getting separate GNU maintainers for GNU Mach and GNU Mig.

After all, these are separate GNU packages.

-- 
José E. Marchesi <[EMAIL PROTECTED]>
 <[EMAIL PROTECTED]>

GNU España   http://es.gnu.org
GNU No es Unix!  http://www.gnu.org



___
Bug-hurd mailing list
Bug-hurd@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-hurd


Hurd Meeting in Madrid

2005-10-26 Thread Jose E. Marchesi

Hi.

First of all, sorry for the off-topic, but i think you could find
interesting the "experience" we are going to do in Madrid next 4, 5
and 6 November.

We are preparing a three days hurd-specific meeting on Madrid (web on
http://es.gnu.org/hurdmeeting2005). The event is specifically oriented
to developers, and the main goal is to teach hackers on how to hack on
both GNU Mach and the Hurd.

Take a look to the calendar and the activities:

* Friday 4
  o 19:00 -- Meeting introduction.
  o 20:00 -- Installing GNU/Hurd from scratch. 
  o 00:00 -- End of the day.
* Saturday 5
  o 11:00 -- Mach and Hurd concepts
  o 16:00 -- Mach VM and Hurd pagers
  o 20:00 -- Mach IPC and MIG RPC
  o 00:00 -- End of the day.
* Sunday 6
  o 12:00 -- Mach Threads and migrating threads
  o 16:00 -- Porting GNU Mach to other architectures
  o 18:00 -- Alternative Microkernels: L4, EROS
  o 20:00 -- End of the meeting


... much work to do these three days. Well, we dont know how many
people will be attracted to this kind of event (it is extremely
technical and the topic is difficult and not popular) nor if the
attendants will be able to acquire enough knowledge to start hacking,
but we are going to try anyway.

We will report the result of the experiment. We hope it will be
successful and to make a second Hurd Meeting on Madrid the next year
(international, or course!).

Wish luck for us! :)


-- 
José E. Marchesi <[EMAIL PROTECTED]>
 <[EMAIL PROTECTED]>

GNU España   http://es.gnu.org
GNU No es Unix!  http://www.gnu.org



___
Bug-hurd mailing list
Bug-hurd@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-hurd


RE: prealpha hush release

2003-10-28 Thread Jose E. Marchesi

Hi,

 > Correct me, if I am wrong here, José, but Hush, is another specie
 > member of the type of shells, it is one of the many shells found
 > inside Busy Box, and is also available separately. What José has done,
 > is bring it to the HURD projects. And incidentally, I'm not the owner
 > of the named utility there, that's someone else's credit. 

I am somewhat confused. I did not know that another project named
"HUSH" was lurking around (another shell, indeed!) 

My HUSH mean for HUrdish SHell, and is an extension to GNU bash to support
Hurd interpreted translators. It is entirely new work. It not relates
to any other shell.

So apologizes for the name conflict. I am thinking on other names
for my bash extension. Any idea? :)


--
Jose E. Marchesi <[EMAIL PROTECTED]>
GNU Spainhttp://es.gnu.org
GNUs Not Unix!   http://www.gnu.org
--
"And if cynics ridicule freedom, ridicule community... if 'hard nosed
realists' say that profit is the only ideal...just ignore them, and
use copyleft all the same." -- RMS
---




___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


startx error on an updated Debian Hurd system

2022-05-18 Thread Jose Luis Alarcon Sanchez
Hi.

Since several weeks ago i'm getting a crash when i try start XOrg on my Debian
GNU/Hurd runned through Qemu.

I add the Xorg log file for a wide information

Any tip, or clue, will be welcome.

As always, Thanks you very much in advance.

Best Regards.
Jose.


--
http://lordofunix.eu5.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.
[3590550.291]
X.Org X Server 1.21.1.3
X Protocol Version 11, Revision 0
[3590550.291] Current Operating System: GNU Nostromo.lordofunix.org 0.9 
GNU-Mach 1.8+git20220218-486/Hurd-0.9 i686-AT386
[3590550.291] xorg-server 2:21.1.3-2+b1 (https://www.debian.org/support)
[3590550.291] Current version of pixman: 0.40.0
[3590550.291]   Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[3590550.291] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[3590550.302] (==) Log file: "/var/log/Xorg.4.log", Time: Wed May 18 09:13:11 
2022
[3590550.302] (==) Using config file: "/etc/X11/xorg.conf"
[3590550.302] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[3590550.302] (==) No Layout section.  Using the first Screen section.
[3590550.302] (**) |-->Screen "screen0" (0)
[3590550.302] (**) |   |-->Monitor ""
[3590550.302] (==) No monitor specified for screen "screen0".
Using a default monitor configuration.
[3590550.302] (==) Not automatically adding devices
[3590550.302] (==) Not automatically enabling devices
[3590550.302] (==) Not automatically adding GPU devices
[3590550.302] (==) Automatically binding GPU devices
[3590550.302] (==) Max clients allowed: 256, resource mask: 0x1f
[3590550.302] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[3590550.302]   Entry deleted from font path.
[3590550.302] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
built-ins
[3590550.302] (==) ModulePath set to "/usr/lib/xorg/modules"
[3590550.302] (==) |-->Input Device ""
[3590550.302] (==) |-->Input Device "Generic Keyboard"
[3590550.302] (==) No Layout section. Using the default mouse configuration.
[3590550.302] (==) No Layout section. Using the first keyboard device.
[3590550.302] (II) Loader magic: 0x82a1580
[3590550.302] (II) Module ABI versions:
[3590550.302]   X.Org ANSI C Emulation: 0.4
[3590550.302]   X.Org Video Driver: 25.2
[3590550.302]   X.Org XInput driver : 24.4
[3590550.302]   X.Org Server Extension : 10.0
[3590550.311] (--) PCI:*(0@0:2:0) 1b36:0100:1af4:1100 rev 5, Mem @ 
0xf400/67108864, 0xf800/67108864, 0xfc09/8192, I/O @ 0xc100/32, 
BIOS @ 0x/65536
[3590550.311] (II) LoadModule: "glx"
[3590550.311] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[3590550.311] (II) Module glx: vendor="X.Org Foundation"
[3590550.311]   compiled for 1.21.1.3, module version = 1.0.0
[3590550.311]   ABI class: X.Org Server Extension, version 10.0
[3590550.311] (==) Matched qxl as autoconfigured driver 0
[3590550.311] (==) Matched fbdev as autoconfigured driver 1
[3590550.311] (==) Matched vesa as autoconfigured driver 2
[3590550.311] (==) Assigned the driver to the xf86ConfigLayout
[3590550.311] (II) LoadModule: "qxl"
[3590550.322] (WW) Warning, couldn't open module qxl
[3590550.322] (EE) Failed to load module "qxl" (module does not exist, 0)
[3590550.322] (II) LoadModule: "fbdev"
[3590550.322] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[3590550.322] (II) Module fbdev: vendor="X.Org Foundation"
[3590550.322]   compiled for 1.21.1.3, module version = 0.5.0
[3590550.322]   Module class: X.Org Video Driver
[3590550.322]   ABI class: X.Org Video Driver, version 25.2
[3590550.322] (II) LoadModule: "vesa"
[3590550.322] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[3590550.322] (II) Module vesa: vendor="X.Org Foundation"
[3590550.322]   compiled for 1.21.1.3, module version = 2.5.0
[3590550.322]   Module class: X.Org Video Driver
[3590550.322]   ABI class: X.Org Video Driver, version 25.2
[3590550.322] (II) LoadModule: "mouse"
[3590550.322] (II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
[3590550.322] (II) Module mouse: vendor="X.Org Foundation"
[3590550.322]   compiled for 1.21.1.3, module version = 1.9.3
[3590550.322]   Module class: X.Org XInput Driver
[3590550.322]   ABI class: X.Org XInput driver, version 24.4
[3590550.322] (II) LoadModule: &quo

Repositories to include in /etc/apt/sources.list

2022-10-05 Thread Jose Luis Alarcon Sanchez
Hello all.

I want to ask what are the best (maybe correct or right are better words)
repositories for maintain updated a Debian GNU/Hurd system these days.

Thanks you very much, in advance.

Best regards.
Jose.

--
https://lordofunix.wixsite.com/website

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.



apt-get fails with an undefined symbol

2009-05-07 Thread Jose Luis Alarcon Sanchez
Hi Folks.

I just did a dist-upgrade. Thuesday, may 7, 5:45pm at Spain.

After this, when i try use again apt-get, i get this error output:

# apt-get
apt-get: symbol lookup error: /usr/lib/libstdc++.so.6: undefined symbol: 
__pthread_recursive_mutexattr
#

So, now i can not update the system. Be careful if you still do not fall in 
this.

Do you see a solution for this problem?. Maybe download manually next version 
of libstdc++ package?.
dpkg utility looks works fine...

I hope be useful for the Group.

Regards.

Jose.

-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




Re: apt-get fails with an undefined symbol

2009-05-08 Thread Jose Luis Alarcon Sanchez
On Thu, May 07, 2009 at 06:23:27PM +0200, Samuel Thibault wrote:
> Jose Luis Alarcon Sanchez, le Thu 07 May 2009 18:02:03 +, a ?crit :
> > # apt-get
> > apt-get: symbol lookup error: /usr/lib/libstdc++.so.6: undefined symbol: 
> > __pthread_recursive_mutexattr
> 
> Damn, I thought I have avoided letting that libstdc++ uploaded.  I'll
> see that. You can downgrade to an older version of libstdc++ to fix the
> issue.
> 
> Thanks for the reports,
> Samuel
> 

Sorry, Samuel, but i do not know how to do the downgrade.

Regards.

Jose.

-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




Re: apt-get fails with an undefined symbol

2009-05-08 Thread Jose Luis Alarcon Sanchez
On Fri, May 08, 2009 at 04:39:09PM +0200, Samuel Thibault wrote:
> Hello,
> 
> Jose Luis Alarcon Sanchez, le Thu 07 May 2009 18:02:03 +, a ?crit :
> > After this, when i try use again apt-get, i get this error output:
> > 
> > # apt-get
> > apt-get: symbol lookup error: /usr/lib/libstdc++.so.6: undefined symbol: 
> > __pthread_recursive_mutexattr
> 
> It should be fixed by the version 4.4.0-4+b1 of libstdc++6 which I have
> just uploaded.
> 
> Samuel
> 

Okey, Man!!! :). You are simply fantastic! ;D

I will try in a hurry...

Regards.

Jose.

-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




Re: apt-get fails with an undefined symbol

2009-05-09 Thread Jose Luis Alarcon Sanchez
On Fri, May 08, 2009 at 04:39:09PM +0200, Samuel Thibault wrote:
> Hello,
> 
> Jose Luis Alarcon Sanchez, le Thu 07 May 2009 18:02:03 +, a ?crit :
> > After this, when i try use again apt-get, i get this error output:
> > 
> > # apt-get
> > apt-get: symbol lookup error: /usr/lib/libstdc++.so.6: undefined symbol: 
> > __pthread_recursive_mutexattr
> 
> It should be fixed by the version 4.4.0-4+b1 of libstdc++6 which I have
> just uploaded.
> 
> Samuel
>

Thanks You very much, Samuel.

This new package works fine and solve the problem. :)

Keep in touch.

Regards.

Jose.

-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




xf86ReadBIOS() cant device_open

2009-05-09 Thread Jose Luis Alarcon Sanchez
Hi Folks.

Well, once apt-get dist-upgrade did and xorg installed, i get this with startx
command:

xf86ReadBIOS() cant device_open. ((os/device no such device)

Searching the Web for answers to this, i found that is known:

 http://lists.debian.org/debian-hurd/2007/04/msg00064.html

Any help is very appreciated.

Thank you very much, in advance.

Regards.

Jose.

-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




Re: xf86ReadBIOS() cant device_open

2009-05-10 Thread Jose Luis Alarcon Sanchez
On Sat, May 09, 2009 at 11:23:02PM +0200, Samuel Thibault wrote:
> Jose Luis Alarcon Sanchez, le Sat 09 May 2009 23:17:53 +, a ?crit :
> > Well, once apt-get dist-upgrade did and xorg installed, i get this with 
> > startx
> > command:
> > 
> > xf86ReadBIOS() cant device_open. ((os/device no such device)
> 
> Which gnumach are you using?  The one from Debian should have the patch
> to put back iopl.
> 
> Samuel
> 

Ooopps!. I was using a CVS kernel.

You are right, with the Debian kernel this problem do not exist.

Thanks!. :)

Regards.

Jose.

-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




hal failed

2009-05-18 Thread Jose Luis Alarcon Sanchez
Hello.

I have hal just installed. When i am rebooting the system, get this error
message:

Cant start Harware abstraction layer - detected chrooted session failed!

Hope this mail helps.

Regards.

Jose.

-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




Problem with qemu cirrus driver and Debian GNU/Hurd

2010-03-30 Thread Jose Luis Alarcon Sanchez
Hey Folks, How do you doing?.

Seems like there are a problem with the cirrus driver on Debian GNU/Hurd.
I have too a BSD system emulated by the same qemu machine and Xorg looks
really great, the cirrus driver works in this case. Its no a trouble only 
with the current qemu. It is a trouble with Qemu + Hurd. So, it must have 
a solution.

Samuel, your eye is always sharp with the Xorg related stuff. 

Attached, /etc/X11/xorg.conf and /var/log/Xorg.0.log

Thank you, in advance.

Best Regards.

Jose.

-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.
# XFree86 configuration file for RoFreeSBIE

Section "ServerLayout"
Identifier "XFree86 Configured"
Screen  0  "Screen0" 0 0
InputDevice"Mouse0" "CorePointer"
InputDevice"Keyboard0" "CoreKeyboard"
EndSection

Section "ServerFlags"
Option "DisableVidModeExtension" "True" 
#Option "NoTrapSignals"  "True"
#Option "DisableModInDev"  "True"
Option "AutoAddDevices" "Off"
Option "AllowEmptyInput" "Off"
EndSection
  


Section "Module"
#   Load  "record"
#   Load  "ddc"
#   Load  "dri"
#   Load  "dbe"
#   Load  "extmod"
#   Load  "glx"
EndSection

Section "InputDevice"
Identifier  "Keyboard0"
Driver  "keyboard"
Option  "XkbModel"   "pc105"
Option  "XkbLayout"  "us"
Option  "XkbVariant" ""
EndSection

Section "InputDevice"
Identifier  "Mouse0"
Driver  "mouse"
Option  "Protocol" "osmouse"
Option  "Device" "/dev/mouse"
#   Option  "Buttons" "6"
#   Option  "ZAxisMapping" "4 5"
#   Option  "Emulate3Buttons"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor"Monitor0"
DefaultDepth 16
SubSection "Display"
Depth 4
Modes   "1024x768"
EndSubSection
SubSection "Display"
Depth 8
Modes   "1024x768"
EndSubSection
SubSection "Display"
Depth 15
Modes   "1024x768"
EndSubSection
SubSection "Display"
Depth 16
Modes   "1024x768"
EndSubSection
SubSection "Display"
Depth 24
Modes   "1024x768"
EndSubSection
EndSection

Section "Monitor"
Identifier   "Monitor0"
ModelName"Unprobed Monitor (no DDC)"

#Info: All lines begining with # are comments
#Info: Uncomment the the desired lines by removing
# the  # sign  in front of them.
#Warning: Dont forget to comment the unused lines
# by adding a # sign in front of them

#   HorizSync28.0 - 60.0 # Warning: This is for very old Monitors
HorizSync28.0 - 78.0 # Warning: This may fry olders Monitors
#   HorizSync28.0 - 96.0 # Warning: This may fry old Monitors
 
#Info: TFT default or very old CRT Monitors
#VertRefresh  50.0 - 60.0 # Extreme conservative. Will flicker.

#Info: TFT Monitors or olders CRT Monitors
VertRefresh  50.0 - 76.0 # Very conservative. May flicker.

#Info: Only for CRT monitors
#   VertRefresh  50.0 - 100.0 # Not conservative. It will not flicker.

#  Default modes distilled from
#  "VESA and Industry Standards and Guide for Computer Display 
Monitor
#   Timing", version 1.0, revision 0.8, adopted September 17, 1998.
#  $XFree86: xc/programs/Xserver/hw/xfree86/etc/vesamodes,v 1.4 
1999/11/18 16:52:17 tsi Exp $
# 640x350 @ 85Hz (VESA) hsync: 37.9kHz
ModeLine "640x350"31.5  640  672  736  832350  382  385  445 
+hsync -vsync
# 640x400 @ 85Hz (VESA) hsync: 37.9kHz
ModeLine "640x400"31.5  640  672  736  832400  401  404  445 
-hsync +vsync
# 720x400 @ 85Hz (VESA) hsync: 37.9kHz
ModeLine "720x400"35.5  720  756  828  936400  401  404  446 
-hsync +vsync
# 640x480 @ 60Hz (Indu

Error configuring gnumach

2010-04-12 Thread Jose Luis Alarcon Sanchez
Hello.

I got the last gnumach-1-branch from Savannah cvs and try to build it. After
"autoreconf --install" i do "./configure" and i get the following error (in
attachment).

Am i doing something wrong?.

Thanks, in advance.

Regards.

Jose.

-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking build system type... i686-unknown-gnu0.3
checking host system type... i686-unknown-gnu0.3
checking for gawk... (cached) gawk
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking dependency style of gcc... gcc3
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking how to run the C preprocessor... gcc -E
checking for ranlib... ranlib
checking for ar... ar
checking for ld... ld
checking for nm... nm
checking for mig... mig
checking whether gcc and cc understand -c and -o together... yes
checking for gzip... gzip
checking for strip... strip
checking for patch... patch
checking whether the compiler accepts `-fstack-protector'... yes
configure: creating ./config.status
patching file config.status
Hunk #1 FAILED at 1610.
1 out of 1 hunk FAILED -- saving rejects to file config.status.rej
configure: error: failed to patch using 'config.status.dep.patch'.
  You have a serious problem. Please contact .


Re: Error configuring gnumach

2010-04-13 Thread Jose Luis Alarcon Sanchez
On Mon, Apr 12, 2010 at 12:14:02PM +0200, Thomas Schwinge wrote:
> Hello!
> 
> On Mon, Apr 12, 2010 at 12:04:27PM +0000, Jose Luis Alarcon Sanchez wrote:
> > I got the last gnumach-1-branch from Savannah cvs and try to build it.
> 
> These days, you're supposed to be using the Git repositories.  See
> <http://www.gnu.org/software/hurd/source_repositories.html> -> ``Git
> repositories on Savannah'', <http://git.savannah.gnu.org/cgit/hurd/>.
> 
> 
> Regards,
>  Thomas
>

So, now the cvs tree is "abandoned"?.

Regards.

Jose.

-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




Re: Building software for the Hurd

2010-04-13 Thread Jose Luis Alarcon Sanchez
On Mon, Apr 12, 2010 at 10:51:14PM +0200, Samuel Thibault wrote:
> Patrik Olsson, le Mon 12 Apr 2010 22:31:11 +0200, a ?crit :
> > I wonder how to build software for the Hurd, and then run it. I think I
> > need some cross compiler environment, but I'm not sure how to build it.
> 
> Mmm, it is a lot simpler to just install it (or use the qemu image from
> http://tinyurl.com/yftwk2r)
> 
> Samuel
> 

Hi.

Mmm, the debian-hurd-k16-qemu.img qemu image is enough pretty old right now.
I have the idea on my head since some days ago. Can i send a new qemu image 
with a dist-upgraded system to any place?.

Ever is more easy begin with a updated system.

Thanks.

Regards.

Jose.

-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




Unknown VESA driver failure

2010-04-13 Thread Jose Luis Alarcon Sanchez
Hi!.

Please, anybody can "see" in the attached /var/log/Xorg.0.log file where is
the failure?.

Thanks you very much, in advance.

Regards.

Jose.

-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.

X.Org X Server 1.7.6
Release Date: 2010-03-17
X Protocol Version 11, Revision 0
Build Operating System: GNU 0.3 i386-AT386 Debian
Current Operating System: GNU Harvard.lordofunix.org 0.3 GNU-Mach 
1.3.99/Hurd-0.3 i686-AT386
Build Date: 06 April 2010  07:25:28PM
xorg-server 2:1.7.6-2 (Timo Aaltonen ) 
Current version of pixman: 0.16.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Tue Apr 13 17:50:24 2010
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "XFree86 Configured"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "Monitor0"
(**) |   |-->Device "Card0"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(**) Option "DisableVidModeExtension" "True"
(**) Option "AllowEmptyInput" "Off"
(**) Option "AutoAddDevices" "Off"
(**) Not automatically adding devices
(==) Not automatically enabling devices
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
Entry deleted from font path.
(WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not 
exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
built-ins
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Loader magic: 0x81e2f60
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 6.0
X.Org XInput driver : 7.0
X.Org Server Extension : 2.0
(--) PCI:*(0:0:2:0) 1013:00b8:1af4:1100 rev 0, Mem @ 0xf000/33554432, 
0xf200/4096, BIOS @ 0x/65536
(II) "extmod" will be loaded by default.
(II) "dbe" will be loaded by default.
(II) "glx" will be loaded by default.
(II) "record" will be loaded by default.
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
compiled for 1.7.6, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
compiled for 1.7.6, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions/libglx.so
(II) Module glx: vendor="X.Org Foundation"
compiled for 1.7.6, module version = 1.0.0
ABI class: X.Org Server Extension, version 2.0
(==) AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: "record"
(II) Loading /usr/lib/xorg/modules/extensions/librecord.so
(II) Module record: vendor="X.Org Foundation"
compiled for 1.7.6, module version = 1.13.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension RECORD
(II) LoadModule: "vesa"
(II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
(II) Module vesa: vendor="X.Org Foundation"
compiled for 1.7.4, module version = 2.3.0
Module class: X.Org Video Driver
ABI class: X.Org Video Driver, version 6.0
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
compiled for 1.7.3.902, module version = 1.5.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 7.0
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
compiled for 1.7.3

Re: Unknown VESA driver failure

2010-04-13 Thread Jose Luis Alarcon Sanchez
On Tue, Apr 13, 2010 at 07:27:27PM +0200, Samuel Thibault wrote:
> Jose Luis Alarcon Sanchez, le Tue 13 Apr 2010 18:25:16 +, a ?crit :
> > Please, anybody can "see" in the attached /var/log/Xorg.0.log file where is
> > the failure?.
> 
> There doesn't seem to be any error. What is the result that you get? Are
> you sure the X server isn't actually successfully booting and it's just
> that clients can't connect? Try
> 
> startx -- -retro -ac
> 
> (-retro to actually get a grey screen + mouse cursor, and -ac to let
> clients connect).
> 
> Samuel
> 

Samuel, indeed i must confess you're my hero, (well, one of them). ;)

The result i got was a totally black screen. Maybe, like you say, the
clients can't connect. But with 

startx -- -retro -ac

FluxBox begin very nice and works very well.

Thank you, again.

Regards.

Jose.

-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




exim4 paniclog

2010-04-14 Thread Jose Luis Alarcon Sanchez
Hi.

I use mutt from Debian GNU/Hurd, and one dependence is exim4 MTA. At the
boot of the system this message is shown:

Starting MTA: exim4.
ALERT: exim paniclog /var/log/paniclog has non-zero size, mail possibly
broken ... failed!

I tried delete the /var/log/paniclog file, but 2 boots after the alert is
shown again. Maybe isn't very important, but, is there a fix for this?. What
is happening, why this message?.

Thanks very much, in advance.

Regards.

Jose.

-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




Re: exim4 paniclog

2010-04-14 Thread Jose Luis Alarcon Sanchez
On Wed, Apr 14, 2010 at 10:14:15AM +0200, Samuel Thibault wrote:
> Jose Luis Alarcon Sanchez, le Wed 14 Apr 2010 09:49:23 +, a ?crit :
> > Starting MTA: exim4.
> > ALERT: exim paniclog /var/log/paniclog has non-zero size, mail possibly
> > broken ... failed!
> > 
> > I tried delete the /var/log/paniclog file,
> 
> Did you try to see what was inside ? :)
> 
> Samuel
> 

Hi Samuel. Sorry, i did a mistake. The file isn't /var/log/paniclog but
/var/log/exim4/paniclog

It's attached.

Thanks.

Regards.

Jose.

-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.
2010-04-12 18:22:47 IPv6 socket creation failed: Address family not supported 
by protocol
2010-04-13 10:02:04 IPv6 socket creation failed: Address family not supported 
by protocol
2010-04-13 14:44:14 IPv6 socket creation failed: Address family not supported 
by protocol
2010-04-13 17:44:56 IPv6 socket creation failed: Address family not supported 
by protocol
2010-04-13 18:12:25 IPv6 socket creation failed: Address family not supported 
by protocol
2010-04-13 20:13:38 IPv6 socket creation failed: Address family not supported 
by protocol
2010-04-13 21:19:37 IPv6 socket creation failed: Address family not supported 
by protocol
2010-04-14 09:05:28 IPv6 socket creation failed: Address family not supported 
by protocol
2010-04-14 09:12:47 IPv6 socket creation failed: Address family not supported 
by protocol
2010-04-14 09:25:46 IPv6 socket creation failed: Address family not supported 
by protocol


/dev/klog is empty

2010-04-16 Thread Jose Luis Alarcon Sanchez
Hi.

In the pass, when i did

# cat /dev/klog > boot.txt

i got a text file with the messages shown at boot time. This days i get an
empty file.

What's changed?. Is a bug or a feature?.

Thank you, very much. You're very kind.

Regards.

Jose.

-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




Re: /dev/klog is empty

2010-04-16 Thread Jose Luis Alarcon Sanchez
On Fri, Apr 16, 2010 at 10:39:46PM +0200, Samuel Thibault wrote:
> Jose Luis Alarcon Sanchez, le Fri 16 Apr 2010 20:40:42 +, a ?crit :
> > i got a text file with the messages shown at boot time. This days i get an
> > empty file.
> > 
> > What's changed?. Is a bug or a feature?.
> 
> Do you have syslog installed? In that case it already logs it into
> /var/log/kern.log.
> 
> Samuel
>

Thanks, Samuel.

I just install syslog-ng. Now the system have a /var/log/dmesg file that 
contains
what i want, the boot time messages.

Regards.

Jose.  

-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




Problem in the /usr/share/X11/xorg.conf.d/10-mouse.conf file

2010-04-25 Thread Jose Luis Alarcon Sanchez
Hi Folks,

After upgrade, an error occurs when startx.

The file /usr/share/X11/xorg.conf.d/10/mouse.conf has a line that say

MatchIsMouse  "on"

and the 'startx' output says that "MatchIsMouse" is not a valid keyword.

Commenting this line, Xorg works fine again.

Regards.

Jose.

-- 
http://lordofunix.eu5.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.

This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation git repository.
See http://wiki.x.org/wiki/GitPage for git access instructions.

X.Org X Server 1.7.6.901 (1.7.7 RC 1)
Release Date: 2010-04-12
X Protocol Version 11, Revision 0
Build Operating System: GNU 0.3 i386-AT386 Debian
Current Operating System: GNU Harvard.lordofunix.org 0.3 GNU-Mach 
1.3.99/Hurd-0.3 i686-AT386
Build Date: 20 April 2010  05:43:41PM
xorg-server 2:1.7.6.901-3 (Cyril Brulebois ) 
Current version of pixman: 0.16.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sun Apr 25 13:45:28 2010
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
Parse error on line 3 of section InputClass in file 
/usr/share/X11/xorg.conf.d/10-mouse.conf
"MatchIsMouse" is not a valid keyword in this section.
(EE) Problem parsing the config file
(EE) Error parsing the config file

Fatal server error:
no screens found

Please consult the The X.Org Foundation support 
 at http://wiki.x.org
 for help. 
Please also check the log file at "/var/log/Xorg.0.log" for additional 
information.

Section "InputClass"
Identifier "mouse catchall"
MatchIsMouse "on"
Driver "mouse"
EndSection


Re: Problem in the /usr/share/X11/xorg.conf.d/10-mouse.conf file

2010-04-25 Thread Jose Luis Alarcon Sanchez
On Sun, Apr 25, 2010 at 02:12:55PM +0200, Samuel Thibault wrote:
> Jose Luis Alarcon Sanchez, le Sun 25 Apr 2010 14:02:30 +, a ?crit :
> > After upgrade, an error occurs when startx.
> > 
> > The file /usr/share/X11/xorg.conf.d/10/mouse.conf has a line that say
> > 
> > MatchIsMouse  "on"
> > 
> > and the 'startx' output says that "MatchIsMouse" is not a valid keyword.
> > 
> > Commenting this line, Xorg works fine again.
> 
> Please report it to the corresponding Debian package.
> 
> Samuel
>

Done.

Thanks, Samuel.

Regards.

Jose.

-- 
http://lordofunix.eu5.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




/usr/bin/iceweasel core dumped

2010-06-08 Thread Jose Luis Alarcon Sanchez
Hello.

I have installed on my Debian GNU/Hurd system the package iceweasel-3.5.9-3 and
all the dependencies it ask. The proccess was alright, but all the times i
tried execute the binary the output was 

segmentation fault (core dumped)

I'm using Hurd with 768 Mb. of RAM and the output of vmstat command is

pagesize:  4K
size:753M
free:662M
active: 22.8M
inactive:   62.4M
wired:  6.11M
zero filled: 129M
reactivated:   0 
pageins:28.7M
pageouts:   6.35M
page faults:   274692
cow faults: 45815
memobj hit ratio: 96%
swap size:   520M
swap free:   520M 

Why happen this?, Is GNU/Hurd, for any reason, uncapable of run this kind of
"heavy desktop programs"?.

Thanks in advance, for any help.

Regards.

Jose. 

-- 
http://lordofunix.eu5.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.



GNU/Hurd and CloneZilla

2010-10-10 Thread Jose Luis Alarcon Sanchez
Hi Friends.

I use Debian GNU/Hurd under Qemu, with a disk image that originally had 1,5
Gb. of size. Now, after more than a year of use it, the space on it is very
limited:

$ df -Th /
df: Warning: cannot read table of mounted file systems
FilesystemTypeSize  Used Avail Use% Mounted on
--1.5G  1.1G  375M  75% /
$

My idea is create a clean Qemu disk image with, for example, 4 or 6 Gb. and
"clone" the disk image i'm using now. I tried first with 'dd' command, but
once the clonation is done, the new system only "see" the 1,5 Gb. that have
the original image. Isn't able to recognices the extra space that have the
new .img file where i duplicate it.

Searching for another solution i found a special live CD named CloneZilla.
It
looks like a good software for do Hard Disks clonations and copies, but all
the attemps i made with the two Qemu images ended with errors. I think that
CloneZilla "see" the disks like sda and sdb units, i don't know if this can
be the cause of the errors. My question is: Do you know if CloneZilla can be
used with a GNU/Hurd system?. And taking this opportunity: Do you know
another way for do what i pretend?.

As always, thanks you very much for your big kindness.

Regards.

Jose.

-- 
http://lordofunix.eu5.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.



Qemu image with a working system

2010-10-11 Thread Jose Luis Alarcon Sanchez
Hello.

I was spending some time preparing a new Qemu image. This time is totally
based on my own "day by day" Debian GNU/Hurd system. Last dist-upgrade was
sunday 10/03/2010. It have a complete working Xorg system included, as well
as others programs, games,... The complete packages list is in the file
Packages.txt, under the superuser 'root' directory. I deleted my "real" user
account and added a "generic" user, 'smith' (yes, i like the Matrix saga).

The 'root' user password is "root" and the 'smith' user password is "smith". 
 
The window manager i like and use is FluxBox, but you can install whaterver
you want. Under the superuser 'root' directory you can find a shell script
with the command line i use for enter to the Console. If someone wants can
improve the system making the Console starts at System boot.

I tried to apply the "holes" elimination method that Samuel Thibault
recommended at http://lists.debian.org/debian-hurd/2010/04/msg00074.html but
the command 'dd < /dev/zero > /mnt/mnt/foo bs=1M' fails because there is not
enough free space on the "disk". My humble opinion is that is important get
a bigger disk image than this with only 1,5 Gb. for a better "GNU/Hurd on
Qemu" experience. But i don't know how to get it, sorry. At least, by now.

Well, you can download the Qemu image here,

http://dl.dropbox.com/u/6417512/Hurd/debian-hurd-03102010-qemu.img.tar.gz

Enjoy it!!.

Regards.

Jose.

-- 
http://lordofunix.eu5.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.



Re: Help-hurd Digest, Vol 90, Issue 2

2010-10-16 Thread Jose Luis Alarcon Sanchez
On Tue, Oct 12, 2010 at 08:14:56PM +0200, Samuel Thibault wrote:
> Nigel Horne, le Tue 12 Oct 2010 13:41:17 -0400, a ?crit :
> > >On 10/12/2010 01:38 PM, Samuel Thibault wrote:
> > >>Nigel Horne, le Tue 12 Oct 2010 13:34:12 -0400, a ?crit :
> > >>>It booted fine, but 'apt-get update; apt-get upgrade' hit the 'hd0:
> > >>>write_intr' bug. Sorry.
> > >>Always provide the full error message, else it's useless.
> > >hd0: write_intr: error=0x04 { DriveStatusError }
> 
> Mmm, this image is bogus, it doesn't have the size announced in its
> partition table.  Jose, please run
> 
> dd if=/dev/zero of=debian-hurd-03102010-qemu.img.tar seek=2146959359 bs=1 
> count=1
> 
> to extend its size, and reupload.  Else the swap area is just unusable.
> 
> Samuel
> 

Hi Samuel.

I ran the above 'dd' command. The image actually becomes bigger, 'ls -lh' on
the GNU/Linux "host" system says debian-hurd-03102010-qemu.img has 2.0 Gb.,
but running the qemu machine, executing Debian GNU/Hurd like "guest" system,
'df -Th /' still says the "disk" has a size of 1.5 Gb. It's unable to see
the added space.

And about how to get an usable Swap memory, what do you suggest?.

Thanks, very much.

Regards.

Jose.

-- 
http://lordofunix.eu5.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.



Re: Help-hurd Digest, Vol 90, Issue 2

2010-10-16 Thread Jose Luis Alarcon Sanchez
On Sat, Oct 16, 2010 at 02:28:50PM +0200, Samuel Thibault wrote:
> Jose Luis Alarcon Sanchez, le Sat 16 Oct 2010 12:42:26 +, a ?crit :
> > I ran the above 'dd' command. The image actually becomes bigger, 'ls -lh' on
> > the GNU/Linux "host" system says debian-hurd-03102010-qemu.img has 2.0 Gb.,
> > but running the qemu machine, executing Debian GNU/Hurd like "guest" system,
> > 'df -Th /' still says the "disk" has a size of 1.5 Gb. It's unable to see
> > the added space.
> 
> That's expected: the extra size is not for /, but for the swap space.
> 
> > And about how to get an usable Swap memory, what do you suggest?.
> 
> It's already in place. Please upload the resulting image at the same
> place as the previous one, to fix it.
> 
> Samuel
>

Okey, Samuel. Thanks you very much.

It's done. the resulting image is now uploaded.

http://dl.dropbox.com/u/6417512/Hurd/debian-hurd-03102010-qemu.img.tar.gz

Thanks.

Jose. 

-- 
http://lordofunix.eu5.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.



dd question

2010-10-18 Thread Jose Luis Alarcon Sanchez
On Tue, Oct 12, 2010 at 08:14:56PM +0200, Samuel Thibault wrote:
> 
> Mmm, this image is bogus, it doesn't have the size announced in its
> partition table.  Jose, please run
> 
> dd if=/dev/zero of=debian-hurd-03102010-qemu.img.tar seek=2146959359 bs=1 
> count=1
> 
> to extend its size, and reupload.  Else the swap area is just unusable.
> 
> Samuel
> 

Samuel, please,

What's the difference between run this two commands?:

dd if=/dev/zero of=debian-hurd-03102010-qemu.img.tar seek=2146959359 bs=1 
count=1

dd if=/dev/zero of=debian-hurd-03102010-qemu.img seek=2146959359 bs=1 count=1

Do both "the same thing", or not?.

Thanks, in advance.

Best Regards.

Jose.

-- 
http://lordofunix.eu5.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.



Re: dd question

2010-10-19 Thread Jose Luis Alarcon Sanchez
On Mon, Oct 18, 2010 at 07:14:23PM +0200, Samuel Thibault wrote:
> Jose Luis Alarcon Sanchez, le Mon 18 Oct 2010 17:42:20 +, a ?crit :
> > On Tue, Oct 12, 2010 at 08:14:56PM +0200, Samuel Thibault wrote:
> > > 
> > > Mmm, this image is bogus, it doesn't have the size announced in its
> > > partition table.  Jose, please run
> > > 
> > > dd if=/dev/zero of=debian-hurd-03102010-qemu.img.tar seek=2146959359 bs=1 
> > > count=1
> > > 
> > > to extend its size, and reupload.  Else the swap area is just unusable.
> > > 
> > > Samuel
> > > 
> > 
> > Samuel, please,
> > 
> > What's the difference between run this two commands?:
> > 
> > dd if=/dev/zero of=debian-hurd-03102010-qemu.img.tar seek=2146959359 bs=1 
> > count=1
> > 
> > dd if=/dev/zero of=debian-hurd-03102010-qemu.img seek=2146959359 bs=1 
> > count=1
> > 
> > Do both "the same thing", or not?.
> 
> Oops, no, they don't. I meant to do the latter, of course, to extend the
> image *before* recompressing it.
> 
> Samuel
> 

Okey then. I think i read your mind and understanded what you meant :)

The image uploaded to 

http://dl.dropbox.com/u/6417512/Hurd/debian-hurd-03102010-qemu.img.tar.gz

was done using the latter command,

dd if=/dev/zero of=debian-hurd-03102010-qemu.img seek=2146959359 bs=1 count=1

So, now i'm trying to guess how to use that space that "can't be seen" for 
create a
Swap area.

Thanks you very much, Samuel.

Regards.

Jose.

-- 
http://lordofunix.eu5.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.



Iceape Segmentation fault

2010-10-25 Thread Jose Luis Alarcon Sanchez
Hi.

When i try to run Iceape from a terminal, i get this,

$ process 1081: D-Bus library appears to be incorrectly set up; failed to
read machine uuid: Failed to open "/var/lib/dbus/machine-id": Permission
denied
See the manual page for dbus-uuidgen to correct this issue.
GConf Error: Failed to contact configuration server; the most common cause
is a missing or misconfigured D-Bus session bus daemon. See
http://projects.gnome.org/gconf/ for information. (Details -  1: Failed to
get connection to session: /usr/bin/dbus-launch terminated abnormally with
the following error: EOF in dbus-launch reading address from bus daemon
)

[1]+  Segmentation fault  (core dumped) iceape
$

Any advice, please?. Or, at least, a clue of what is happening?.

Thanks, Folks.

Regards.

Jose.

-- 
http://lordofunix.eu5.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.



/dev/urandom: Unknown device name

2010-10-26 Thread Jose Luis Alarcon Sanchez
Hi.

I'm trying to generate a key using 'gpg --gen-key' command, but at the end
of the process the output ends with:

"gpg: fatal: can't open /dev/urandom: No such file or directory
secmem usage: 2304/2304 bytes in 8/8 blocks of pool 2304/32768"

Then i try to create the /dev/urandom device using the /dev/MAKEDEV script,
and the output is:

"./MAKEDEV: urandom: Unknown device name"

How can be this managed?, what do the /dev/urandom device?, exist (or must
exist) /dev/urandom on a GNU/Hurd system?.

Thanks in advance, for your answers.

Regards.

Jose.

-- 
http://lordofunix.eu5.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.



Re: /dev/urandom: Unknown device name

2010-10-27 Thread Jose Luis Alarcon Sanchez
On Wed, Oct 27, 2010 at 12:40:48AM +0200, Jakub Daniel wrote:
> Apparently it doesnt have to exist as anything that doesnt need encryption
> based on random data is ok.
> 
> install random-egd (entropy gathering daemon)
> 
> Jakub Daniel (jd823592)
>

Thanks Jakub.

Install the package random-egd was the solution and now the command 
'gpg --gen-key' works well and generate keys.

Thanks again. You're very kind.

Regards.

Jose.

-- 
http://lordofunix.eu5.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.


signature.asc
Description: Digital signature


Problem with MergeList...

2012-11-24 Thread Jose Luis Alarcon Sanchez
Hi All.

I am having a problem with aptitude or apt-get in my Debian GNU/Hurd system:

# aptitude update 
E: Encountered a section with no Package: header
E: Problem with MergeList
/var/lib/apt/lists/ftp.debian-ports.org_debian_dists_unreleased_main_binary-hurd-i386_Packages
E: The package lists or status file could not be parsed or opened.
E: Encountered a section with no Package: header
E: Problem with MergeList
/var/lib/apt/lists/ftp.debian-ports.org_debian_dists_unreleased_main_binary-hurd-i386_Packages
E: The package lists or status file could not be parsed or opened.
Get:1 http://ftp.us.debian.org unstable Release.gpg [836B]
Get:2 http://ftp.us.debian.org/debian/ unstable/main Translation-en [4091kB]
Get:3 http://ftp.debian-ports.org unreleased Release.gpg [836B] 

  
Ign http://ftp.debian-ports.org/debian/ unreleased/main Translation-en  

  
Get:4 http://ftp.debian-ports.org unreleased Release [20.9kB]   

  
Err http://ftp.debian-ports.org unreleased Release  

  
  
Get:5 http://ftp.us.debian.org unstable Release [227kB] 

  
Get:6 http://ftp.us.debian.org unstable/main hurd-i386 Packages [5334kB]

  
Fetched 9674kB in 4min 23s (36.7kB/s)   

  
[ ERR] Reading package lists
E: Encountered a section with no Package: header
E: Problem with MergeList
/var/lib/apt/lists/ftp.debian-ports.org_debian_dists_unreleased_main_binary-hurd-i386_Packages
E: The package lists or status file could not be parsed or opened.
E: Couldn't rebuild package cache
E: Could not get lock /var/lib/dpkg/lock - open (1073741859: Resource
temporarily unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg/), is another
process using it?

E: Encountered a section with no Package: header
E: Problem with MergeList
/var/lib/apt/lists/ftp.debian-ports.org_debian_dists_unreleased_main_binary-hurd-i386_Packages
E: The package lists or status file could not be parsed or opened.
# 

# cat /etc/apt/sources.list
deb http://ftp.us.debian.org/debian unstable main 
deb http://ftp.debian-ports.org/debian unreleased main 
# 

Any fix for this, please?.

Thanks very much, in advance. 


-- 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.



Re: Problem with MergeList...

2012-11-24 Thread Jose Luis Alarcon Sanchez
On Sat, Nov 24, 2012 at 04:46:27PM +, Jose Luis Alarcon Sanchez wrote:
> Hi All.
> 
> I am having a problem with aptitude or apt-get in my Debian GNU/Hurd system:
> 
> # aptitude update 
> E: Encountered a section with no Package: header
> E: Problem with MergeList
> /var/lib/apt/lists/ftp.debian-ports.org_debian_dists_unreleased_main_binary-hurd-i386_Packages
> E: The package lists or status file could not be parsed or opened.
> E: Encountered a section with no Package: header
> E: Problem with MergeList
> /var/lib/apt/lists/ftp.debian-ports.org_debian_dists_unreleased_main_binary-hurd-i386_Packages
> E: The package lists or status file could not be parsed or opened.
> Get:1 http://ftp.us.debian.org unstable Release.gpg [836B]
> Get:2 http://ftp.us.debian.org/debian/ unstable/main Translation-en [4091kB]
> Get:3 http://ftp.debian-ports.org unreleased Release.gpg [836B]   
>   
>   
> Ign http://ftp.debian-ports.org/debian/ unreleased/main Translation-en
>   
>   
> Get:4 http://ftp.debian-ports.org unreleased Release [20.9kB] 
>   
>   
> Err http://ftp.debian-ports.org unreleased Release
>   
>   
>   
> Get:5 http://ftp.us.debian.org unstable Release [227kB]   
>   
>   
> Get:6 http://ftp.us.debian.org unstable/main hurd-i386 Packages [5334kB]  
>   
>   
> Fetched 9674kB in 4min 23s (36.7kB/s) 
>   
>   
> [ ERR] Reading package lists
> E: Encountered a section with no Package: header
> E: Problem with MergeList
> /var/lib/apt/lists/ftp.debian-ports.org_debian_dists_unreleased_main_binary-hurd-i386_Packages
> E: The package lists or status file could not be parsed or opened.
> E: Couldn't rebuild package cache
> E: Could not get lock /var/lib/dpkg/lock - open (1073741859: Resource
> temporarily unavailable)
> E: Unable to lock the administration directory (/var/lib/dpkg/), is another
> process using it?
> 
> E: Encountered a section with no Package: header
> E: Problem with MergeList
> /var/lib/apt/lists/ftp.debian-ports.org_debian_dists_unreleased_main_binary-hurd-i386_Packages
> E: The package lists or status file could not be parsed or opened.
> # 
> 
> # cat /etc/apt/sources.list
> deb http://ftp.us.debian.org/debian unstable main 
> deb http://ftp.debian-ports.org/debian unreleased main 
> # 
> 
> Any fix for this, please?.
> 
> Thanks very much, in advance. 
> 

Thanks very much for the replies.

I did:

# rm -v /var/lib/dpkg/*
# apt-get update

and the problem seems solved. All the files on the directory was rewritten.

Thank you.

Regards.

Jose.


--
http://lordofunix.eu5.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




Re: Problem with MergeList...

2012-11-25 Thread Jose Luis Alarcon Sanchez
On Sat, Nov 24, 2012 at 09:54:15PM +0100, Guillem Jover wrote:
> On Sat, 2012-11-24 at 17:58:53 +0000, Jose Luis Alarcon Sanchez wrote:
> > > E: Could not get lock /var/lib/dpkg/lock - open (1073741859: Resource
> > > temporarily unavailable)
> > > E: Unable to lock the administration directory (/var/lib/dpkg/), is 
> > > another
> > > process using it?
> 
> > > Any fix for this, please?.
> > > 
> > > Thanks very much, in advance. 
> 
> You should have checked if there was any other process locking that
> file, usually either a dpkg, apt or aptitude process running. And then
> kill those. Removing the file is not the correct solution (the lock is
> taken on the file itself, not by creating or removing it).
> 
> > I did:
> > 
> > # rm -v /var/lib/dpkg/*
> 
> Unfortunately, with this, you just destroyed your dpkg database. You
> might be able to recover the status file from /var/backups/, but not
> others, like the diversions and statoverride ones. I'll modify the
> dpkg cron job to backup those in dpkg 1.17.x (for jessie), though.
> 
> > # apt-get update
> > 
> > and the problem seems solved. All the files on the directory was rewritten.
> 
> I'd expect the dpkg database to consist of empty files now?
> 
> Regards,
> Guillem
> 
> 

Thanks for your reply, Guillem.

After the 'apt-get update' command the dpkg database files are with the
usual content and they are doing their job quite well.

Regards.

Jose. 

-- 
http://lordofunix.eu5.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.  



Re: Problems in Debian GNU/Hurd with Xorg and GCC

2020-07-03 Thread Jose Luis Alarcon Sanchez



 
 Hi, Almudena. About the startx issue, takea look to this extract:"X.Org has been ported and all video cards, which it supports that do not require a kernel module or drm should work. You need to already be running the Hurd console and have repeaters setup as indicated in the previous section. For instance, check that echo $TERM prints hurd, and check that /dev/cons/kbd and /dev/cons/mouse exist. You need to run dpkg-reconfigure x11-common xserver-xorg-legacy to allow any user to start Xorg, because the X wrapper does not know about the Hurd and Mach consoles. You also need to create a /etc/X11/xorg.conf to enable the control-alt-backspace shortcut:  Section "InputDevice" Identifier "Generic Keyboard" Driver "kbd" Option "XkbOptions" "terminate:ctrl_alt_bksp" EndSection It may happen that for some reason Xorg chooses a 16/9 resolution but a 4/3 desktop size. Blame Xorg, not the Hurd :) To avoid the issue, append this to /etc/X11/xorg.conf :  Section "Screen" Identifier "myScreen" SubSection "Display" Virtual 1024 768 EndSubSection EndSection You will need several X packages. xorg, rxvt and a window manager: twm, icewm, openbox, ... are a good start. If you want X to get started at boot, you have to install a display manager. lightdm and gdm do not work yet, but xdm should just work fine. Finally, run startx /usr/bin/yourwm".Is taken from this Web Page:https://www.debian.org/ports/hurd/hurd-installWich can be considered a kind of "bible" for using Debian GNU/Hurd nowdays.Hope this advice helps you.Regards.Jose. --Enviado desde mi teléfono Android con mail.com 1 Mail. Por favor, disculpe mi brevedad.El 3/7/20, 16:25 Almudena Garcia  escribió:

  
   
Hi all:
   
   

   
   
Today, I'm trying to install Debian GNU/Hurd in a new Thinkpad T60.
   
   
I installed the latest image, from January 2020.
   
   

   
   
But I found some problems in packaging and system running.
   
   

   
   
In Xorg, when I try to execute 
startx, Xorg fails showing error 
No screens found.
   
   
I was checking configurations, but I don't found the origin of this error.
   
   

   
   
Additionally, I have some problems with packaging:
   
   

   
   
- Running 
apt build-dep gnumach, I found a dependency conflict with 
libgcc1 package.
   
   
- And 
git also requires an older version of 
git-man than the default version offered by apt.
   
   
I found also similar problems in 
vim, and many other packages.

   
   

   
   
I attach some images with the errors
   
   

   
   
Can you solve these problems?
   
   
Thanks

   
   

   
   
 




Is Gnome working in Debian Hurd nowdays?

2024-03-15 Thread Jose Luis Alarcon Sanchez
Hi.

I'm wondering if this days is a good idea install gnome in a debian hurd
system.

Right now using FluxBox. The change would be very important, indeed.

Opinions and tips?, please.

Thanks.

Regards.
Jose Luis.

--
https://lordofunix.wixsite.com/website

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




Re: Is Gnome working in Debian Hurd nowdays?

2024-03-15 Thread Jose Luis Alarcon Sanchez
On Fri, Mar 15, 2024 at 03:56:29PM +0100, Almudena Garcia wrote:
> Hi:
>
> GNOME is not available, but I think that you can install MATE and Xfce.
> I installed both some years ago, but I think that continue available.
>
> Thanks
>

Hi.

Ok. I'm gonna try xfce then, still a good advance comparing with fluxbox.

Thanks very much, Almudena and Narcis.

Regards.
Jose Luis.

--
https://lordofunix.wixsite.com/website

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.



How connect Translator /hurd/ftpfs with a non anonimous ftp account with user and passwd

2024-03-17 Thread Jose Luis Alarcon Sanchez
Hi.

I was reading very carefully the documentation page on the GNU Hurd website
titled 'Small Examples on Using Translators'. The part of the Translator
/hurd/hello was exactly as the text said. Very promising intro to the
Translators universe.

I have questions on the Transparent FTP with the /hurd/ftpfs translator. Cos
is short, i paste here the text in the website:


-Documentation---
Transparent FTP

We already setup a a transparent FTP translator for you at /ftp:

With it you can easily access public FTP via the file system, for example the 
one from the GNU project:

$ ls /ftp://ftp.gnu.org/
But you can also do this very easily yourself:

$ # Setup the translator on the node ftp:
$ settrans -c ftp: /hurd/hostmux /hurd/ftpfs /
and you can access FTP sites via the pseudo-directory ftp:, for example with

$ ls ftp://ftp.gnu.org/
What you do here is setting up the translator /hurd/hostmux on ftp: and passing 
it the translator /hurd/ftpfs to use for resolving accesses as well as / as 
additional path component.
-Documentation End---

The 'test' work exactly as the text say, and i did ls on the GNU FTP, but i 
want to introduce here my
question: Can this be done also with a ftp server that requires an user name
and password?. I have my account with user name and password and do well
"traditional ftp". Can i get too have this Transparent FTP that the
marvelous concept of the Translator allows?.

Thanks very much, in advance.

Regards.
Jose Luis.

--
https://lordofunix.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.



Re: How connect Translator /hurd/ftpfs with a non anonimous ftp account with user and passwd

2024-03-17 Thread Jose Luis Alarcon Sanchez
On Sun, Mar 17, 2024 at 06:48:17PM +0100, Samuel Thibault wrote:
> Hello,
>
> Jose Luis Alarcon Sanchez, le dim. 17 mars 2024 18:34:29 +0100, a ecrit:
> > The 'test' work exactly as the text say, and i did ls on the GNU FTP, but i 
> > want to introduce here my
> > question: Can this be done also with a ftp server that requires an user name
> > and password?. I have my account with user name and password and do well
> > "traditional ftp". Can i get too have this Transparent FTP that the
> > marvelous concept of the Translator allows?.
>
> See /hurd/ftpfs --help:
>
> SERVER can be a hostname, in which case anonymous ftp is used, or may
> include a user and password like `USER:PASSWORD@HOST' (the `:PASSWORD'
> part is optional).
>
> So in theory you can pass user+password. But that will then show up in
> ls, so you don't actually want this. Something would need to be added to
> hostmux and/or ftpfs to support this in a safe way.
>

My sequence of commands:

 $ settrans -c ftp: /hurd/hostmux /hurd/ftpfs /
 $ ls ftp://myuser:mypas...@servername.net/
ls: cannot access 'ftp://myuser:mypas...@servername.net/': Translator died
 $

An important aclaration, when i connect the ftp server through conventional
ftp, i input:

 $ ftp servername.net
 >

The part 'ftp://' is not needed. Can this be important?. I tried this:

 $ ls myuser:mypas...@servername.net
 $ ls: cannot access 'myuser:mypas...@servername.net': No such file or directory
 $

I feel a bit frustated, i confess.

Anyway, you always are very kind, Samuel. A million thanks for that.

Regards.

Jose Luis.

--
https://lordofunix.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




Re: How connect Translator /hurd/ftpfs with a non anonimous ftp account with user and passwd

2024-03-18 Thread Jose Luis Alarcon Sanchez
On Sun, Mar 17, 2024 at 08:21:36PM +0100, Samuel Thibault wrote:
> Jose Luis Alarcon Sanchez, le dim. 17 mars 2024 20:13:13 +0100, a ecrit:
> > On Sun, Mar 17, 2024 at 06:48:17PM +0100, Samuel Thibault wrote:
> > > Hello,
> > >
> > > Jose Luis Alarcon Sanchez, le dim. 17 mars 2024 18:34:29 +0100, a ecrit:
> > > > The 'test' work exactly as the text say, and i did ls on the GNU FTP, 
> > > > but i want to introduce here my
> > > > question: Can this be done also with a ftp server that requires an user 
> > > > name
> > > > and password?. I have my account with user name and password and do well
> > > > "traditional ftp". Can i get too have this Transparent FTP that the
> > > > marvelous concept of the Translator allows?.
> > >
> > > See /hurd/ftpfs --help:
> > >
> > > SERVER can be a hostname, in which case anonymous ftp is used, or may
> > > include a user and password like `USER:PASSWORD@HOST' (the `:PASSWORD'
> > > part is optional).
> > >
> > > So in theory you can pass user+password. But that will then show up in
> > > ls, so you don't actually want this. Something would need to be added to
> > > hostmux and/or ftpfs to support this in a safe way.
> > >
> >
> > My sequence of commands:
> >
> >  $ settrans -c ftp: /hurd/hostmux /hurd/ftpfs /
> >  $ ls ftp://myuser:mypas...@servername.net/
> > ls: cannot access 'ftp://myuser:mypas...@servername.net/': Translator died
>

Hello!.

Already know what i was doing wrong yesterday. I was trying to reproduce from 
the
beginning the whole process without 'deactivate' in the fist place all the nodes
with settrans -fg, and so the Translator died. Once erased all the nodes: /,
/hurd/ftpfs, /hurd/hostmux and ftp: i am able to begin again and now i'm
mounting my personal FTP account into the filesystem and operating with it
like with any other directory, with the Unix commands. This is very useful
and really very powerful.

Thanks.

Regards.
Jose Luis.

> This does work for me:
>
> $ settrans -c ftp: /hurd/hostmux /hurd/ftpfs /
> $ ls ftp://anonymous:anonym...@ftp.gnu.org/
> CRYPTO.README  find.txt.gznon-gnu  tmp
> MISSING-FILES  gnuold-gnu  tree.json.gz
> MISSING-FILES.README   gnu+linux-distros  pub  video
> README ls-lrRt.txt.gz savannah welcome.msg
> before-2003-08-01.md5sums.asc  mirrorsthird-party
>
> >  $ ftp servername.net
> >
> > The part 'ftp://' is not needed. Can this be important?
>
> calling ftp already tells you're using the ftp protocol. Above, "ftp://";
> is merely to use the ftp:/ directory that you have set up.
>
> Samuel
>

--
https://lordofunix.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.



Hard Disk size limits on GNU Hurd

2024-03-22 Thread Jose Luis Alarcon Sanchez
Hi.

Several years ago there was a limit in the size of the hard disks that Hurd
could manage. If i'm not wrong, i think it was 5 Gb. or so.

Is still this limit working right now?, or can i create a disk image (for
kvm) with the size i decide (20 Gb. let's say)?.

Thanks very much, in advance.

Regards.
Jose Luis.

--
https://lordofunix.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.



ntpdate : Depends: ntpsec-ntpdate but it is not installable

2024-03-24 Thread Jose Luis Alarcon Sanchez
Hi.

What's the situation with the package ntpsec-ntpdate?. Is there a fix
possible?. I volunteer, if i am able. Waiting for instructions to follow.

Thanks very much, in advance.

Regards.
Jose.

--
https://lordofunix.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.




Re: ntpdate : Depends: ntpsec-ntpdate but it is not installable

2024-03-24 Thread Jose Luis Alarcon Sanchez
On Sun, Mar 24, 2024 at 02:11:39PM +0100, Samuel Thibault wrote:
> Hello,
>
> Jose Luis Alarcon Sanchez, le dim. 24 mars 2024 13:31:22 +0100, a ecrit:
> > What's the situation with the package ntpsec-ntpdate?. Is there a fix
> > possible?. I volunteer, if i am able. Waiting for instructions to follow.
>
> Fixing the build to at least support the step adjustment should be
> relativement easy, yes. The slew adjustment would need adding some
> kernel support for implementing adjtimex.
>

My try of build the source code finish at the configure phase, saying "NO"
when Checking for type struct timex.

I'm not a programmer, i'm only an enthusiastic user, no more. This task
requires a real programmer, i think.

Sorry for the failure. Thanks very much.

Regards.
Jose.

> Samuel

--
https://lordofunix.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.



Re: current_set symbol in GNU Mach

2006-08-14 Thread Jose Luis Alarcon Sanchez
On Mon, 2006-08-14 at 22:55 +0200, Richard Braun wrote:
> Hello,
> 
> I'm trying to get Linux 2.2 sound drivers now, and I'm progressing. But
> there is a symbol I'm unable to handle correctly, which is current_set.
> From dev/include/linux/sched.h:
> extern struct task_struct *current_set[NR_CPUS];
> #define current (0+current_set[smp_processor_id()]) /* Current on this 
> processor */
> 
> The symbol named current_set doesn't exist. It looks like code using the
> macro named current is commented with #ifndef MACH ... #endif. My problem
> is that the sound drivers I'm trying to build use it in many places. Should
> I deactivate those parts ? Should they be replaced by a Mach specific call,
> and which one ? The same issue rose for pcmcia implementation, and comments
> by Stefan Siegl make me think he didn't fully solved the issue either.
> 

Hi Richard.

If you don't want "deactivate" those parts... Can't you "create" in any
way a empty symbol named current_set that match with the symbol the
driver wants?. It this possible?.

Thanks for your work.

Regards.

Jose.


-- 
http://www.lordofunix.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories. 
Rick Deckard. Blade Runner.




___
Bug-hurd mailing list
Bug-hurd@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-hurd


Driver used by Xorg

2007-06-22 Thread Jose Luis Alarcon Sanchez
Hi.

My PC box have a Nvidia GeForce2 card. With Debian
GNU/Hurd, Xorg 7.2 uses the vesa driver. If i change
this in the conf file and try to use de nv driver,
the system fails frotzen and i must to reset.

Only the vesa driver is usable with the GNU/Hurd
system?. If yes, why?.

Thanks very much, in advance.

Regards.

Jose.

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.


___
Bug-hurd mailing list
Bug-hurd@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-hurd


Re: Driver used by Xorg

2007-06-23 Thread Jose Luis Alarcon Sanchez
On Sat, Jun 23, 2007 at 09:20:48PM +0200, Samuel Thibault wrote:
> Jose Luis Alarcon Sanchez, le Sat 23 Jun 2007 21:16:05 +0200, a ?crit :
> > On Sat, Jun 23, 2007 at 07:17:44PM +0200, Samuel Thibault wrote:
> > > Hi,
> > > 
> > > Jose Luis Alarcon Sanchez, le Sat 23 Jun 2007 04:52:26 +0200, a ?crit :
> > > > My PC box have a Nvidia GeForce2 card.
> > > > If i change
> > > > this in the conf file and try to use de nv driver,
> > > > the system fails frotzen and i must to reset.
> > > 
> > > Could you post your /var/log/Xorg.0.log ? I'm afraid this has to do with
> > > Memory-mapped I/O and MTRRs.
> > > 
> > > Samuel
> > > 
> > 
> > Thanks for the reply, Samuel. Here go /var/log/Xorg.0.log and
> > /var/log/Xorg.0.log.old
> 
> Mmm, these logs are with the vesa driver enabled, not nv. BTW, you
> should drop any LoadModule line from your xorg.conf, these are useless
> nowadays.
> 
> Samuel
> 

Well, you're right. Here is the /var/log/Xorg.0.log with two trys for
init X with nv driver. And too my /etc/X11/xorg.conf

Thanks you.

Regards.

Jose.

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.

X Window System Version 1.3.0
Release Date: 19 April 2007
X Protocol Version 11, Revision 0, Release 1.3
Build Operating System: GNU Debian
Current Operating System: GNU Endeavour.lordofunix.org 0.3 GNU-Mach 
1.3.99/Hurd-0.3 i686-AT386
Build Date: 08 May 2007
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Jun 23 23:32:32 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Generic Monitor"
(**) |   |-->Device "Generic Video Card"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
Entry deleted from font path.
(WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not 
exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi
(==) RgbPath set to "/etc/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Loader magic: 0x81d1540
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.3
X.Org Video Driver: 1.2
X.Org XInput driver : 0.7
X.Org Server Extension : 0.3
X.Org Font Renderer : 0.5
(II) Loader running on hurd
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules//libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 1.3.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 1.2
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x8001f800, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,0305 card 1043,8042 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,8305 card , rev 00 class 06,04,00 hdr 01
(II) PCI: 00:04:0: chip 1106,0686 card 1043,8042 rev 40 class 06,01,00 hdr 80
(II) PCI: 00:04:1: chip 1106,0571 card , rev 06 class 01,01,8a hdr 00
(II) PCI: 00:04:2: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
(II) PCI: 00:04:3: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
(II) PCI: 00:04:4: chip 1106,3057 card 1043,8042 rev 40 class 06,80,00 hdr 00
(II) PCI: 00:0a:0: chip 13f6,0111 card 13f6,0111 rev 10 class 04,01,00 hdr 00
(II) PCI: 00:0c:0: chip 10ec,8139 card 10ec,8139 rev 10 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 10de,0111 card 107d,285b rev b2 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II)

xf86ReadBIOS() can't device open

2007-06-24 Thread Jose Luis Alarcon Sanchez
Hi Folks.

I have a just now compiled gnumach kernel from Branch 1. It looks
run okey except at time of run Xorg. The boot of X stop with
this mesage:

Fatal server error:
xf86ReadBIOS() can't device open. ((os/device) no such device)

At this point i can do Ctrl+z and kill the process. If i return
to the kernel that came with K14 CD i can run Xorg without
problems (only with vesa driver, you know...).

I used autoreconf -i -f for build the configure script, and used
the --enable-lpr --enable-floppy flags to run it. The configure
went well, but finished with a warning about it's better have
automake-1.10 than my actual automake-1.9. I tried apt-get
the newer version, but in the hurd repositories don't exist
1.10.

The make part was really quickly and around 7 or 9 minutes the
gnumach binary was build. At this point i did 'strip gnumach'
copy in the /boot repository (previous backup of the former
kernel) and at last gzip gnumach.

Reboot okey, net okey, hurd console okey, all looks okey, except
this problem with xf86ReadBIOS(). :(

What do you think about it?. Can you help with this, please?.

Thanks you very much, in advance.

Regards.

Jose.

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.


___
Bug-hurd mailing list
Bug-hurd@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-hurd


Re: xf86ReadBIOS() can't device open

2007-06-24 Thread Jose Luis Alarcon Sanchez
On Sun, Jun 24, 2007 at 02:34:12PM +0200, Samuel Thibault wrote:
> Hi,
> 
> Jose Luis Alarcon Sanchez, le Sun 24 Jun 2007 14:26:47 +0200, a ?crit :
> > What do you think about it?. Can you help with this, please?.
> 
> This is a know issue about video memory mapping, no clean interface has
> been defined yet.
> 
> For now, grab the debian/patches/40_iopl_mmap_.patch from the debian
> gnumach package for putting back the iopl device.
> 
> Samuel
>

Hi Samuel.

The first, Thank you very much, like ever in this last days.

I'm afraid i don't understand from where get the patch. If i do
a dpkg -L gnumach, the output say:

/.
/boot
/boot/gnumach.gz
/usr
/usr/share
/usr/share/msgids
/usr/share/msgids/gnumach.msgids
/usr/share/doc
/usr/share/doc/gnumach
/usr/share/doc/gnumach/README
/usr/share/doc/gnumach/README-Drivers
/usr/share/doc/gnumach/changelog.Debian.gz
/usr/share/doc/gnumach/README.Debian
/usr/share/doc/gnumach/copyright
/usr/share/doc/gnumach/changelog.gz
/usr/share/doc/gnumach/NEWS.gz
/usr/share/doc/gnumach/ChangeLog.0.gz
/usr/share/doc/gnumach/ChangeLog.00.gz
/usr/share/doc/gnumach/ChangeLog.gz

Dont' see a 40_iopl_mmap_.patch here.

I was looking for too at the Savannah site, but can't find
such patch.

Sorry for my ignorance, please.

Thanks.

Regards.

Jose.

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.


___
Bug-hurd mailing list
Bug-hurd@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-hurd


Re: xf86ReadBIOS() can't device open

2007-06-24 Thread Jose Luis Alarcon Sanchez
On Sun, Jun 24, 2007 at 03:30:27PM +0200, Samuel Thibault wrote:
> Jose Luis Alarcon Sanchez, le Sun 24 Jun 2007 15:28:26 +0200, a ?crit :
> > > For now, grab the debian/patches/40_iopl_mmap_.patch from the debian
> > > gnumach package for putting back the iopl device.
> > 
> > If i do a dpkg -L gnumach, the output say:
> 
> I meant from the source: apt-get source gnumach
> 
> Samuel
>

Okey!.

Thanks vey much Samuel, and too Thomas Schwinge.

The patch 40_iopl_mmap_.patch did the work and now
i have a recient branch 1 kernel, compiled on my
PC, and with the XWindow system working. I hope i
can help in the way you think more useful.

Regards.

Jose.

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.


___
Bug-hurd mailing list
Bug-hurd@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-hurd


Re: xf86ReadBIOS() can't device open

2007-06-24 Thread Jose Luis Alarcon Sanchez
On Sun, Jun 24, 2007 at 09:21:43PM +0200, Thomas Schwinge wrote:
> Hello!
> 
> On Sun, Jun 24, 2007 at 04:35:27PM +0200, Jose Luis Alarcon Sanchez wrote:
> > The patch 40_iopl_mmap_.patch did the work and now
> > i have a recient branch 1 kernel, compiled on my
> > PC, and with the XWindow system working.
> 
> Did you get the vesa driver working or the nv driver?
> 
> 
> Regards,
>  Thomas

Hi Thomas.

nv driver still hang the PC box.

Regards.

Jose.

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.


___
Bug-hurd mailing list
Bug-hurd@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-hurd


ldconfig messages about not simbolic links

2007-06-24 Thread Jose Luis Alarcon Sanchez
Hi folks.

Command apt-get install, when is setting up packages,
many times have an ouput like this:

Setting up liblzo2-2 (2.02-3) ...
ldconfig: /lib/libslapi-2.3.so.0 is not a simbolic link

ldconfig: /lib/libldap_r-2.3.so.0 is not a simbolic link

ldconfig: /lib/libldap-2.3.so.0 is not a simbolic link

ldconfig: /lib/liblber-2.3.so.0 is not a simbolic link

This happen with a lot of lib*** packages. I don't know
why this messages, or if can be important or not. But is
better tell it in the bug-hurd list than don't say nothing,
i think.

Regards.

Jose.

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.


___
Bug-hurd mailing list
Bug-hurd@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-hurd


Re: Driver used by Xorg

2007-06-30 Thread Jose Luis Alarcon Sanchez
On Sat, Jun 30, 2007 at 07:31:14PM +0200, Samuel Thibault wrote:
> Your log ends up with
> 
> > (II) NV(0): I2C bus "DDC" initialized.
> > (II) NV(0): Probing for EDID on I2C bus A...
> > (II) NV(0): I2C device "DDC:ddc2" registered at address 0xA0.
> 
> Maybe you could try to disable ddc??
> 
> Option "DDC" "disable"
> 
> in your device section.
> 
> Samuel
>

Hi Samuel, Mercy.

It don't work. :(

I attach the /var/log/Xorg.0.log file when i tried it.

Regards.

Jose. 

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.

X Window System Version 1.3.0
Release Date: 19 April 2007
X Protocol Version 11, Revision 0, Release 1.3
Build Operating System: GNU Debian
Current Operating System: GNU Endeavour.lordofunix.org 0.3 GNU-Mach 
1.3.99/Hurd-0.3 i686-AT386
Build Date: 08 May 2007
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Jun 30 22:43:14 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Generic Monitor"
(**) |   |-->Device "Generic Video Card"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
Entry deleted from font path.
(WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not 
exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi
(==) RgbPath set to "/etc/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Loader magic: 0x81d1540
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.3
X.Org Video Driver: 1.2
X.Org XInput driver : 0.7
X.Org Server Extension : 0.3
X.Org Font Renderer : 0.5
(II) Loader running on hurd
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules//libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 1.3.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 1.2
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,0305 card 1043,8042 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,8305 card , rev 00 class 06,04,00 hdr 01
(II) PCI: 00:04:0: chip 1106,0686 card 1043,8042 rev 40 class 06,01,00 hdr 80
(II) PCI: 00:04:1: chip 1106,0571 card , rev 06 class 01,01,8a hdr 00
(II) PCI: 00:04:2: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
(II) PCI: 00:04:3: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
(II) PCI: 00:04:4: chip 1106,3057 card 1043,8042 rev 40 class 06,80,00 hdr 00
(II) PCI: 00:0a:0: chip 13f6,0111 card 13f6,0111 rev 10 class 04,01,00 hdr 00
(II) PCI: 00:0c:0: chip 10ec,8139 card 10ec,8139 rev 10 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 10de,0111 card 107d,285b rev b2 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
[0] -1  0   0xd600 - 0xd7ef (0x1f0) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0   0xd7f0 - 0xe5ff (0xe10) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:4:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) nVidia Corporation NV11DDR [GeForce2 MX 100 DDR/200 DDR] rev 
178, Mem @ 0xd600/24, 0xd800/27, BIOS @ 0xd7ff/16
(II) Addressable bus resource ranges are
[0] -1  0   0x - 0x (0x0) MX[B]
[1] -1  0   0x - 0xf

Re: Driver used by Xorg

2007-06-30 Thread Jose Luis Alarcon Sanchez
On Sat, Jun 30, 2007 at 10:59:01PM +0200, Samuel Thibault wrote:
> Jose Luis Alarcon Sanchez, le Sat 30 Jun 2007 22:53:03 +0200, a ?crit :
> > > Maybe you could try to disable ddc??
> > > 
> > > Option "DDC" "disable"
> > > 
> > (WW) NV(0): Option "ddc" requires a boolean value
> 
> Erf, that's not "disable", but "off", probably.
> 
> Samuel
>

Thank you very much, Samuel.

Option "DDC" "False" 

This option got the nv driver works fine. ;)

Regards.

Jose.

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.

X Window System Version 1.3.0
Release Date: 19 April 2007
X Protocol Version 11, Revision 0, Release 1.3
Build Operating System: GNU Debian
Current Operating System: GNU Endeavour.lordofunix.org 0.3 GNU-Mach 
1.3.99/Hurd-0.3 i686-AT386
Build Date: 08 May 2007
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Jun 30 23:10:49 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Generic Monitor"
(**) |   |-->Device "Generic Video Card"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
Entry deleted from font path.
(WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not 
exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi
(==) RgbPath set to "/etc/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Loader magic: 0x81d1540
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.3
X.Org Video Driver: 1.2
X.Org XInput driver : 0.7
X.Org Server Extension : 0.3
X.Org Font Renderer : 0.5
(II) Loader running on hurd
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules//libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 1.3.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 1.2
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,0305 card 1043,8042 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,8305 card , rev 00 class 06,04,00 hdr 01
(II) PCI: 00:04:0: chip 1106,0686 card 1043,8042 rev 40 class 06,01,00 hdr 80
(II) PCI: 00:04:1: chip 1106,0571 card , rev 06 class 01,01,8a hdr 00
(II) PCI: 00:04:2: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
(II) PCI: 00:04:3: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
(II) PCI: 00:04:4: chip 1106,3057 card 1043,8042 rev 40 class 06,80,00 hdr 00
(II) PCI: 00:0a:0: chip 13f6,0111 card 13f6,0111 rev 10 class 04,01,00 hdr 00
(II) PCI: 00:0c:0: chip 10ec,8139 card 10ec,8139 rev 10 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 10de,0111 card 107d,285b rev b2 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
[0] -1  0   0xd600 - 0xd7ef (0x1f0) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0   0xd7f0 - 0xe5ff (0xe10) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:4:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) nVidia Corporation NV11DDR [GeForce2 MX 100 DDR/200 DDR] rev 
178, Mem @ 0xd600/24, 0xd800/27, BIOS @ 0xd7ff/16
(II) Addressable bus resource ranges are
[0] -1  0   0x - 0x (0x0) MX[B]
[1] -1  0   

Re: Driver used by Xorg

2007-07-01 Thread Jose Luis Alarcon Sanchez
On Sun, Jul 01, 2007 at 12:09:06AM +0200, Samuel Thibault wrote:
> Hi,
> 
> Jose Luis Alarcon Sanchez, le Sat 30 Jun 2007 23:15:11 +0200, a ?crit :
> > Option "DDC" "False" 
> > 
> > This option got the nv driver works fine. ;)
> 
> Ok, good.  What kind of processor is this?  I guess some recent
> processor.  Could you
> 
> - power down your machine
> - power it up, start linux but not X
> - paste us /proc/mtrr
> - start X
> - while X is started, paste us /proc/mtrr if it is different.
> 
> Samuel
> 

Hi Samuel.

Pasted here 3 "docs": the complete dmesg output from my GNU/Linux
system for you can see how is this machine. the /proc/mtrr before
startx (mtrr.txt) and the /proc/mtrr with XWindow running (mtrr-X.txt).

I hope this be useful for you.

Thanks you very much.

Regards.

Jose.

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.
[0.00] Linux version 2.6.20-16-generic ([EMAIL PROTECTED]) (gcc version 
4.1.2 (Ubuntu 4.1.2-0ubuntu4)) #2 SMP Thu Jun 7 20:19:32 UTC 2007 (Ubuntu 
2.6.20-16.29-generic)
[0.00] BIOS-provided physical RAM map:
[0.00] sanitize start
[0.00] sanitize end
[0.00] copy_e820_map() start:  size: 0009fc00 
end: 0009fc00 type: 1
[0.00] copy_e820_map() type is E820_RAM
[0.00] copy_e820_map() start: 0009fc00 size: 0400 
end: 000a type: 2
[0.00] copy_e820_map() start: 000f size: 0001 
end: 0010 type: 2
[0.00] copy_e820_map() start: 0010 size: 1feec000 
end: 1ffec000 type: 1
[0.00] copy_e820_map() type is E820_RAM
[0.00] copy_e820_map() start: 1ffec000 size: 3000 
end: 1ffef000 type: 3
[0.00] copy_e820_map() start: 1ffef000 size: 0001 
end: 1000 type: 2
[0.00] copy_e820_map() start: 1000 size: 1000 
end: 2000 type: 4
[0.00] copy_e820_map() start:  size: 0001 
end: 0001 type: 2
[0.00]  BIOS-e820:  - 0009fc00 (usable)
[0.00]  BIOS-e820: 0009fc00 - 000a (reserved)
[0.00]  BIOS-e820: 000f - 0010 (reserved)
[0.00]  BIOS-e820: 0010 - 1ffec000 (usable)
[0.00]  BIOS-e820: 1ffec000 - 1ffef000 (ACPI data)
[0.00]  BIOS-e820: 1ffef000 - 1000 (reserved)
[0.00]  BIOS-e820: 1000 - 2000 (ACPI NVS)
[0.00]  BIOS-e820:  - 0001 (reserved)
[0.00] 0MB HIGHMEM available.
[0.00] 511MB LOWMEM available.
[0.00] Entering add_active_range(0, 0, 131052) 0 entries of 256 used
[0.00] Zone PFN ranges:
[0.00]   DMA 0 -> 4096
[0.00]   Normal   4096 ->   131052
[0.00]   HighMem131052 ->   131052
[0.00] early_node_map[1] active PFN ranges
[0.00] 0:0 ->   131052
[0.00] On node 0 totalpages: 131052
[0.00]   DMA zone: 32 pages used for memmap
[0.00]   DMA zone: 0 pages reserved
[0.00]   DMA zone: 4064 pages, LIFO batch:0
[0.00]   Normal zone: 991 pages used for memmap
[0.00]   Normal zone: 125965 pages, LIFO batch:31
[0.00]   HighMem zone: 0 pages used for memmap
[0.00] DMI 2.3 present.
[0.00] ACPI: RSDP (v000 ASUS  ) @ 
0x000f6a10
[0.00] ACPI: RSDT (v001 ASUS   A7V-133  0x30303031 MSFT 0x31313031) @ 
0x1ffec000
[0.00] ACPI: FADT (v001 ASUS   A7V-133  0x30303031 MSFT 0x31313031) @ 
0x1ffec080
[0.00] ACPI: BOOT (v001 ASUS   A7V-133  0x30303031 MSFT 0x31313031) @ 
0x1ffec040
[0.00] ACPI: DSDT (v001   ASUS A7V-133  0x1000 MSFT 0x010b) @ 
0x
[0.00] ACPI: PM-Timer IO Port: 0xe408
[0.00] Allocating PCI resources starting at 3000 (gap: 
2000:dfff)
[0.00] Detected 1311.709 MHz processor.
[   25.761566] Built 1 zonelists.  Total pages: 130029
[   25.761572] Kernel command line: 
root=UUID=7479c7b4-35fa-4cb1-ba18-9410da41ccdf ro quiet splash locale=es_ES
[   25.761844] Local APIC disabled by BIOS -- you can enable it with "lapic"
[   25.761861] mapped APIC to d000 (0140a000)
[   25.761868] Enabling fast FPU save and restore... done.
[   25.761888] Initializing CPU#0
[   25.762013] PID hash table entries: 2048 (order: 11, 8192 bytes)
[   25.763322] Console: colour VGA+ 80x25
[   25.764112] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
[   25.764626] Inode-cache has

Athlon patch. (Was:Re: Driver used by Xorg)

2007-07-02 Thread Jose Luis Alarcon Sanchez
On Sun, Jul 01, 2007 at 10:57:17PM +0200, Samuel Thibault wrote:
> Jose Luis Alarcon Sanchez, le Sun 01 Jul 2007 13:56:22 +0200, a ?crit :
> > [   26.383601] CPU0: AMD Athlon(tm) Processor stepping 04
> 
> Ok, so this is Athlon. Could you try to apply attached patch to gnumach?
> (and if that helps, try without CR0_NW)
> 
> Samuel

> Index: ./i386/i386at/model_dep.c
> ===
> RCS file: /cvsroot/hurd/gnumach/i386/i386at/Attic/model_dep.c,v
> retrieving revision 1.9.2.13
> diff -u -p -r1.9.2.13 model_dep.c
> --- ./i386/i386at/model_dep.c 5 May 2007 15:27:44 -   1.9.2.13
> +++ ./i386/i386at/model_dep.c 1 Jul 2007 20:56:30 -
> @@ -268,7 +268,8 @@ i386at_init(void)
>   set_cr3((unsigned)kernel_page_dir);
>   if (CPU_HAS_FEATURE(CPU_FEATURE_PGE))
>   set_cr4(get_cr4() | CR4_PGE);
> - set_cr0(get_cr0() | CR0_PG | CR0_WP);
> + printf("boot cr0 is %x\n",get_cr0());
> + set_cr0(get_cr0() | CR0_PG | CR0_WP | CR0_CD | CR0_NW);
>   flush_instr_queue();
>  
>   /*

Hi Samuel.

/usr/src/gnumach# patch -p0 < samuel.patch 
patching file ./i386/i386at/model_dep.c
Hunk #1 FAILED at 268.
1 out of 1 hunk FAILED -- saving rejects to file
./i386/i386at/model_dep.c.rej
/usr/src/gnumach# 

Attached files samuel.patch i try to apply and i386/i386at/model_dep.c.rej

Regards.

Jose.

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.
Index: ./i386/i386at/model_dep.c
===
RCS file: /cvsroot/hurd/gnumach/i386/i386at/Attic/model_dep.c,v
retrieving revision 1.9.2.13
diff -u -p -r1.9.2.13 model_dep.c
--- ./i386/i386at/model_dep.c   5 May 2007 15:27:44 -   1.9.2.13
+++ ./i386/i386at/model_dep.c   1 Jul 2007 20:56:30 -
@@ -268,7 +268,8 @@ i386at_init(void)
set_cr3((unsigned)kernel_page_dir);
if (CPU_HAS_FEATURE(CPU_FEATURE_PGE))
set_cr4(get_cr4() | CR4_PGE);
-   set_cr0(get_cr0() | CR0_PG | CR0_WP);
+   printf("boot cr0 is %x\n",get_cr0());
+   set_cr0(get_cr0() | CR0_PG | CR0_WP | CR0_CD);
flush_instr_queue();

/*
*** i386at_init(void)
*** 268,274 
 set_cr3((unsigned)kernel_page_dir);
 if (CPU_HAS_FEATURE(CPU_FEATURE_PGE))
 set_cr4(get_cr4() | CR4_PGE);
-set_cr0(get_cr0() | CR0_PG | CR0_WP);
 flush_instr_queue();
  
 /*
--- 268,275 
 set_cr3((unsigned)kernel_page_dir);
 if (CPU_HAS_FEATURE(CPU_FEATURE_PGE))
 set_cr4(get_cr4() | CR4_PGE);
+printf("boot cr0 is %x\n",get_cr0());
+set_cr0(get_cr0() | CR0_PG | CR0_WP | CR0_CD);
 flush_instr_queue();
  
 /*


signature.asc
Description: Digital signature
___
Bug-hurd mailing list
Bug-hurd@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-hurd


Re: Athlon patch. (Was:Re: Driver used by Xorg)

2007-07-02 Thread Jose Luis Alarcon Sanchez
On Mon, Jul 02, 2007 at 02:23:19PM +0200, Samuel Thibault wrote:
> Jose Luis Alarcon Sanchez, le Mon 02 Jul 2007 12:28:18 +0200, a ?crit :
> > /usr/src/gnumach# patch -p0 < samuel.patch 
> > patching file ./i386/i386at/model_dep.c
> > Hunk #1 FAILED at 268.
> > 1 out of 1 hunk FAILED -- saving rejects to file
> > ./i386/i386at/model_dep.c.rej
> 
> Mmm, what version of gnumach is this? The patch should apply fine both
> to CVS and debian versions...  Could you send me your model_dep.c?
> 
> Samuel
>

Hi again, Samuel.

I read your patch, and i think too it must be applied fine. I can't guess
why failed.

Applied "by hand", editing i386/i386at/model_dep.c with my favorite editor.
Applied to a clean gnumach brach 1  directory, downloaded today from CVS.

I attach the file i386/i386at/model_dep.c, for you can see my editing and,
of course klog.txt, for you can se the boot messages.

I must to say this kernel turn the system very, very, very slow.

Regards.

Jose. 

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.
GNU Mach 1.3.99
AT386 boot: physical memory from 0x0 to 0x1ffec000
boot cr0 is 11
GNU Mach 1.3.99
AT386 boot: physical memory from 0x0 to 0x1ffec000
boot cr0 is 11
pcibios_init : BIOS32 Service Directory structure at 0xf92a0
pcibios_init : BIOS32 Service Directory entry at 0xf0f50
pcibios_init : PCI BIOS revision 2.10 entry at 0xf1150
Probing PCI hardware.
hd0: ST340810A, 38166MB w/2048kB Cache, CHS=4865/255/63
hd2: Pioneer DVD-ROM ATAPIModel DVD-116 0122, ATAPI CDROM drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
ide1 at 0x170-0x177,0x376 on irq 15
Floppy drive(s): fd0 is 1.44M
FDC 0 is a post-1991 82077
Failed initialization of WD-7000 SCSI card!
EATA0: address 0x1f0 in use, skipping probe.
EATA0: address 0x170 in use, skipping probe.
ppa: Version 1.42
ppa: Probing port 03bc
ppa: Probing port 0378
ppa: SPP port present
ppa: ECP with a i byte FIFO present
ppa: PS/2 bidirectional port present
ppa: Failed Intel bug check. (Phony EPP in ECP)
ppa: Probing port 0278
scsi : 0 hosts.
scsi : detected total.
rtl8139.c:v1.23a 8/24/2003 Donald Becker, [EMAIL PROTECTED]
 http://www.scyld.com/network/rtl8139.html
eth0: RealTek RTL8139C Fast Ethernet at 0xa000, IRQ 11,  0:40:f4:55:56:9f.
via-rhine.c:v1.16 7/22/2003  Written by Donald Becker <[EMAIL PROTECTED]>
  http://www.scyld.com/network/via-rhine.html
0 3c515 cards found.
eth1: D-Link DE-600 pocket adapter: not at I/O 0x378.
D-Link DE-620 pocket adapter not identified in the printer port
Partition check (DOS partitions):
 hd0: hd0s1 hd0s2 hd0s3 hd0s4
Linux PCMCIA Card Services 3.2.8
  kernel build: 2.0.36 
  options:  [pci]
PCI routing table version 1.0 at 0xf1720
Intel ISA/PCI/CardBus PCIC probe:
  no bridges found.
ds: no socket drivers loaded!


xirc2ps_cs.c 1.31 1998/12/09 19:32:55 (dd9jn+kvh)
com0: at atbus0, port = 3f8, spl = 6, pic = 4. (DOS COM1)
com1: at atbus1, port = 2f8, spl = 6, pic = 3. (DOS COM2)
lpr0: at atbus2, port = 378, spl = 6, pic = 7.

module 0: /hurd/ext2fs.static --readonly 
--multiboot-command-line=${kernel-command-line} 
--host-priv-port=${host-port} --device-master-port=${device-port} 
--exec-server-task=${exec-task} -T typed ${root} $(task-create) 
$(task-resume) 
module 1: /lib/ld.so.1 /hurd/exec $(exec-task=task-create)  


  
2 multiboot modules 


task loaded: /hurd/ext2fs.static --readonly 
--multiboot-command-line=/boot/gnumach.gz root=device:hd0s2 --host-priv-port=1 
--device-master-port=2 --exec-server-task=3 -T typed device:hd0s2
task loaded: /lib/ld.so.1 /hurd/exec

start /hurd/ext2fs.static: /*
 * Mach Operating System
 * Copyright (c) 1991,1990,1989, 1988 Carnegie Mellon University
 * All Rights Reserved.
 *
 * Permission to use, copy, modify and distribute this software and its
 * documentation is hereby granted, provided that both the copyright
 * notice and this permission notice appear in all copies of the
 * software, derivative works or modified versions, and any portions
 * thereof, and that both notices appear in supporting documentation.
 *
 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
 * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
 *
 * Carnegie Mellon requests users of this software to return to
 *
 *  So

Re: Athlon patch. (Was:Re: Driver used by Xorg)

2007-07-03 Thread Jose Luis Alarcon Sanchez
On Mon, Jul 02, 2007 at 02:50:03PM +0200, Samuel Thibault wrote:
> Hi,
> 
> Jose Luis Alarcon Sanchez, le Mon 02 Jul 2007 14:43:41 +0200, a ?crit :
> > I attach the file i386/i386at/model_dep.c, for you can see my editing and,
> > of course klog.txt, for you can se the boot messages.
> 
> And does nv then work with ddc?  And could you try without CR0_NW?
> 

Yes, after a long, long wait... The Xorg server boot with nv driver
and DDC enabled. But when i try to finish X, the system hangs. Attached
the Xorg.0.log.

Now i'm going to build another kernel, without CR0_NW. Tell you later.

Regards.

Jose.

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.

X Window System Version 1.3.0
Release Date: 19 April 2007
X Protocol Version 11, Revision 0, Release 1.3
Build Operating System: GNU Debian
Current Operating System: GNU Endeavour.lordofunix.org 0.3 GNU-Mach 
1.3.99/Hurd-0.3 i686-AT386
Build Date: 08 May 2007
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Mon Jul  2 15:03:00 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Generic Monitor"
(**) |   |-->Device "Generic Video Card"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
Entry deleted from font path.
(WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not 
exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi
(==) RgbPath set to "/etc/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Loader magic: 0x81d1540
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.3
X.Org Video Driver: 1.2
X.Org XInput driver : 0.7
X.Org Server Extension : 0.3
X.Org Font Renderer : 0.5
(II) Loader running on hurd
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules//libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 1.3.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 1.2
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x8001f800, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,0305 card 1043,8042 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,8305 card , rev 00 class 06,04,00 hdr 01
(II) PCI: 00:04:0: chip 1106,0686 card 1043,8042 rev 40 class 06,01,00 hdr 80
(II) PCI: 00:04:1: chip 1106,0571 card , rev 06 class 01,01,8a hdr 00
(II) PCI: 00:04:2: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
(II) PCI: 00:04:3: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
(II) PCI: 00:04:4: chip 1106,3057 card 1043,8042 rev 40 class 06,80,00 hdr 00
(II) PCI: 00:0a:0: chip 13f6,0111 card 13f6,0111 rev 10 class 04,01,00 hdr 00
(II) PCI: 00:0c:0: chip 10ec,8139 card 10ec,8139 rev 10 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 10de,0111 card 107d,285b rev b2 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
[0] -1  0   0xd600 - 0xd7ef (0x1f0) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0   0xd7f0 - 0xe5ff (0xe10) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:4:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) nVidia Corporation NV11DDR [GeForce2 MX 100 DDR/200 DDR] rev 
178, Mem @ 0xd600/24, 0xd800/27, BIOS @ 0xd7ff/16
(II) Addressable bus resource ranges are
[0] -1  0   0x - 

Re: Athlon patch. (Was:Re: Driver used by Xorg)

2007-07-03 Thread Jose Luis Alarcon Sanchez
On Mon, Jul 02, 2007 at 02:50:03PM +0200, Samuel Thibault wrote:
> Hi,
> 
> Jose Luis Alarcon Sanchez, le Mon 02 Jul 2007 14:43:41 +0200, a ?crit :
> > I attach the file i386/i386at/model_dep.c, for you can see my editing and,
> > of course klog.txt, for you can se the boot messages.
> 
> And does nv then work with ddc?  And could you try without CR0_NW?
> 

Without CR0_NW the XWindow boots too, with nv driver and DDC enabled.

The speed of the system is a bit better than with CR0_NW, but still is
very better the kernel without your changes. /var/log/Xorg.0.log attached.

Regards.

Jose. 

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.

X Window System Version 1.3.0
Release Date: 19 April 2007
X Protocol Version 11, Revision 0, Release 1.3
Build Operating System: GNU Debian
Current Operating System: GNU Endeavour.lordofunix.org 0.3 GNU-Mach 
1.3.99/Hurd-0.3 i686-AT386
Build Date: 08 May 2007
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Tue Jul  3 12:55:38 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Generic Monitor"
(**) |   |-->Device "Generic Video Card"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
Entry deleted from font path.
(WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not 
exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi
(==) RgbPath set to "/etc/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Loader magic: 0x81d1540
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.3
X.Org Video Driver: 1.2
X.Org XInput driver : 0.7
X.Org Server Extension : 0.3
X.Org Font Renderer : 0.5
(II) Loader running on hurd
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules//libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 1.3.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 1.2
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x8001f800, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,0305 card 1043,8042 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,8305 card , rev 00 class 06,04,00 hdr 01
(II) PCI: 00:04:0: chip 1106,0686 card 1043,8042 rev 40 class 06,01,00 hdr 80
(II) PCI: 00:04:1: chip 1106,0571 card , rev 06 class 01,01,8a hdr 00
(II) PCI: 00:04:2: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
(II) PCI: 00:04:3: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
(II) PCI: 00:04:4: chip 1106,3057 card 1043,8042 rev 40 class 06,80,00 hdr 00
(II) PCI: 00:0a:0: chip 13f6,0111 card 13f6,0111 rev 10 class 04,01,00 hdr 00
(II) PCI: 00:0c:0: chip 10ec,8139 card 10ec,8139 rev 10 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 10de,0111 card 107d,285b rev b2 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
[0] -1  0   0xd600 - 0xd7ef (0x1f0) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0   0xd7f0 - 0xe5ff (0xe10) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:4:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) nVidia Corporation NV11DDR [GeForce2 MX 100 DDR/200 DDR] rev 
178, Mem @ 0xd600/24, 0xd800/27, BIOS @ 0xd7ff/16
(II) Addressable bus resource ranges are
[0] -1  0   0x - 0x (0x0) 

Re: Athlon patch. (Was:Re: Driver used by Xorg)

2007-07-03 Thread Jose Luis Alarcon Sanchez
On Tue, Jul 03, 2007 at 11:17:30PM +0200, Samuel Thibault wrote:
> Hi,
> 
> Jose Luis Alarcon Sanchez, le Tue 03 Jul 2007 13:18:37 +0200, a ?crit :
> > Without CR0_NW the XWindow boots too, with nv driver and DDC enabled.
> 
> Could you try with the attached patch instead of my previous patch?
> 
> Note: this patch is what Linux always does.
> 
> Samuel

> Index: i386/intel/pmap.c
> ===
> RCS file: /cvsroot/hurd/gnumach/i386/intel/pmap.c,v
> retrieving revision 1.4.2.17
> diff -u -p -r1.4.2.17 pmap.c
> --- i386/intel/pmap.c 30 Apr 2007 20:30:11 -  1.4.2.17
> +++ i386/intel/pmap.c 3 Jul 2007 21:15:36 -
> @@ -1506,6 +1506,9 @@ Retry:
>   template |= INTEL_PTE_USER;
>   if (prot & VM_PROT_WRITE)
>   template |= INTEL_PTE_WRITE;
> + if (machine_slot[cpu_number()].cpu_type >= CPU_TYPE_I486
> + && pa >= phys_last_addr)
> + template |= INTEL_PTE_NCACHE|INTEL_PTE_WTHRU;
>   if (wired)
>   template |= INTEL_PTE_WIRED;
>   PMAP_UPDATE_TLBS(pmap, v, v + PAGE_SIZE);
> @@ -1615,6 +1618,9 @@ Retry:
>   template |= INTEL_PTE_USER;
>   if (prot & VM_PROT_WRITE)
>   template |= INTEL_PTE_WRITE;
> + if (machine_slot[cpu_number()].cpu_type >= CPU_TYPE_I486
> + && pa >= phys_last_addr)
> + template |= INTEL_PTE_NCACHE|INTEL_PTE_WTHRU;
>   if (wired)
>   template |= INTEL_PTE_WIRED;
>   i = ptes_per_vm_page;
>

Can't understand why:

/usr/src/gnumach# patch -p0 < patch_04.patch 
patching file i386/intel/pmap.c
Hunk #1 FAILED at 1506.
Hunk #2 FAILED at 1618.
2 out of 2 hunks FAILED -- saving rejects to file i386/intel/pmap.c.rej
/usr/src/gnumach# 
/usr/src/gnumach# cat i386/intel/pmap.c.rej
*** Retry:
*** 1506,1511 
 template |= INTEL_PTE_USER;
 if (prot & VM_PROT_WRITE)
 template |= INTEL_PTE_WRITE;
 if (wired)
 template |= INTEL_PTE_WIRED;
 PMAP_UPDATE_TLBS(pmap, v, v + PAGE_SIZE);
--- 1506,1514 
 template |= INTEL_PTE_USER;
 if (prot & VM_PROT_WRITE)
 template |= INTEL_PTE_WRITE;
+if (machine_slot[cpu_number()].cpu_type >= CPU_TYPE_I486
+&& pa >= phys_last_addr)
+template |= INTEL_PTE_NCACHE|INTEL_PTE_WTHRU;
 if (wired)
 template |= INTEL_PTE_WIRED;
 PMAP_UPDATE_TLBS(pmap, v, v + PAGE_SIZE);
*** Retry:
*** 1615,1620 
 template |= INTEL_PTE_USER;
 if (prot & VM_PROT_WRITE)
 template |= INTEL_PTE_WRITE;
 if (wired)
 template |= INTEL_PTE_WIRED;
 i = ptes_per_vm_page;
--- 1618,1626 
 template |= INTEL_PTE_USER;
 if (prot & VM_PROT_WRITE)
 template |= INTEL_PTE_WRITE;
+if (machine_slot[cpu_number()].cpu_type >= CPU_TYPE_I486
+&& pa >= phys_last_addr)
+template |= INTEL_PTE_NCACHE|INTEL_PTE_WTHRU;
 if (wired)
 template |= INTEL_PTE_WIRED;
 i = ptes_per_vm_page;
/usr/src/gnumach#

Can you see the "problem"?.

Regards.

Jose. 

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.


signature.asc
Description: Digital signature
___
Bug-hurd mailing list
Bug-hurd@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-hurd


Re: Athlon patch. (Was:Re: Driver used by Xorg)

2007-07-06 Thread Jose Luis Alarcon Sanchez
On Wed, Jul 04, 2007 at 10:04:03AM +0700, Ivan Shmakov wrote:
>>>>>> "JLAS" == Jose Luis Alarcon Sanchez <[EMAIL PROTECTED]> 
>>>>>> writes:
>
> >> Could you try with the attached patch instead of my previous patch?
>
> >> Note: this patch is what Linux always does.
>
> [...]
>
> >> template |= INTEL_PTE_WRITE;
> >> +   if (machine_slot[cpu_number()].cpu_type >= CPU_TYPE_I486
> >> +   && pa >= phys_last_addr)
> >> +   template |= INTEL_PTE_NCACHE|INTEL_PTE_WTHRU;
> >> if (wired)
>
>NB: the original message has TABs (^I, ASCII 9) here.  Like the
>file you're trying to patch, I guess.
>
> [...]
>
> JLAS> Can't understand why:
>
> > /usr/src/gnumach# patch -p0 < patch_04.patch
> > patching file i386/intel/pmap.c
> > Hunk #1 FAILED at 1506.
> > Hunk #2 FAILED at 1618.
> > 2 out of 2 hunks FAILED -- saving rejects to file i386/intel/pmap.c.rej
> > /usr/src/gnumach#
>
> [...]
>
> >  template |= INTEL_PTE_WRITE;
> > +if (machine_slot[cpu_number()].cpu_type >= CPU_TYPE_I486
> > +&& pa >= phys_last_addr)
> > +template |= INTEL_PTE_NCACHE|INTEL_PTE_WTHRU;
> >  if (wired)
>
>... While here are the spaces (ASCII 32).
>
> [...]
>
> JLAS> Can you see the "problem"?.
>
>Looks like ``TABs vs. spaces'' problem.  How did you put the
>attachment's contents into `patch_04.patch'?  Might it be that
>TABs were expanded to spaces?  You should try to avoid the
>expansion, or you may use the `--ignore-whitespace' option to
>`patch'.
>

Thank you very much, Ivan. You're very kind. Option `--ignore-whitespace'
got Samuel patch was applied perfectly. :)

Samuel, your patch works fine. :) Now i'm on X using nv driver and DDC
option enabled. The Speed is... well, is the "best" speed Gnumach can give. ;)

Best Regards.

Jose.

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.


signature.asc
Description: Digital signature
___
Bug-hurd mailing list
Bug-hurd@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-hurd