is dpkg install atomic?

2021-10-26 Thread Han
Hi,

This might be a dumb question:  is dpkg installing (or updating) a package
using a .deb file atomic in the event of power outage?

By atomic, I meant either the new version of the application is fully
installed, or not at all.  Is this always guaranteed?

I read the `man dpkg` doc, but couldn't find a clear answer. I might have
missed it though.

Thanks,
Han


Re: Solved: Re: Can't install flashplugin.nonfree. ERROR: wget failed to download

2012-05-03 Thread Han Soo Chang
Thank you very much for your very thoughtful comments, Bob.
I truly appreciate them.
Actually, I was about to unsubscribe from the list when I found them. :-)

 Probably the upstream problem was resolved and this was then allowed.
 When external influences cause success and failure outside of your
 carefully designed experiment it can cause a lot of confusion.

I would like to think so, too.  But, unfortunately, the error is still
reproducible.
I purge the package flashplugin-nonfree, and try to install it.
Then, I still get the same error.
So, the interpretation becomes difficult.
Of course, the server may be still having some problem. :-)

 You can test this.  Type in:

   $ sudo id
   uid=0(root) gid=0(root) groups=0(root)

   $ sudo sh -c 'echo $PATH'
   /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

$ sudo id
uid=0(root) gid=0(root) 所属グループ=0(root)
$ sudo sh -c 'echo $PATH'
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin

Well, it has been a quite instructive week for me.
Thank you everyone.
I now want to close this case.

Greetings,
Han Soo


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/cadz+jbosxkgnjks5qkxzh939mjrkle5m+v2ajgr54ez6zno...@mail.gmail.com



Re: Solved: Re: Can't install flashplugin.nonfree. ERROR: wget failed to download

2012-05-02 Thread Han Soo Chang
Thanks for your response.

Yes, I installed sudo, and edited the confiugration file using visudo.
That was easy.
And I have been using sudo in all the cases where I needed to be root.
I believed that it gives me better security.

However, in this particular case of installing flashplugin-nonfree,
sudo apt-get failed, but su apt-get succeeded.

What I'm trying to say is that this could be interpreted as a subtle bug,
because it confuses a user like me.


2012/5/2, Indulekha indule...@theunworthy.com:
 On Wed, May 02, 2012 at 05:07:26PM +1200, Chris Bannister wrote:
 On Tue, May 01, 2012 at 05:05:28PM +0900, Han Soo Chang wrote:
  Thanks for your help.
 
  It was just that I needed to apt-get install as root, not sudo apt-get.
 
  The following command
  # apt-get install flashplugin-nonfree
  worked just fine.
 
  $ sudo apt-get install flashplugin-nonfree
  failed because the invoked script probably did not have the write
  permission
  for a certain directory.
 
  This is a little bit confusing for a newbie like me.
  But, anyway, I can now see the videos on youtube.

 Just remember Debian isn't Ubuntu. When you see sudo blah blah blah
 just run blah blah blah as root¹.

 Ubuntu specifically sets up sudo, they don't like you being root!
 whereas, in Debian, ***YOU*** would have to install sudo and configure
 it to get the desired result.

 ¹ su -c blah blah blah is probably better.


 ?
 I use sudo all the time, and have done so for years.
 'Course you have to install it, add your user to the
 sudo group, and edit /etc/sudoers with the visudo
 command first. But all that is very easy.
 Install sudo and read man sudo.
 Feel free to ask me if you need further help with it.

 --
 ❤ ♫ ❤ ♫ ❤ ♫ ❤
  Indulekha


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive: http://lists.debian.org/20120502062819.GA28630@radhesyama




--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/cadz+jbox-upxejbazlsdo9ujgcx-adixpp07uge0qzbdfh2...@mail.gmail.com



Re: Solved: Re: Can't install flashplugin.nonfree. ERROR: wget failed to download

2012-05-02 Thread Han Soo Chang
I thank you all for your help.  But there seems to be a big
misunderstanding.

The issue is not how to use sudo or how to set up no-password.

If you could see my original report, it would be clear.  But it seems to
have fallen off the thread.

Here is what happened.

$sudo apt-get install flashplugin-nonfree
then I typed my password.
-
ERROR: wget failed to download
http://people.debian.org/~bartm/flashplugin-nonfree/fp10.sha512.amd64.pgp.asc
More information might be available at:
 http://wiki.debian.org/FlashPlayer

I checked the following
$ LANG=en_US.utf8 wget -v
http://people.debian.org/~bartm/flashplugin-nonfree/fp10.sha512.amd64.pgp.asc
--2012-04-30http://people.debian.org/%7Ebartm/flashplugin-nonfree/fp10.sha512.amd64.pgp.asc--2012-04-3014:42:43--
http://people.debian.org/~bartm/flashplugin-nonfree/fp10.sha512.amd64.pgp.asc
Resolving ns14... 10.1.1.12
Connecting to ns14|10.1.1.12|:8080... connected.
Proxy request sent, awaiting response... 200 OK
Length: 1273 (1.2K) [text/plain]
fp10.sha512.amd64.pgp.asc: Permission denied


Next, I did this

$su
Then I typed my password
# apt-get install flashplugin-nonfree

And it succeeded.

So, it seems that when I invoked the command under sudo,
the script invoked by the command tried to write a file to a directory, but
failed
because of denied permission.
But when I invoked it under superuser, it succeeded.

So, I wonder whether this is because
(1)  I mishandled my set up of sudo
(2) this is a subtle bug of packaging of flashplugin-nonfree,
(3) this is a feature of flashplugin-nonfree package unavoidable for some
security reason
(4) Debian culture commands that I become superuser instead of using sudo.

Cheers,
Han Soo


Solved: Re: Can't install flashplugin.nonfree. ERROR: wget failed to download

2012-05-01 Thread Han Soo Chang
Thanks for your help.

It was just that I needed to apt-get install as root, not sudo apt-get.

The following command
# apt-get install flashplugin-nonfree
worked just fine.

$ sudo apt-get install flashplugin-nonfree
failed because the invoked script probably did not have the write permission
for a certain directory.

This is a little bit confusing for a newbie like me.
But, anyway, I can now see the videos on youtube.

I appreciate the help by everyone.

Han Soo
2012/4/30, Johan Grönqvist johan.gronqv...@gmail.com:
 2012-04-30 07:46, Han Soo Chang skrev:
 If you try fetching it with wget:
 wget
 http://people.debian.org/~bartm/flashplugin-nonfree/fp10.sha512.amd64.pgp.asc;
 does it produce an error message?

 This is the message I get.
 I am inside a corporate LAN with a proxy server whose address is
 ns14:8080.


 Cannot write to `fp10.sha512.amd64.pgp.asc' (Permission denied).


 As Curt wrote, it seems that you can not write the output file.

 To verify that it is not network related:

 wget
 http://people.debian.org/~bartm/flashplugin-nonfree/fp10.sha512.amd64.pgp.asc;

 tries tio fetch and write to file, which does not work, as you tried
 before.

 wget
 http://people.debian.org/~bartm/flashplugin-nonfree/fp10.sha512.amd64.pgp.asc

 -O - will try to fetch the file and print it to standard output, so
 that you see it on screen. I expect that to work without problems.

 Is this a special setup with special write permissions?

 My interpretation is that the installation scripts fails to write a file
 that it wants to save to disc for later use.

 Regards

 Johan


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive: http://lists.debian.org/jnm7ou$bmr$1...@dough.gmane.org




--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CADZ+JBo7e5=mbuznsyz96byg7cqiqx6hsmrucape5qx25ub...@mail.gmail.com



Re: Problem with resolution on Radeon HD 7459 card (Squeeze)

2012-04-29 Thread Han Soo Chang
Thanks for your advice.

2012/4/28, Camaleón noela...@gmail.com:

 Let's don't make guesses ;-) better send/copy your current /etc/X11/
 xorg.conf file so we can see what you have added and how it looks like
 now.

Here is my /etc/X11/xorg.conf

Section Device
 Identifier ATI
 Driver fglrx
 Option ChipID 1002:6779
 Option MigrationHeuristic greedy
 Option AccelDFS on
 Option EXAVSync yes
 Option RenderAccel true
EndSection

Section Screen
 Identifier Default Screen
 DefaultDepth 24
EndSection

 Just to discard something obvious, do a search for the module
 (locate fglrx.ko) and check if it's indeed there, although I don't
 think that's the problem, as the module should have been compiled
 alongside with the rest of the files just fine. It can be also a bug
 in the driver, I've seen some reports by Googling around, for instance:

locate fglrx.ko returns nothing.  There does not seem to be fglrx.ko.
I am quite ignorant about how these kernel and kernel modules work.
Did I mess up something when I tried to install fglrx-driver from
squeeze backports?
I just did the following command
$ sudo apt-get -t squeeze-backports install fglrx-driver fglrx-control

Han Soo


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/cadz+jbopf_smx_pb9xsl7wvcstnim3j9o+w+lgdkrulylcx...@mail.gmail.com



[Solved] Re: Problem with resolution on Radeon HD 7450 card (Squeeze)

2012-04-29 Thread Han Soo Chang
Thank you guys!

It seems that the problem is now solved.

I purged my dkms package, and re-installed dkms from squeeze backports
I purged fglrx-driver, fglrx-control packages, and re-installed them
from squeeze-backports.
Then, the fglrx.ko was successfully generated.
I rebooted the system, and the window is working fine.
Maybe I messed up the installation procedure somehow.
I probably needed to install dkms from the squeeze-backports before installing
fglrx-driver.

I put below my current xorg.conf and /var/log/Xorg.0.log for reference.
I am not sure if I needed the tweak on chipID on my xorg.conf.
I will experimet later.

Again, thank you very much folks!  I apprecieate your helps very much.

--/etc/X11/xorg.conf---
Section Device
 Identifier ATI
 Driver fglrx
 Option ChipID 1002:6779
 Option MigrationHeuristic greedy
 Option AccelDFS on
 Option EXAVSync yes
 Option RenderAccel true
EndSection

Section Screen
 Identifier Default Screen
 DefaultDepth 24
EndSection


-/var/log/Xorg.0.log---
[12.345]
X.Org X Server 1.10.4
Release Date: 2011-08-19
[12.345] X Protocol Version 11, Revision 0
[12.345] Build Operating System: Linux 3.0.0-1-amd64 x86_64 Debian
[12.345] Current Operating System: Linux gabriel
3.2.0-0.bpo.1-amd64 #1 SMP Sat Feb 11 08:41:32 UTC 2012 x86_64
[12.345] Kernel command line:
BOOT_IMAGE=/boot/vmlinuz-3.2.0-0.bpo.1-amd64
root=UUID=74c7f0bb-0873-4009-9b91-9147782376ad ro quiet
[12.345] Build Date: 28 August 2011  09:39:43PM
[12.345] xorg-server 2:1.10.4-1~bpo60+1 (Cyril Brulebois k...@debian.org)
[12.345] Current version of pixman: 0.16.4
[12.345]Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[12.345] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[12.345] (==) Log file: /var/log/Xorg.0.log, Time: Mon Apr 30
11:44:54 2012
[12.400] (==) Using config file: /etc/X11/xorg.conf
[12.400] (==) Using system config directory /usr/share/X11/xorg.conf.d
[12.483] (==) No Layout section.  Using the first Screen section.
[12.484] (**) |--Screen Default Screen (0)
[12.484] (**) |   |--Monitor default monitor
[12.484] (==) No device specified for screen Default Screen.
Using the first device section listed.
[12.484] (**) |   |--Device ATI
[12.484] (==) No monitor specified for screen Default Screen.
Using a default monitor configuration.
[12.484] (==) Automatically adding devices
[12.484] (==) Automatically enabling devices
[12.517] (WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
[12.517]Entry deleted from font path.
[12.550] (==) 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,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
[12.550] (==) ModulePath set to /usr/lib/xorg/modules
[12.550] (II) The server relies on udev to provide the list of
input devices.
If no devices become available, reconfigure udev or disable 
AutoAddDevices.
[12.550] (II) Loader magic: 0x7d3ae0
[12.550] (II) Module ABI versions:
[12.550]X.Org ANSI C Emulation: 0.4
[12.550]X.Org Video Driver: 10.0
[12.550]X.Org XInput driver : 12.2
[12.550]X.Org Server Extension : 5.0
[12.551] (--) PCI:*(0:1:0:0) 1002:677b:1462:2496 rev 0, Mem @
0xc000/268435456, 0xfe62/131072, I/O @ 0xe000/256, BIOS @
0x/131072
[12.551] (II) Open ACPI successful (/var/run/acpid.socket)
[12.551] (II) LoadModule: extmod
[12.566] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[12.617] (II) Module extmod: vendor=X.Org Foundation
[12.617]compiled for 1.10.4, module version = 1.0.0
[12.617]Module class: X.Org Server Extension
[12.617]ABI class: X.Org Server Extension, version 5.0
[12.617] (II) Loading extension SELinux
[12.617] (II) Loading extension MIT-SCREEN-SAVER
[12.617] (II) Loading extension XFree86-VidModeExtension
[12.617] (II) Loading extension XFree86-DGA
[12.617] (II) Loading extension DPMS
[12.617] (II) Loading extension XVideo
[12.617] (II) Loading extension XVideo-MotionCompensation
[12.617] (II) Loading extension X-Resource
[12.617] (II) LoadModule: dbe
[12.618] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[12.636] (II) Module dbe: vendor=X.Org Foundation
[12.636]compiled for 1.10.4, module version = 1.0.0
[12.636]Module class: X.Org Server Extension
[12.636]ABI class: X.Org 

Can't install flashplugin.nonfree. ERROR: wget failed to download

2012-04-29 Thread Han Soo Chang
Hi,

I recently installed debian squeeze, but I can't see youtube videos on
iceweasel.

$ sudo apt-get install flashplugin-nonfree

Above command ends with a following error message. (My sources.list has non-free
included)

ERROR: wget failed to download
http://people.debian.org/~bartm/flashplugin-nonfree/fp10.sha512.amd64.pgp.asc
More information might be available at:
  http://wiki.debian.org/FlashPlayer

I consulted the webpage, and googled, but could not get useful information.

I appreciate any help.

Thanks,
Han Soo


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/cadz+jbr4v0rcu8x6okhpegqlyj7+ej0qx-uxo_ftn1-h6k6...@mail.gmail.com



Re: Can't install flashplugin.nonfree. ERROR: wget failed to download

2012-04-29 Thread Han Soo Chang
Thanks for your help.

 If you run update-flashplugin-nonfree --install again, does it work now?


It gives me the same error.

 Otherwise:

 If you paste the URL:
 http://people.debian.org/~bartm/flashplugin-nonfree/fp10.sha512.amd64.pgp.asc

 into a web-browser, do you see the (rahter short) file [0] containing a
 hash-key?

Yes, I can see the page on my browser.


 If you try fetching it with wget:
 wget
 http://people.debian.org/~bartm/flashplugin-nonfree/fp10.sha512.amd64.pgp.asc;
 does it produce an error message?

This is the message I get.
I am inside a corporate LAN with a proxy server whose address is ns14:8080.

$ LANG=en_US.utf8 wget -v
http://people.debian.org/~bartm/flashplugin-nonfree/fp10.sha512.amd64.pgp.asc
--2012-04-30 14:42:43--
http://people.debian.org/~bartm/flashplugin-nonfree/fp10.sha512.amd64.pgp.asc
Resolving ns14... 10.1.1.12
Connecting to ns14|10.1.1.12|:8080... connected.
Proxy request sent, awaiting response... 200 OK
Length: 1273 (1.2K) [text/plain]
fp10.sha512.amd64.pgp.asc: Permission denied

Cannot write to `fp10.sha512.amd64.pgp.asc' (Permission denied).

Is this a problem related to my proxy server?

Greetings,
Han Soo


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/cadz+jbpw7x6fb6edovwhiqna1cbaedqsb-xwoxwc2ixic_y...@mail.gmail.com



Re: Problem with resolution on Radeon HD 7459 card (Squeeze)

2012-04-28 Thread Han Soo Chang
I might have made a slight advance.

I added an option ChipID 1002:6779 to designate my card (Radeon HD
7450) to be identical with Radeon HD 6450.

Then, I got the following /var/log/Xorg.0.log, which says that
DRI initialization failed. kernel module (fglrx.ko) may be missing or
incompatible.
2D and 3D acceleration disabled.

Actually, lsmod | grep fglrx shows nothing.

aptitude search fglrx-driver shows that the driver is installed.

Am I trying to use in vain a card that is not supported?

Han Soo

---/var/log/Xorg.0.log
[12.352]
X.Org X Server 1.10.4
Release Date: 2011-08-19
[12.352] X Protocol Version 11, Revision 0
[12.352] Build Operating System: Linux 3.0.0-1-amd64 x86_64 Debian
[12.352] Current Operating System: Linux gabriel
3.2.0-0.bpo.1-amd64 #1 SMP Sat Feb 11 08:41:32 UTC 2012 x86_64
[12.352] Kernel command line:
BOOT_IMAGE=/boot/vmlinuz-3.2.0-0.bpo.1-amd64
root=UUID=74c7f0bb-0873-4009-9b91-9147782376ad ro quiet
[12.352] Build Date: 28 August 2011  09:39:43PM
[12.352] xorg-server 2:1.10.4-1~bpo60+1 (Cyril Brulebois k...@debian.org)
[12.352] Current version of pixman: 0.16.4
[12.352]Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[12.352] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[12.352] (==) Log file: /var/log/Xorg.0.log, Time: Sat Apr 28
16:08:42 2012
[12.368] (==) Using config file: /etc/X11/xorg.conf
[12.368] (==) Using system config directory /usr/share/X11/xorg.conf.d
[12.392] (==) No Layout section.  Using the first Screen section.
[12.392] (**) |--Screen Default Screen (0)
[12.392] (**) |   |--Monitor default monitor
[12.392] (==) No device specified for screen Default Screen.
Using the first device section listed.
[12.392] (**) |   |--Device ATI
[12.392] (==) No monitor specified for screen Default Screen.
Using a default monitor configuration.
[12.392] (==) Automatically adding devices
[12.392] (==) Automatically enabling devices
[12.426] (WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
[12.426]Entry deleted from font path.
[12.459] (==) 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,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
[12.459] (==) ModulePath set to /usr/lib/xorg/modules
[12.459] (II) The server relies on udev to provide the list of
input devices.
If no devices become available, reconfigure udev or disable 
AutoAddDevices.
[12.459] (II) Loader magic: 0x7d3ae0
[12.459] (II) Module ABI versions:
[12.459]X.Org ANSI C Emulation: 0.4
[12.459]X.Org Video Driver: 10.0
[12.459]X.Org XInput driver : 12.2
[12.459]X.Org Server Extension : 5.0
[12.460] (--) PCI:*(0:1:0:0) 1002:677b:1462:2496 rev 0, Mem @
0xc000/268435456, 0xfe62/131072, I/O @ 0xe000/256, BIOS @
0x/131072
[12.460] (II) Open ACPI successful (/var/run/acpid.socket)
[12.460] (II) LoadModule: extmod
[12.475] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[12.489] (II) Module extmod: vendor=X.Org Foundation
[12.489]compiled for 1.10.4, module version = 1.0.0
[12.489]Module class: X.Org Server Extension
[12.489]ABI class: X.Org Server Extension, version 5.0
[12.489] (II) Loading extension SELinux
[12.489] (II) Loading extension MIT-SCREEN-SAVER
[12.489] (II) Loading extension XFree86-VidModeExtension
[12.489] (II) Loading extension XFree86-DGA
[12.489] (II) Loading extension DPMS
[12.489] (II) Loading extension XVideo
[12.489] (II) Loading extension XVideo-MotionCompensation
[12.489] (II) Loading extension X-Resource
[12.489] (II) LoadModule: dbe
[12.489] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[12.503] (II) Module dbe: vendor=X.Org Foundation
[12.503]compiled for 1.10.4, module version = 1.0.0
[12.503]Module class: X.Org Server Extension
[12.503]ABI class: X.Org Server Extension, version 5.0
[12.503] (II) Loading extension DOUBLE-BUFFER
[12.503] (II) LoadModule: glx
[12.503] (II) Loading /usr/lib/xorg/modules/linux/libglx.so
[12.518] (II) Module glx: vendor=Advanced Micro Devices, Inc.
[12.519]compiled for 6.9.0, module version = 1.0.0
[12.519] (II) Loading extension GLX
[12.519] (II) LoadModule: record
[12.519] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[12.519] (II) Module record: vendor=X.Org Foundation
[12.519]compiled for 1.10.4, module version = 1.13.0

Re: Problem with resolution on Radeon HD 7459 card (Squeeze)

2012-04-25 Thread Han Soo Chang
Thanks again for your help.

I didn't realize that I needed to install xorg from the backports
besides an upgraded kernel
and fglrx driver.

Now, I installed linux-image-3.2.0-0.bpo.1-amd64, xorg, fglrx-driver,
and fglrx-control
from the squeeze backports.

# aticontrol --initial again failed to recognize my graphic card.

So I made a small /etc/X11/xorg.conf file with following content.

---
Section Device
 Identifier ATI
 Driver fglrx
EndSection

Section Screen
 Identifier Default Screen
 DefaultDepth 24
EndSection
---

Now, I get the desired resolution of 1920 x 1080.

However, redrawing of windows is very slow, and I can't move a window smoothly,
which is quite bothersome.

gnome reports that my refresh rate is 60 Hz.

I feel I am almost there, but I don't know if this problem is remediable.
Perhaps, some additional lines in my xorg.conf file?

Han Soo


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/cadz+jbpkfdgpcaryl2j53nw80na5cgbi5-a1paw2vpsa9az...@mail.gmail.com



Re: Problem with resolution on Radeon HD 7459 card (Squeeze)

2012-04-25 Thread Han Soo Chang
 ..what happens if you try the radeon driver from backports?
 Or dist-upgrade to wheezy?

Well, if I change the word fglrx in my xorg.conf to radeon or
radeonhd, it gives me a
black console.

Actually, I was running wheezy on my machine, until X window system
crashed after
my recent upgrade of the system including the package xwindow-xorg-video-ati.
So, I am skeptical about the possibility that the problem will be
solved by upgrading to wheezy.

My machine is now set-up for dual-boot on wheezy and squeeze, and I am
now trying
to set up squeeze.

Thanks to the help of the community, I can now use the machine OK, but
this slow
redrawing of the window and the window pane is rather annoying.

Greetings,
Han Soo


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CADZ+JBqkCEZ17Jgb0SXRDF+6pB057bAm+ebBUpAU-=zxkgo...@mail.gmail.com



Problem with resolution on Radeon HD 7459 card (Squeeze)

2012-04-23 Thread Han Soo Chang
Hi, I recently installed debain squeeze on Hewlet Packard Pavillion
h8-1280jp, which has a ATI Radeon HD 7450 graphic card.
However, the resolution of the monitor is limited to 1280 x 1024, and
I cannot get any higher resolution.

I have xserver-xorg-video-ati, xserver-xorg-video-radeon, and
xserver-xorg-video-radeonhd installed.

$lspci | grep VGA
01:00.0 VGA compatible controller: ATI Technologies Inc Device 677b

is the response to lspci.

I checked the log file /var/log/Xorg.0.log, and
it seems that the system does not recognize my graphic card, and fall
back on vesa driver.

I would like to ask what is the best option I should take?

Should I install a newer kernel from the backports?
Should I try propriety driver? But using it makes me a little bit
nervous, because I fear that it might cause some trouble in the
future.

I have no experience of building a kernel, and I would like to avoid
it if possible.
I would like to have a stable system that I can rely on.

I would appreciate any suggestion to improve this situation.

Thank you.

Han Soo


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/cadz+jbrgmfenh5y54gdvfmezcfyghbzq9hgy2zx1_zz_cf4...@mail.gmail.com



Re: Problemas drivers propietarios nvidia con Geforce2 mx/mx 400

2010-08-30 Thread han...@l
El lun, 30-08-2010 a las 11:37 +, Camaleón escribió:
 El Mon, 30 Aug 2010 09:15:06 +0200, Ric M escribió:
 
  El día 28 de agosto de 2010 13:46, Camaleón escribió:
 
 (...)
 
  Recuerda que también puedes usar el driver libre (nouveau, pero
  necesita KMS) y no sé si aún seguirá disponible el anterior (nv).
  
  Si pero no tengo aceleración 3D y además me dan errores al reproducir
  video. Ahora estoy con nv, pero tampoco tengo aceleración 3D
 
 nv no admite aceleración 3D y el driver nuevo nouveau me parece que 
 tampoco o muy limitada :-(
 
 Saludos,
 
 -- 
 Camaleón
 
 

Exactamente, el driver nouveau no posee capacidad de aceleración 3D, tal
como explican la siguientes páginas:

http://www.esdebian.org/wiki/drivers-nvidia-usando-module-assistant
(VER Punto 2.2)

http://wiki.debian.org/NvidiaGraphicsDrivers
(Ver Free Drivers)

Saludos cordiales.

han...@l




-- 
To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1283174157.3701.5.ca...@alex7000



Re: Problemas drivers propietarios nvidia con Geforce2 mx/mx 400

2010-08-29 Thread han...@l
El sáb, 28-08-2010 a las 10:01 +0200, Ric M escribió: 
 Hola,
 
 Tengo una tarjeta nvidia  Geforce2 mx/mx 400, la tenia funcionando con
 los drivers nvidia instalados con el module-assistant,  pero en una de
 las actualizaciones que hice dejo de funcionar.
 
 Tengo debian sqeeze con sid para poder descargar los drivers de nvidia.
 Decidí instalarmelo descargandolo de la página de nvidia, la versión
 que requiere mi tarjeta es la 96.xx, me descargué
 NVIDIA-Linux-x86-96.43.18-pkg1.run.
 Con /etc/init.d/gdm stop paré las x
 Con aptitude desinstalé los paquetes de nvidia y con sh
 NVIDIA-Linux-x86-96.43.18-pkg1.run ejecuté la instalación.
 En principio me daba un mensaje del compilador, decía algo así como
 que la versión del compilador actual no era la misma con la que se
 había compilado el kernel. mirando en /usr/bin vi que tenia las
 versiones gcc-4.3 gcc-4.4 y un enlace gcc apuntando a gcc-4.4. Borré
 el enlace y con ln -s gcc-4.3 gcc cree uno a la versión anterior, con
 lo que en el mensaje (warning) dejo de salir y la instalación finalizó
 correctamente.
 
 inicio las x con previa configuracion del fichero /etc/X11/xrog.conf
 /etc/init.d/gdm start y todo parece funcionar correctamente pero al
 reiniciar, ya no vuelve a arrancar el entorno gráfico, da unos
 pantallazos como intentando arrancar pero no lo hace. Mirando el
 archivo log de xorg no da errores solo algunos warnigs que yo creo no
 son importantes para que arranque, y el caso es que la primera vez.
 
 ¿Puede que al desintalar los paquetes nvidia instalados con m-a
 quetara algo necesario?
 
 

Hola Ric. Hola a todos.

Durante un buen tiempo hasta la fecha he usado Debian Lenny. Los
drivers de Nvidia siempre los pude instalar sin problemas de ningún tipo
(poseo una placa GeForce Fx5200).
Ahora bien. Sucede que, al intentar pasarme a Squeeze, entonces tuve
problemas. El driver que carga por defecto Squeeze para la placa de
video es Nouveau, y debido a que tengo una PC un tanto viejita (Intel
Pentium IV, 3.00 Ghz), decidí instalarle el kernel 2.6.32-4...
Lo cierto es que, simplemente, no hubo caso. Si bien, al igual que en
el caso de Ric, me apareció el mismo mensaje cuando instalé el driver de
Nvidia, no hice caso a la advertencia y seguí para adelante, y tal como
dicen en el foro, lo instalé sin problemas.
Pero luego sucedió que simplemente no pude ingresar más al Gestor de
paquetes Synaptic (el sistema me indicaba problemas con el cache interno
de Synaptic) y, por ende, no podía instalar nada de nada. No sólo por
Synaptic (que no uso casi nunca),sino que no podía hacer nada tampoco
por la terminal... 
Así que, bueno, con la frente marchita, como decimos aquí en la
Argentina, decidí volver a Lenny. Pero tuve el mismo problema ahora al
instalar los drivers de Nvidia. La versión actual del driver de Nvidia
para la GeForce Fx5200 es 173.14.27. Y al instalar el mismo en Lenny
saltó también el dichoso mensaje de que la compilación del kernel y del
driver eran diferentes (hay difirencias con gcc-4.3; 4.4). Aún así lo
instalé y anda muy bien la máquina; sólo que desde que le instalé el
driver de Nvidia, ya no tengo más 1 Gb de RAM; ahora me informa
(observando el Monitor del sistema) que soy poseedor de únicamente 885
Mb de RAM... Me inclino por creer que el driver de Nvidia me provocó
este lío... ¿Será posible? ¿Alguno ha tenido el mismo intríngulis...? Un
saludo para todos ustedes, apreciados debianitas.

han...@l.


-- 
To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1283074092.3002.23.ca...@alex7000



Re: Problemas drivers propietarios nvidia con Geforce2 mx/mx 400

2010-08-29 Thread han...@l
El dom, 29-08-2010 a las 15:05 +, Camaleón escribió:
 El Sun, 29 Aug 2010 06:28:12 -0300, han...@l escribió:
 
  sólo que desde que le instalé el
  driver de Nvidia, ya no tengo más 1 Gb de RAM; ahora me informa
  (observando el Monitor del sistema) que soy poseedor de únicamente 885
  Mb de RAM... Me inclino por creer que el driver de Nvidia me provocó
  este lío... ¿Será posible? ¿Alguno ha tenido el mismo intríngulis...? Un
  saludo para todos ustedes, apreciados debianitas.
 
 Accede a la BIOS y mira a ver si te reconoce toda la memoria.
 
 Si en la BIOS se muestra la cantidad correcta, será que el sistema está 
 haciendo uso de esos megas para el resto de componentes/recursos de la 
 placa.
 
 A ver, yo tengo 8 GiB instalados, y efectivamente, el monitor del sistema 
 de GNOME dice que tengo 7,8 GiB., lo que concuerda con el resultado de 
 cat /proc/meminfo.
 
 Saludos,
 
 -- 
 Camaleón
 
 

Muchas gracias, Camaleón, por tus comentarios. Efectivamente, la BIOS
toma la totalidad de la memoria RAM (1 Gb) y, al ordenar
cat /proc/meminfo muestra que casi 200 Mb están, evidentemente,
tomados para la placa nVidia.

Saludos y que tengas un buen día.

han...@l.


-- 
To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1283093036.3763.4.ca...@alex7000



sophie adenet

2010-03-21 Thread Han Huynh
http://dewi-nusantara.com/Dave.html
  
_
Hotmail has tools for the New Busy. Search, chat and e-mail from your inbox.
http://www.windowslive.com/campaign/thenewbusy?ocid=PID27925::T:WLMTAGL:ON:WL:en-US:WM_HMP:032010_1

don't open any e-mails sent from my hotmail account

2010-03-21 Thread Han Huynh



I think someone broke into my hotmail account and sending some type of e-mails 
out.  Please ignore all e-mails from my hotmail account.

My yahoo account if fine.  If you don't know it already just replace hotmail 
with yahoo.  It's the same ID.
  
_
Hotmail has tools for the New Busy. Search, chat and e-mail from your inbox.
http://www.windowslive.com/campaign/thenewbusy?ocid=PID27925::T:WLMTAGL:ON:WL:en-US:WM_HMP:032010_1

jihane oubenahmed

2010-03-19 Thread Han Huynh
http://boomerang4989.com/Emma.html
  
_
Hotmail: Trusted email with Microsoft’s powerful SPAM protection.
http://clk.atdmt.com/GBL/go/210850552/direct/01/

coreldraw for linux

2006-06-28 Thread Han

Hi

Is a coreldraw package for debian or is there anything close enough to 
it in Linux, please dont say Gimp because the two are very different.


Please help


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Opciones de la lista

2006-01-24 Thread han
On Tue, Jan 24, 2006 at 10:34:53AM -0300, Fabian Donoso C. wrote:
 Necesito dejar de recibir los correos de la lista pero quiero seguir
 perteneciendo a ella. Donde puedo cambiar estas opciones, alguien sabe? Me
 voy de vacaciones y no quiero que se me sature el buzón.

Olá.

   Lo más sencillo, a mi entender, es darse de baja de la lista:
 
 - http://www.debian.org/MailingLists/unsubscribe

   Y hasta que te puedas volver a dar de alta, la consultas en:
  
 - http://lists.debian.org/debian-user-spanish/

   O como ya han dicho, hazte una cuenta estilo gmail de 2GB o por
   ahí.


 
 Saludos cordiales,
 Fabian Donoso C.
 http://zip.to/fdonoso
 
  -Mensaje original-
  De: Fabian Donoso C. [mailto:[EMAIL PROTECTED]
  Enviado el: Lunes, 23 de Enero de 2006 13:16
  Para: Lista Debian (Español)
  Asunto: Opciones de la lista
  
  Quien me puede enviar la url de la lista para cambiar mi perfil?
  
  Atte.
  :::
  Fabian Donoso C.
  
  
  
 
 

Xau!


-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: OT Swap

2006-01-23 Thread han
On Mon, Jan 23, 2006 at 11:43:02AM -0300, Luis Garay wrote:
 Hola a todos
 

Olá

 Una consulta a uds que saben de estas cosas. Tengo una maquina Pentium
 1 con un disco de 4gb, tengo instalado debian. Y encontre un viejo
 disco de 400 mb, Solo por experimentar quisiera pasar el swap a este
 disco, es decir tener un swap de 400mb en hdb1 o algo asi, se podra??
 donde tengo que tocar para indicarle al so que esa sera la particion
 swap?
 

  Debes de leer el manual de 'mkswap' y de 'swapon'. Ahí te explica
los pasos a realizar, y la utilidad de los comandos.


 Muchas gracias por su tiempo

Nada. Xau!

-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Re: Sustituir elintérprete de Python

2006-01-23 Thread han
On Mon, Jan 23, 2006 at 11:35:00PM +0100, Aritz Beraza Garayalde [Rei] wrote:
 El 23/01/06, JOSE CHAVEZ[EMAIL PROTECTED] escribió:
 
  Hola buenas tardes... Quiesiera por favor me indicara donde o de que forma
  adquiero el interprete de python para instalarlo en mi pc.. Estoy pensando
  muy seriamente en empersar a programar con
  este lenguaje del que he tenido puras noticias que me alientan cada vez mas
  a usarlo y migrar mi plataforma de trabajo... en este momento estoy usando
  Windows XP necesito saber donde me bajo o consigo Python para instalarlo en
  mi pc..Quiero comenzar ya..
 
 
 Buenas,
 
 Primero felicitarte por escoger python. Pero ahora biene la parte reprimenda.
 a- Esta es una lista de Debian GNU/Linux, no sabemos de windows XP,
 muchos no usamos ninguna versión de windows.
 b- Haz los deberes. Antes de preguntar a la lista busca la solución.
 En este caso es tan sencilla como buscar en google por python
 windows o ir a la página prinicpal de python: http://www.python.org/
 
 Saludos
 Aritz Beraza [Rei]

Olá.

  Si, en www.python.org lo puedes descargar. Además te recomiendo que
te apunte a la lista de correo de usuarios hispanos:

http://listas.aditel.org/listinfo/python-es

Xau.


-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: De que es este puerto?

2006-01-20 Thread han
On Fri, Jan 20, 2006 at 10:02:41AM +0100, Antonio Montana wrote:
 On Thu, 19 Jan 2006 20:51:53 -0300
 Felipe Törnvall N. [EMAIL PROTECTED] wrote:
 
  grep 587 /etc/service
 grep 587 /etc/services
 (hay algún puerto que otro que no figura ahi, o bien hay mucha gente
 que corre servicios en otros puertos , como ssh en el 24 , etc...) 

  Si. Además, aunque no se debería, si la seguridad te vuelve.. un
poco paranóico, se debe de aplicar el famoso 'Security through
obscurity'.. con lo cual , el '/etc/services' deja de tener validez
para la mayoría de los puertos




 
 Un saludo
  On Thursday 19 January 2006 13:27, Antonio Montana wrote:
   On Thu, 19 Jan 2006 05:51:31 -0400
  
   max [EMAIL PROTECTED] wrote:
Buenas tengo activado el siguiente puerto. Sabran porque? que
programa lo abre?
   
587/tcp   open  submission
  
   netstat -putan | grep 587
  
   y echa un vistazo
  
  
   login: joshua
  
   OK, HELLO+
  
   PLAY THERMONUCLEAR_WAR;
  
   Loading
 
 

-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: el Sonido no funciona

2006-01-20 Thread han
On Thu, Jan 19, 2006 at 05:19:39PM -0300, Ricardo Delgado wrote:
 2006/1/19, EleckttrusS [EMAIL PROTECTED]:
  Ok lo que pasa es que luego de que configuras el alsa en xmms debes
  espesificar el controlador de sonido y volumen! (a mi me paso lo mismo)
 como lo especifico? donde? en las preferencias de XMMS en la opcion
 Output Plugin tengo configurado ALSA (libalsa.SO), tambien probe con
 todas las variantes pero nada, sigue sin funcionar,
 
 probe con el control de volumen y esta con Inter ICH5 alsamixer y es
 la unica opcion que aparece.
 

Olá.
 
  Para obterner más información acerca del sonido, mira en
'/proc/asound/'. Ejecuta el 'alsamixer' y observa si el Master,
PCM... no están mutados, y dale volumen (sino lo ves bien.. arriba a
la izquierda donde muestra la tarjeta... en Item te pondrá lo que
esté mutado con [off].

Xau.

-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: sem som/semaudio.

2006-01-20 Thread han
On Fri, Jan 20, 2006 at 04:02:28AM -0200, linssingeletronica wrote:
 estou sem audio/som;como devo executar as devidas
 configuraçoes do cmi8738
 por favor eu aguardo no cntato via-i-mail
 [EMAIL PROTECTED]
 
 

Olá.

  O primeiro, voçe debe saber que esta litagem é pra usuarios hispanos
da Debian GNU/Linux. Pra usuarios de fala portuguesa ten a
'debian-user-portuguese' :

'http://lists.debian.org/debian-user-portuguese/'


  Olhando no google, o primeiro que achei por 'cmi8738 debian' foi: 
   'http://lists.debian.org/debian-user-spanish/2001/10/msg01042.html'

  Onde indican que leia : /usr/src/linux/Documentation/sound/CMI8338

Xau.



-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Videos wmv

2006-01-16 Thread han
On Sun, Jan 15, 2006 at 06:09:23PM -0500, emosquera wrote:
 Hola lista me gustario saber como hago para reproducir videos wmv en debian
 sarge.

Olá.

 Antes utilizaba el 'vlc' para tal empresa, mas de un tiempo a esta
parte, me da mejor resultado el 'mplayer'.

Xau



-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: ¿como recoger el estado de salida de un comando (no la salida )?

2006-01-16 Thread han
On Mon, Jan 16, 2006 at 01:19:28AM +0100, [EMAIL PROTECTED] wrote:
 Estoy intentando recger el estado de un comando ( 1 o 0 ) , no el resultado , 
 tal y como yo lo estoy haciendo me coge el resultado , me orientais por 
 favor.
 case $1 in
 start)
   redon = `ping -c1 83.7.60.80`
   echo $redon
 

Olá!

  Para conocerlo puedes utilizar '$?'. Pex.:

$ ls
   
  

$ echo $?  
  0


  En tu ejemplo:

   case $1 in
start)
  ping -c1 83.7.60.80
  echo $?

 

  Si la ejecución del comando anterior ha sido exitosa, devuelve '0',
  sino devolverá un valor de 1 a 255, dependiendo del comando

  Te recomiendo:
 
   $ apt-cache search abs-guide



 Gracias.

  Nada.

Xau.

 
 

-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Error CRITICAL siempr e tras instalar algún paquete

2006-01-15 Thread han
On Sun, Jan 15, 2006 at 06:15:10PM +0100, Iñaki wrote:
 Hola, desde hacu un tiempo cada vez que instalo o actualizo un paquete con 
 apt-get install me sale justo al final este alarmante aviso:
 
 ** (process:11538): CRITICAL **: egg_desktop_entries_add_group: assertion 
 `egg_desktop_entries_lookup_group (entries, group_name) == NULL' failed
 
 Sale por cada paquete instalado.
 
 He buscado en Google y he encontrado ese texto pero nadie habla de él. 
 ¿Sabéis 
 qué puede ser?
 

Olá.


  Trasteando en el google he encontrado esto: 

   http://lists.debian.org/debian-user/2004/12/msg01325.html

  No se si te servirá... pero me suena que usas mplayer... y en ese
mensaje hace referencia a el. 


-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: pinnacle studio para debian

2006-01-05 Thread han
On Thu, Jan 05, 2006 at 09:39:04AM +0100, Lo-Ko wrote:
 Hola lista, pues eso que me sbria decir un programa para linux que sea
 lo mas parecido a pinnacle studio. 
 
 

Olá!
Kino + Cinelerra + The Gimp (con los plugins GAP)

Xau.


-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: archivos wmv

2006-01-02 Thread han
On Mon, Jan 02, 2006 at 05:04:49PM -0300, Rodrigo Gil Giuliano wrote:
 Hola a todos !!
 Feliz año nuevo

Olá
Feliz Aninovo (:

 
 Les escribo porque tengo un problema. Con Noatun o Totem puedo
 reproducir de todo. Hasta divx sin problemas de codex. Pero no puedo
 ver los archivos de extensiòn wmv. Solo escucho el audio.
 Quisiera si conocen cual biblioteca me falta o que paquete debo instalar.


  Yo te recomiendo que instales el mplayer. Por decirlo de alguna
  manera, se lo traga todo. Aqui información de los formatos:

   MPlayer plays most MPEG, VOB, AVI, OGG/OGM, VIVO, ASF/WMA/WMV, 
   QT/MOV/MP4, FLI, RM, NuppelVideo, yuv4mpeg, FILM, RoQ, PVA
   files, supported by many native, XAnim, RealPlayer, and Win32
   DLL codecs. You can watch VideoCD, SVCD, DVD, 3ivx, RealMedia, 
   and DivX movies too.


 
 Desde Ya muchas Gracias!!!

 Nada, para eso estamos. Espero que te sirva.

Xau!

-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: alsaconf cada vez que reinicio.

2005-12-22 Thread han
On Thu, Dec 22, 2005 at 12:34:40PM +0100, Jose Andres wrote:
 Pero entonces de alsaconf en consola pongo:
 
 alsactl power 0 D3
 alsactl power 0 D0
 
 y esto lo tengo que volver a poner en consola cada vez que reinicio?
 es que soy aun muy novato y no me entero bien.
 Gracias.


Olá!

No se si te servirá de mucho lo que te diga, pero puede que
algo te aporte. 

Leyendo el manual de alsactl (`man alsactl`) me encontré con
estas opciones que puede que la necesites:


   Commands
   store, saves the current driver state for the selected soundcard
   to the configuration file.

   restore, loads driver state for the selected soundcard from the
   configuration file.

   names, generates list of available device names for
   applications.  The card number or id is ignored for this
   command. The list  is  always  generated
   for all available cards.

   If no soundcards are specified, setup for all cards will be
   saved or loaded.
   

Entonces puede que tengas que poner usar 'store' :

 alsactl store power 0 D3


Además de eso he estado mirando la carga de alsa y
demás. leyendo el script de alsa en '/etc/init.d/alsa', atopé
estas lineas:
  
  # Default values of variables in /etc/default/alsa
  alsactl_store_on_shutdown=always autosave
  runlevels_save='[2-5]'

Lo que nos lleva a '/etc/default/alsa', donde en los
comentarios nos dice para que sirve la linea: 

  alsactl_store_on_shutdown=always autosave

Y también nos indica en que runlevels se usará el  
'alsactl store'. 

En el runlevel 2, por el cual arranco siempre  ('/etc/rc2.d,/'),
hay sun link simbólico a '/etc/init.d/alsa' (del cual hemos
hablado antes). Por tanto, no se si te servirá todo lo antes
escrito, mas debería de ayudarte para observar el
comportamiento de inicialización y carga, y tambien de
finalización y almacenamiento, de alsa.


Asi y a todo, no te fies mucho xD

Xau







 --WoLvElOpEz
   - Original Message - 
   From: oscar casal 
   To: debian-user-spanish@lists.debian.org 
   Sent: Thursday, December 22, 2005 12:10 PM
   Subject: Fwd: alsaconf cada vez que reinicio.
 
 
   El día 22/12/05, Jose Andres [EMAIL PROTECTED]  escribió:
 Eso lo hago bien Erik,gracias.
 Pero el problema es que debo de hacer una instalacion de alsa cada vez que
 reinicio, despues ejecutar alsaconf como tu me has explicado y entonces se
 escucha el sonido.
 Pero la verdad es que es un poco rollo hacer eso cad vez que reinicio. 
 Un saludo
 
 
  Lee esto a ver si te sirve de ayuda: 
 http://llistes.bulma.net/pipermail/bulmailing/Week-of-Mon-20051017/073036.html
  , a mi hace tiempo me pasó lo mismo y cuando encontré la solución a mi 
 problema y la colgué en el anterior link
 
  Espero que te sirva de ayuda
 
 
 
 
 
 

-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Fui hackeado :s ???

2005-12-21 Thread han
On Wed, Dec 21, 2005 at 03:52:30AM +, Ultralisk Mutalisk wrote:
 Gracias por el consejo de revisar a fondo lo sucedido, pero la verdad no se 
 mucho acerca de seguridad en linux es decir no se que archivos debo revisar 
 para encontrar las pistas y como interpretarlos, hay algun libro o dir. 
 donde pueda informarme mas acerca de eso..

Olá

`apt-get install harden-doc`

`apt-get install doc-linux-text`

 - Security-HOWTO
 - Security-Quickstart

 http://www.debian.org/doc/manuals/securing-debian-howto/



 saludos y gracias de antemano..


  Nara

Xau



 
 Ultralisk Mutalisk wrote:
  Bueno gracias por sus respuestas cheque con el rkhunter y no me detecto
  nada, asi que reinstale el dbus-1 y pues parece que funciono, no se si
  fue un crackeo o un bug pero parece que ya quedo :s..
 
  aunque en /tmp habia algo como mapping-'my_usuario' y no se si eso sea
  algo normal, pero de todas formas lo borre :s ...
 
  saludos y gracias de nuevo
 
  Ultralisk Mutalisk wrote:
   Hola lista..
  
   Pues como el titulo lo dice me pregunto si fui hackeado, porque 
 estaba
   trabajando en la PC y estoy conectado a internet cuando de repente no
   podia a entrar a internet, de ninguna forma, ni con un simple ping,
  solo
   respondia al ping las maquinas de la red local y del router pero 
 ningun
   ping hacia afuera, pensaba que era algo de la red, pero luego vi que
  no,
   ya que las otras maquinas de la red si podian accesar a internet 
 menos
   yo :s, asi que buscando en los procesos que tenia me encontre algo 
 como
   esto, que me parecio muy raro :
  
   /usr/bin/dbus-daemon-1 --system
  
   Pero lo que me parecio mas raro era que estaba iniciado no por root 
 ni
   por mi usuario sin por un usuario 100 :s.. asi que le di kill y
   enseguida di ping a google y funciono, abri el navegador y tambien 
 ya
   pude accesar a internet, pero cada vez que reinicio vuelve a
  iniciarse..
   no se si sea un bug de debian o es que fui hackeado :s ??
  
   Alguien podria ayudarme ?
  
   _
   Latinos en EE.UU: noticias y artículos de interés para ti
   http://latino.msn.com/noticias/latinoseneeuu
  
  
  Instala rkhunter es un buscador de rootkits y demases bichos.
  Puede ayudarte
  a cazar tu problema.
 
  Tambien puedes mirar lo que te tira:
 
  # ps -fea
  # netstat -ntplu
  # lsof
 
  mirar por si te han subido algo a traves de apache u otro soft.
 
  # ls -la /tmp
  # ls -la /var/tmp
  # ls -la /dev/shm
 
  suerte, y la verdad no creo que sea crackeo, dbus es un servidor de
  señales de
  mensaje que sirve para que las apps se comuniquen.
 
  salu2
 
 
 
 
 
  _
  De todo para la Mujer Latina http://latino.msn.com/mujer/
 
 
 
 Error!!! deberia haberlo analizado, si fue un crackeo quizas te vendria 
 bien
 saber como lo hicieron, ademas no cubriste el agujero de seguridad.
 
 Para la proxima vez... para salir de dudas... aplica cirugia forense, 
 entra con
 live CD y revisa tus archivos.
 
 salu2
 
 _
 Visita MSN Latino Noticias: Todo lo que pasa en el mundo y en tu paín, ¡en 
 tu idioma! http://latino.msn.com/noticias/
 
 

-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Control ruido ventiladores de la CPU

2005-12-05 Thread han
On Mon, Dec 05, 2005 at 06:32:38PM +0100, Javier Mora wrote:
 Hola a todos:
 
   LLevo un buen rato buscando en Google algún software, paquete debian
 o hilo en el archivo de la lista sobre el control del ruido de los
 ventiladores de la CPU, pero no acierto con nada. Con apt-cache search
 tampoco encuentro lo que busco.
 
   He usado en alguna ocasión (en Windows) software que monitoriza la
 temperatura de la CPU y la caja y, además, ajusta las revoluciones de los
 ventiladores para reducir el ruido que producen.
 
   No se si estoy buscando con palabras clave poco adecuadas pero no
 encuentro nada que sirva. ¿Este tema está relacionado con S.M.A.R.T.?
 ¿Existe algo así para Linux?
 
   Un saludo y gracias por vuestros comentarios,
 
   Javier Mora
 


Olá.

`apt-cache search sensors`

Xau.


-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: audio en portatil

2005-12-02 Thread han
On Fri, Dec 02, 2005 at 01:39:34PM -0500, gZea wrote:
 Hola,
 
 acabo de instalarle a mi portatil un compaq armada 1750, el debian. Todo 
 funciona bien menos el audio.
 
 He revisado las paginas de linux-on-laptops, en las que se dice que no 
 deberia tener ningun problema con la configuracionpero no es asi.
 
 Instale alsa, y ejecute la configuracion, detecto la tarjeta, y luego al 
 subir los niveles de volumen nada sale por los parlantes...
 
 en otro site recomiendan ejecutar sndconfig, pero en el shell me dice 
 que no reconoce el comando...
 
 agradezco la ayuda que me puedan dar!!!
 
 G.
 
 

Olá!

No necesitas los alsa-modules, tu kernel ya los lleva,
suponiendo que sea el 2.6.8 que has dicho.

Ejecutando `cat /proc/asound/cards` te mostrará la/las
tarjeta/s que tengas.

Para configurar puedes usar `alsaconf` (como root), se
encuentra en el paquete alsa-utils.

Y para aquellos canales que estén mutados, `alsamixer`,
tambien en el paquete alsa-utils. En la esquina superior
izquierda te aparecerán datos de la tarjeta... e 'Item:', ahí
te indica el canal y su estado. Si tiene 'OFF' es que está
mutado y deberás pulsar 'm' para cambiarlo.

Xau.

-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: quemador2

2005-11-30 Thread han
On Wed, Nov 30, 2005 at 11:45:32AM -0500, Daniel Soto wrote:
 Gracias por alcance no conocia ningun programa para grabar en linux
 Pero mi interrogante va por otro camino
 Yo deseaba saber si una vez instalado mi SO con su lectora y demas
 dispositivos   ¿como puedo instalar un dispositivo grabador de cd`s o
 dvd en su defecto hablando de el dispositivo fisico ? no se si me
 entiendes  lo q quiero saber  es si va a reconocer el grabador de cds
 o dvd?
 


  Olá.

Lo primero que debes hacer es leer, buscar información,
intentar resolver por ti mismo, y si no puedes, preguntar.

Si la pregunta es: 
   - Mi Debian reconocerá el hardware que quiero instalar?

  http://www.tldp.org/HOWTO/Hardware-HOWTO/

En el apartado de DVD la primera linea pone:
 'Most, if not all, ATAPI and SCSI DVD-ROM and writable
  DVD drives are supported.'

  Xau.


-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Capturas de pantalla de la consola

2005-11-29 Thread han
On Tue, Nov 29, 2005 at 08:56:09PM +0100, fpacheco wrote:
 Hola, existe alguna forma de hacer una captura de la consola para 
 guardarla?
 Partimos que no tenemos ningún entorno gráfico.
 

Olá.

Para almacenar los datos que aparecen en consola 'script`,
crea un log de todo aquello impreso en la susodicha (para más
información `man script`). No se si te servirá para tus 
propósitos, pero problamente haciendo un script para el
momento adecuado te funcionará... (si necesitas ayuda para tal
labor, dilo :b)

 Gracias
 

  Nara

Xau!


 
 Este mensaje ha sido procesado en busca de virus
 Sin virus detectado.
 www.fraga.sytes.net
 
 

-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Configurar sonido...

2005-11-21 Thread han
On Sun, Nov 20, 2005 at 09:33:45PM -0500, Arturo Cervantes Ramirez wrote:
 Estimado amigos... buenas noches... tengo una pc con sonido integrado y una
 tarjeta de sonido externa... al instalar debian sarge 3.1 parece ser que ha
 elejido la tarjeta integrada por default... como hago para seleccionar la
 tarjeta de sonido externa como default de reproduccion de sonido... veo que
 ha reconocido ambas... mil gracias por su generosa ayuda...
 

Olá!
Con Alsa descárgate 'alsa-base' y 'alsa-utils': 
`apt-get install alsa-base alsa-utils`

Cuando todo esté instalado ejecutas: `alsaconf`
Y en el menú pertinente eliges la tarjeta que quieres.

Xau!

-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Comando ls

2005-11-20 Thread han
On Sun, Nov 20, 2005 at 03:35:01PM -0300, juanchi Gomez wrote:
 ESTOY renegando un poco  con este comando, por que quiero que me
 muestre todo el listado de archivos y/o directorios, no que solo me
 muestre los ultimos archivo y/o directorios... Como lo logro?.
 

Olá!
ls -R ruta_a_ser_mostrada

lo ideal en estos casos es leer el manual del comando `ls' y
no estaría de más `info coreutils`

Xau



-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: rippear cds de audio

2005-11-17 Thread han
On Tue, Nov 01, 2005 at 09:42:25PM -0300, K1LL3R DO6 wrote:
 hola, bueno, no se si alguien me podria recomendar algun buen programa para
 rippear cds de audio, por ejemplo como el music match para win...
 
 claro, podria ver en google, de hecho ya lo e hecho y use la otra vez uno
 que no recuerdo bien como se llamaba, pero yo quiero saber alguno que me
 recomienden por sus experiencias personales...
 
 bueno, si pudiera ser una recomendacion tanto a modo texto como grafico
 seria agradable..
 
 
 eso nomas, desde ya muchas gracias jejej


Olá.

   Ya lo han citado, pero recomiendo de nuevo. El 'abcde'. Como dice
   en su man o viendo los datos del paquete con `apt-cache show
   abcde`.. es un front-end que facilita el uso de varios programas
   para tales empresas.. es modo consola, de sencillo uso, fácil
   configuración y consumo de recursos, por su parte, mínimos.

Xau!.

-- 
Porqué loitar e matar, se podes amar e sonhar

/\
\ /  CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
 X   ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
/ \


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



How to install under a SATA disk?

2005-10-03 Thread Han Chunwei
Hi,
I have two questions to ask:
1. The cpu of my computer is AMD Athlon64 2800+, which distribution
should I use?32bit or 64bit?
2. The hard-disk is of SATA type, and I can't install the system from
hard-disk(I don't have a CD-Rom). I have tried every method to do this
and failed. I nearly got despaired.
Please figure out a way to solve the problems. Thank you!
--
Chunwei Han
College of Chemistry and Molecular Engineering
Peking University, China
Tel: +86-10-52763025



apt-get upgrade message problem

2005-08-13 Thread Han Klaasz
Hi,

I've got the following simple problem with apt-get:

I ran apt-get upgrade but i get messages about the software,
something about versions, no error messages. How do I continue
upgrading?

tnx, Han Klaasz (Holland)



Re: apt-get upgrade message problem

2005-08-13 Thread Han Klaasz
Found it

typing :q made it possible to continue

Han

2005/8/14, Han Klaasz [EMAIL PROTECTED]:
 Hi,
 
 I've got the following simple problem with apt-get:
 
 I ran apt-get upgrade but i get messages about the software,
 something about versions, no error messages. How do I continue
 upgrading?
 
 tnx, Han Klaasz (Holland)




Re: mailscanner got problem ....

2005-06-30 Thread Cheng-Han Tsai
I am here to ask this question because I found some people in the local
forum have the same problem with the mailscanner. So I think maybe
somebody has successful experience of installing mailscanner in Debian box.

Thanks



Ugo Bellavance wrote:

Cheng-Han Tsai wrote:
  

Dear all,

Recently I installed MailScanner + Spamassassin for postfix. MailScanner
works very well for several hours after it startup. However, when time
goes by, MailScanner will just idle, even there are many messages
waiting in the postfix hold queue. The execution result of
check_mailscanner told me that it is fine, but actually it just stop
working !!! There is nothing in the log. Does anybody know what happen
?? Thanks.



If you restart MailScanner, does it do anything?  Maybe you should ask
the MailScanner mailing list...

  

Cheng-Han






  



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



mailscanner got problem ....

2005-06-29 Thread Cheng-Han Tsai
Dear all,

Recently I installed MailScanner + Spamassassin for postfix. MailScanner
works very well for several hours after it startup. However, when time
goes by, MailScanner will just idle, even there are many messages
waiting in the postfix hold queue. The execution result of
check_mailscanner told me that it is fine, but actually it just stop
working !!! There is nothing in the log. Does anybody know what happen
?? Thanks.

Cheng-Han


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



How to disable module loading during bootup

2005-01-01 Thread Han Lin
Hi guys,

I'm new to Debian, I've just installed Debian using sarge
debian-installer rc2 cd and upgrade to Sid.

I need to disable my TV Tuner card (bttv) during bootup but don't know
how to, I've already tried from /etc/modutils/actions by putting # in
front of the post-install and post-remove :

# Special actions that are needed for some modules

# The BTTV module does not load the tuner module automatically,
# so do that in here
#post-install bttv insmod tuner
#post-remove bttv rmmod tuner

and /etc/discover.conf and put skip bttv but it doesn't work, the bttv
modules keep loading during bootup.

Please advise.

Regards,
Han Lin


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: How to disable module loading during bootup

2005-01-01 Thread Han Lin
Hi Andreas,

Thanks for the hints. Now no more bttv modules appeared in my screen but
I still can see the bttv: modules loaded successfully, it's funny but
nevermind, I thought it's caused my soundcard not working but actually
it's not, it's the OSS driver loaded before ALSA driver.

Btw, I also see a lot of pciehp, shpchp thingy with failed or error, any
way to prevent them to load?

Regards,
Han Lin

On Sat, 2005-01-01 at 14:23 +0100, Andreas Janssen wrote:
 Hello
 
 Han Lin ([EMAIL PROTECTED]) wrote:
 
  I'm new to Debian, I've just installed Debian using sarge
  debian-installer rc2 cd and upgrade to Sid.
  
  I need to disable my TV Tuner card (bttv) during bootup but don't know
  how to, I've already tried from /etc/modutils/actions by putting # in
  front of the post-install and post-remove :
 
 If you use kernel 2.6, you need to make the changes in /etc/modprobe.d/.
 Try something like this:
 
 alias bttv off
 
  # Special actions that are needed for some modules
  
  # The BTTV module does not load the tuner module automatically,
  # so do that in here
  #post-install bttv insmod tuner
  #post-remove bttv rmmod tuner
 
 This only prevents the commands from being run when bttv is loaded, it
 does not prevent bttv from being loaded itself.
 
  and /etc/discover.conf and put skip bttv but it doesn't work, the bttv
  modules keep loading during bootup.
 
 Also tell hotplug to load it (etc/hotplug/blacklist.d/).
 
 best regards
  Andreas Janssen
 
 -- 
 Andreas Janssen [EMAIL PROTECTED]
 PGP-Key-ID: 0xDC801674 ICQ #17079270
 Registered Linux User #267976
 http://www.andreas-janssen.de/debian-tipps-sarge.html
 
 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Java SDK on unstable

2005-01-01 Thread Han Lin
Hi John,

I'm not sure for J2EE, but for J2se, you can just download it from
java.sun.com and do the proper path-ing in /etc/profile.

regards,
Han Lin

On Sun, 2005-01-02 at 00:21 +0100, John Plate wrote:
 Hi
 
 I tried to install Java SDK (j2sdk1.4), but dselect claims that there
 is no j2se-common file available. 
 
 How to get J2EE running on Debian unstable?
 
 Thanks in advance
 John
 
 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: digital camera (100 - 200 USD price range)

2005-01-01 Thread Han Lin
 http://www.dcresource.com/ which is recommended by gphoto.org, is an
 awesome site

or http://www.dpreview.com :-) it's a great website for digital photography.

regards,
Han Lin



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



shell script question

2003-12-04 Thread Han Huynh
I know this isn't a bash/korn shell script news group, but the fact is I 
can't find one.  Since bash/ksh is the default linux shell, I was hoping  
someone could answer a few pretty simple questions.

Is there any way to export a variable for one parent shell to a different 
parent shell?  I know that export will work to a subshell, but I can't find 
any process to return a variable to a different parent shell.

Thanks,
Han
_
Tired of slow downloads and busy signals?  Get a high-speed Internet 
connection! Comparison-shop your local high-speed providers here. 
https://broadband.msn.com

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



What is the usage of '.list' files

2001-11-18 Thread #ENG YI HAN#
Hi,

I've found the ISO files to make Debian GNU/Linux 2.2r4 at this address:

http://planetmirror.com/pub/debian-cd/2.2_rev4/i386/

Do I need the '.list' files to make the ISO 9660 CDs? WHat is the usage
of the '.list' files?

Can I just download all ISO image files and use Easy CD-Creator to make
CDs?



Firewall program for Debian?

2001-08-21 Thread Han Yoo
Can someone recommend a decent and easy to use firewall program for
Debian?
(Something like ZoneAlarm...?)

Thanks!

Han


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




Re: Firewall program for Debian?

2001-08-21 Thread Han Yoo

dman wrote:

 On Tue, Aug 21, 2001 at 01:52:41PM -0400, Han Yoo wrote:
 | Can someone recommend a decent and easy to use firewall program for
 | Debian?
 | (Something like ZoneAlarm...?)

 Which kernel do you have?

 Take your pick from 'iptables' 'ipchains' and 'ipfwadm' depending on
 kernel version.  (BTW, I've never seen ZoneAlarm, only heard the name
 before)

 -D

 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

Basically, I have the 2.2.19 kernel.
Is any of the programs that you mentined easy enough to be utilized by a Debian
novice without going into the heavy-duty configuration?

Thanks.

Han

P.S. ( ZoneAlarm is for the Windows users...)


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




Re: Problema al pasar script Perl de Wooddy a Solaris7

2000-12-27 Thread Han Solo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Juan Carlos Muro [EMAIL PROTECTED] writes:

 Hola.
 Necesito ayuda. Resulta que hice un programa en Perl con la Debian
 (wooddy), en el que utilizo el módulo Net/Telnet.pm
 Al pasarlo a Solaris 7 (tengo Perl 5.005), no me encuentra ese módulo.
 ¿Alguien me puede ayudar con esto? ¿No será que el Net/Telnet.pm no es
 un módulo estandar de la distribución de Perl?

Posiblemente sea eso. Lo que puedes hacer es bajarte el módulo ese de
algún mirror del CPAN (hay uno en el ftp de rediris), e instalarlo en
la máquina con solaris. No es muy dificil. Yo he instalado en Debian
varios módulos bajados de esa manera (por ejemplo, DBD y DBI)

Han Solo
The Rebel Alliance

Emacs is not on every system

So what? [...] Do you tell your administrative people to stick with
notepad.exe? Do you tell your fat kids they can only have the crummy
games that come with their video games or plain dress that comes with
Barbie?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.1 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.5 and Gnu Privacy Guard 
http://www.gnupg.org/

iEYEARECAAYFAjpKI0QACgkQ4FjpJaPEp21qOwCeN4V1J5Tok5r65iiYjfl7ihtL
5GUAoPnMZ2fdDnheMF5W2BNW6IoY7cmn
=VFuB
-END PGP SIGNATURE-



Re: pasar postgesql de slink a potato

2000-12-27 Thread Han Solo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

[EMAIL PROTECTED] writes:

 Tengo una base en postgresql en slink. Ayer pasé este pc de slink a potato
 sin ningún problema, excepto la base de datos.
 
 He leído la migración que indica Debian y dando los comandos que vienen no
 he sido capaz de actualizar la base de datos. Tengo guardado en backup la
 versión 6.3.
 Her usado los siguiente:
 
   # su - postgres
$ postgresql-dump -t db.out -cilfdp $PGDATA/../data.saveaunque he 
 tenido que modificar el
 $PGDATA quitándolo
 
 y he usado este comando:
 
   # su - postgres
$ postgresql-dump -t db.out -cilfdp ../data.save
 
 También he usado el otro que recomiendan
 
# su - postgres
 $ postgresql-dump -t db.out -dcilp ../data.save
 
 e incluso el volcado a fichero por partes:
postgresql-dump -t fichero   # dump to tape
 postgresql-dump -c -t fichero# check tape dump
 postgresql-dump -d -t fichero -i -l  # destroy the old database
   # create a new one and
   # load the dump


Una vez que tienes el db.out (que estará por alguna parte, búscalo con
find), puedes probar el siguiente comando:

psql -e database db.out

Yo hice la migración que cuentas, de slink a potato, y no recuerdo
como lo hice exactamente, pero no tengo el recuerdo de que fuera muy
complicado. Si no te funciona, mándame un mail y te lo miro con más calma.

Han Solo
The Rebel Alliance

Emacs is not on every system

So what? [...] Do you tell your administrative people to stick with
notepad.exe? Do you tell your fat kids they can only have the crummy
games that come with their video games or plain dress that comes with
Barbie?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.1 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.5 and Gnu Privacy Guard 
http://www.gnupg.org/

iEYEARECAAYFAjpKJGUACgkQ4FjpJaPEp231/ACfRoDhL9V77nSWP66+FFCZ0lYL
bKYAoPs+Lj3DDDWNHbqM9+xzAkZTAtNW
=Kp1L
-END PGP SIGNATURE-



Re: Shell script

2000-12-21 Thread Han Solo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Jose Antonio Ortega Garcia [EMAIL PROTECTED] writes:

  Hay unos directorios llamados:
  /etc/ppp/ip-up.d
  y
  /etc/ppp/ip-down.d
  el pppd ejecuta todos los scripts que encuentre en el primero de
  ellos, después de establecerse la comunicación.
  Análogamente, después de colgar ejecuta todos los scripts que
  encuentre en /etc/ppp/ip-down.d
 
 Ya lo he probado.Y sigue lo mismo. 
 
Yo lo tengo así:

 cat /etc/ppp/ip-up.d/conecta 
#!/bin/bash

exec /usr/sbin/sendmail -q 
exec /usr/sbin/get-news /home/hsolo/noticias 21 

su hsolo -c '/usr/bin/fetchmail -v  /home/hsolo/resultado 21 '
su hsolo -c '/usr/bin/weex 1 /home/hsolo/weex.log 21 '
wait

if [ -f /tmp/bloqueo ]; then
killall -HUP pppd
rm  /tmp/bloqueo
fi

mail -s Finiquitado hsolo  /home/hsolo/fin

De esta forma, todos los procesos se ejecutan simultáneamente. Cuando
todos han acabado, comprueba si existe cierto archovo de bloqueo, y si
es así desconecta. Este archivito se crea cuando conecto de forma
automática.

Este archivo tiene que tener permisos de ejecución.
- -- 
Un Saludo

Han Solo
The Rebel Alliance

Emacs is not on every system

So what? [...] Do you tell your administrative people to stick with
notepad.exe? Do you tell your fat kids they can only have the crummy
games that come with their video games or plain dress that comes with
Barbie?


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.1 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.5 and Gnu Privacy Guard 
http://www.gnupg.org/

iEYEARECAAYFAjpBV18ACgkQ4FjpJaPEp20BrwCdGql2DhLTmcovBuvxz7uiKaTe
0KAAnRWQfkbhNiL09pjM6zRmKHEyhi3q
=iQeY
-END PGP SIGNATURE-



Re: VGA MATROX... ¿Que tal?

2000-11-24 Thread Han Solo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Jaume Sabater [EMAIL PROTECTED] writes:

 Pus Despues de comprarme un pedazo monitor de 17 quiero sacarle un
 poco de jugo... Así que estoy dispuesto a sustituir mi vieja ISA de 1MB por
 una nueva... Qué tal sale esa?
 
 VGA MATROX MILL.G200 8MB SD AGP

Yo tengo esa misma tarjeta (bueno, el modelo sgram), y funciona
perfectamente. Aguanta sin problemas[*] 1024x768x32 a 85Hz con un
monitor de 17 decentillo (Hitachi 630ET).

[*] Yo normalmente trabajo con 1024x768x16. Con 32 bits de profundidad
de color, no se veían bien algunos programas, como el quake. También se
puede poner a más resolución, pero para un monitor de 17 esta es la
resolución normal.

- -- 
Un Saludo

Han Solo
The Rebel Alliance

Emacs is not on every system

So what? [...] Do you tell your administrative people to stick with
notepad.exe? Do you tell your fat kids they can only have the crummy
games that come with their video games or plain dress that comes with
Barbie?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.1 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.5 and Gnu Privacy Guard 
http://www.gnupg.org/

iEYEARECAAYFAjoe5h8ACgkQ4FjpJaPEp21+DwCeIXPAXolnCRpveUrFuBkmXF2J
J4AAnjm6OwSlyRzBSfRQcTq9zMGp6VLQ
=g1hV
-END PGP SIGNATURE-



Re: Postgres

2000-10-24 Thread Han Solo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Jose Antonio Ortega Garcia [EMAIL PROTECTED] writes:

 Hola:

Hola.

 
 He creado el usuario-administrador postgres y con este el usuario nobody
 al cual he autorizado a crear bases de datos.

¿Creado? a mí me lo hizo automáticamente durante la instalación del
programa.
 

[...]


 creado el segundo registro. Despues desde el usuario postgres entro en la
 base de datos cine y hago grant select on pruebas to public, para que la

Hum. Yo creo (no recuerdo ahora los privilegios del usuario postgres),
que si la tabla la creaste con el usuario nobody, los permisos debe
cambiarlos ese usuario.

 tabla pruebas pueda ser consultada por todes los usuarios. Finalmente hago
 select * from pruebas y deberia salirme los registros creado en mi tabla
 pruebas, pues bien no sale nada, lo que si he observado es que ahora me
 encuentro precedido con una flecha --- de esta manera cuando antes
 aparecia  la flecha con doble trazo. He creado un escript de
 conexion

Pues lo mismo te digo una bobada: para esa consulta la orden debería
ser select * from pruebas; con ; al final de la orden, de lo
contrario se queda esperando a que metas más condiciones (where
loquesea) S no fuera por lo que dices de la flecha, pensaría que
te has equivocado al teclear el mensaje, pero ese es el comportamiento
del prompt de postgres cuando metes más de una línea y espera al ;.

 desde web con php3 llamado probando.php3 he intentado acceder y este es el
 sigyuiente mensaje de error que aparece. Os atacheo dicho mensaje.
 
¿Seguro que al final lo has enviado? A mí no me ha llegado. De todas
formas, al hilo de todo esto, las consultas que mandes a través de un
script, también tienen que ir terminada por un punto y coma.

 Podeis darme la direccion de algun documento en español donde explique la
 administracion de Postgresql, creacion de bases de datos, creacion de
 tablas insercion de registros operaciones con todos estos items etc.
 Gracias. 

En Lucas http://lucas.hispalinux.es estaban traduciendo los manuales
de postgres. A estas alturas, ya deben haber terminado.
- -- 
Un Saludo

Han Solo
The Rebel Alliance

Emacs is not on every system

So what? [...] Do you tell your administrative people to stick with
notepad.exe? Do you tell your fat kids they can only have the crummy
games that come with their video games or plain dress that comes with
Barbie?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.1 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.5 and Gnu Privacy Guard 
http://www.gnupg.org/

iEYEARECAAYFAjn159wACgkQ4FjpJaPEp23c7QCg9t8Q+Yw14WenMTEpSWQjCEpV
jm4AoLEbHk7IT4qOgA8JGiy7qame2lMP
=ZX4B
-END PGP SIGNATURE-



Re: Emacs / XEmacs

2000-10-24 Thread Han Solo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Daniel Costas [EMAIL PROTECTED] writes:

 He visto alguna vez alguno de ellos que colorea el texto cuando editas
 un modulo en perl ¿Es posible con emacs? ¿O solo es una posibilidad en
 xemacs? 

Emacs colorea la sintaxis también. De hecho, a mí me gustan más los
colores de emacs que los de Xemacs (manía personal)

 
 He visto por ahi que se puede configurar añadiendole cosas para que
 trabaje en modos diferentes, ¿esto es factible para los dos? ¿como se
 hace? ¿donde podria encontrar informacion al respecto?

No se a qué te refieres exactamente, pero todo lo que es configurable
en uno, lo es en el otro. Yo sólo he encontrado alguna cosilla que
funcionara en Xemacs (por ejeplo) y no funcionara en emacs, pero ha
sido más bien incompetencia por mi parte que imposibilidad de hacerlo.

- -- 
Un Saludo

Han Solo
The Rebel Alliance

Emacs is not on every system

So what? [...] Do you tell your administrative people to stick with
notepad.exe? Do you tell your fat kids they can only have the crummy
games that come with their video games or plain dress that comes with
Barbie?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.1 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.5 and Gnu Privacy Guard 
http://www.gnupg.org/

iEYEARECAAYFAjn2DMQACgkQ4FjpJaPEp23g2wCg7DNra4bt/bUf6p+5RQW70lsS
zSMAnRqyCx1a4j3JwawwdyR8oDyk5C9P
=Mop6
-END PGP SIGNATURE-



Re: Pasar de sgml -- txt

2000-09-28 Thread Han Solo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Virgilio Gómez Rubio [EMAIL PROTECTED] writes:

 Hola:
 
  Creo que te falta especificar la codificaciónque sigue el texto. Creo que
 con añadir algo como -c latin es suficiente. De la otra forma me parece
 que el sgml2txt espera sólo ASCII. Espero que te sirva.
 
  Saludos.

Además conviene poner la opción -l es, para que ponga los títulos en
cristiano, es decir, que escriba Índice en lugar de Index y esas
cosas.

- -- 
Un Saludo

Han Solo
The Rebel Alliance

Emacs is not on every system

So what? [...] Do you tell your administrative people to stick with
notepad.exe? Do you tell your fat kids they can only have the crummy
games that come with their video games or plain dress that comes with
Barbie?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.1 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.5 and Gnu Privacy Guard 
http://www.gnupg.org/

iEYEARECAAYFAjnTmGMACgkQ4FjpJaPEp20F0ACgutFNqH8RhvZ4zGij/tCBRTWY
JpoAn1XsGHakzJ8gy1NM4HWS7DkXdqlw
=6PMo
-END PGP SIGNATURE-



Re: Problemas con el ispell en emacs

2000-09-20 Thread Han Solo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Marta Pla i Castells [EMAIL PROTECTED] writes:

 GlaciarHola a todos:
 
 Mi problema es el siguiente. El otro día escribiendo con el emacs quise
 utilizar el ispell para que me corrigiera las faltas de ortografía pero no
 me reconocía los acentos.

Prueba a poner en tu .emacas la siguiente línea:

(standard-display-european t)

A mí me pasaba eso y se corrigió así. Yo puedo usar los acentos sin
problemas en emacs. Supongo que es tontería pregunatar si tienes el
paquete ispanish instalado ¿no?

- -- 
Un Saludo

Han Solo
The Rebel Alliance

Emacs is not on every system

So what? [...] Do you tell your administrative people to stick with
notepad.exe? Do you tell your fat kids they can only have the crummy
games that come with their video games or plain dress that comes with
Barbie?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.1 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.5 and Gnu Privacy Guard 
http://www.gnupg.org/

iEYEARECAAYFAjnI72YACgkQ4FjpJaPEp22VagCgyrKIoDBeN9Tm2JyK2JBWC5U6
TdgAoJ9cDb+9jIJVxrREHuu98y05ZwKV
=KBJo
-END PGP SIGNATURE-



Re: lista paquetes

2000-09-07 Thread Han Solo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

TooMany [EMAIL PROTECTED] writes:

 Buenas.
 
 Tengo una máquina que quiero que tenga los mismos paquetes instalados que
 otra. Me imagino que debe haber un ficherito por ahí que, copiándolo de uno
 al otro, permitirá al otro tener los mismos paquetes instalados que el
 primero. ¿Podría alguien ayudarme en ello, por favor?
 
 Gracias por todo.

YO lo he hecho con dpkg --get-selectionsfichero, y luego dpkg
- --set-selections fichero

- -- 
Un Saludo

Han Solo
The Rebel Alliance

Emacs is not on every system

So what? [...] Do you tell your administrative people to stick with
notepad.exe? Do you tell your fat kids they can only have the crummy
games that come with their video games or plain dress that comes with
Barbie?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.1 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.5 and Gnu Privacy Guard 
http://www.gnupg.org/

iEYEARECAAYFAjm4CKsACgkQ4FjpJaPEp23mPgCgs3KHVBsTxnyV9MMUIj1UauhH
xdsAn1bF0DJ1mA0wX49812G/RA4NoGI+
=fUCT
-END PGP SIGNATURE-



Re: Scaner (y configuración de Emacs)

2000-08-24 Thread Han Solo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

José Luis Ayala [EMAIL PROTECTED] writes:

   Otra cosa. ¿Dónde narices se configura el color del backgroud de
 Emacs y, sobre todo, EL TAMAÑO DE LAS FUENTES? Estaré un poco despistado,
 pero no encuentro el archivo de configuración.

Yo lo tengo en el fichero .Xresources. Así:

emacs20*Background: #1d421d
emacs20*Foreground: Wheat
emacs20*pointerColor: Orchid
emacs20*cursorColor: Orchid
emacs20*bitmapIcon: on
emacs20*menubar.background: #1d421d
emacs20*menu*background: #1d421d
emacs20*Dialog.Command.background: #1d421d
emacs20*font: -*-courier-medium-r-*-*-12-*-*-*-*-*-*-*
emacs20*menubar.font: -*-helvetica-bold-r-*-*-12-*-*-*-*-*-*-*
emacs20*menu*font: -*-helvetica-bold-r-*-*-12-*-*-*-*-*-*-*
emacs20*Dialog.Command.font: -*-helvetica-bold-r-*-*-12-*-*-*-*-*-*-*



- -- 
Un Saludo

Han Solo
The Rebel Alliance

Emacs is not on every system

So what? [...] Do you tell your administrative people to stick with
notepad.exe? Do you tell your fat kids they can only have the crummy
games that come with their video games or plain dress that comes with
Barbie?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.1 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.5 and Gnu Privacy Guard 
http://www.gnupg.org/

iEYEARECAAYFAjmlF5cACgkQ4FjpJaPEp229jgCdHklLeWJgQzxWYlCiEFp/CYyX
augAmwYK3+DnyFSXcqqzbpEBEc4iC+OD
=8jWj
-END PGP SIGNATURE-



Re: [OFF-TOPIC]T. de red

2000-03-31 Thread Han Solo
On Thu, Mar 30, 2000 at 09:22:22PM +0200, Virgilio Gómez Rubio wrote:
 Hola:
 
   Mi tarjeta de red se queda literalmente muerta si abro dos sesiones de
 descarga de Netscape, por ejemplo. Sólo me pasa con el Netscape.
 
 Me aparecen estas líneas en los logs:
 
 ne.c:v1.10 9/23/94 Donald Becker ([EMAIL PROTECTED])
 NE*000 ethercard probe at 0x300: 00 40 33 34 80 ae
 eth0: NE2000 found at 0x300, using IRQ 10.
 
 Hasta aquí entiendo que carga los controladores de la tarjeta...
 
 eth0: Tx timed out, lost interrupt? TSR=0x3, ISR=0x17, t=671.
 eth0: Tx timed out, lost interrupt? TSR=0x3, ISR=0x17, t=4500.
 eth0: Tx timed out, lost interrupt? TSR=0x3, ISR=0x3, t=1000.
 eth0: Tx timed out, lost interrupt? TSR=0x3, ISR=0x3, t=3000.
 eth0: Tx timed out, lost interrupt? TSR=0x3, ISR=0x3, t=1000.
 free_one_pmd: bad directory entry 1000
 eth0: Tx timed out, lost interrupt? TSR=0x3, ISR=0x3, t=1000.
 eth0: Tx timed out, lost interrupt? TSR=0x3, ISR=0x3, t=1000.

¿No será por casualidad una Ovislink 10/100, con chip Realtek 8139?
-- 
Un Saludo

Han Solo
The Rebel Alliance

Emacs is not on every system

So what? [...] Do you tell your administrative people to stick with
notepad.exe? Do you tell your fat kids they can only have the crummy
games that come with their video games or plain dress that comes with
Barbie?


pgp4CUsy4oIE0.pgp
Description: PGP signature


Re: Nuevo disco para Debian

2000-03-15 Thread Han Solo
On Mon, Mar 13, 2000 at 08:35:33PM +0100, Diego Bote wrote:
   Hola linuxeros.
 
   Pues eso, que tengo un disco de 13 Gigas para instalar el sistema
 que tenía apretadito en 300 megas y voy a pasarlo.

¡Que suerte la tuya! Yo tengo en total unos 2.5 Gb y estoy que no quepo.

 
   Quiero pasarlo todo y en principio no contar con el antiguo disco
 excepto quizás para swap. Ahora tengo un disco hda con 1.2 Gb donde está
 el bicho95 con 900 Mb y Linux Debian en 300 Mb., y el super disco lo tengo
 como hdb sin particionar ni nada. La idea es instalar el bicho95 y sobre
 todo Linux Debian manteniendo la configuración y los datos en el nuevo
 disco. Yo lo haría instalando todo de nuevo pero seguro que vosotros me
 proponeis algo mejor. ¿no?

Pues sí. Primero instala el nuevo disco en algún canal libre de tu
controladora IDE, para poder hacer las particiones desde tu sistema Linux ya
instalado. Yo te aconsejaría que hicieras una partición pequeña al principio
del disco, de unos 10Mb, para montar en ella el /boot, y no tener problemas
con los 1024 cilindros. Esta partición debería ser hda2 (cuando sea
definitiva; mientras será hdX2). A continuación pones hda1 (mismo
comentario) con el tamaño que decidas para el güindows, y después el resto
para Linux (en las particiones que consideres convenientes).

Cuando tengas las particiones de Linux definidas y formateadas, las montas
en algún directorio temporal, ya haces lo siguiente (sacado de un mensaje
mío del hace algunos meses):

---
Un par de trucos que tenía por ahí guardados.

Mover directorios enteros entre sistemas de ficheros (muy útil cuando se
cambia el disco duro). Del mismísimo Alan Cox:

(cd /origen/directorio; tar cf - . ) | (cd /dest/directorio; tar xvfp -)

al que yo simplificaría como

tar cf - /directorio/a/copiar |tar xvpf -

que copia en el directorio actual.
-

por ejemplo

(cd /; tar cf - --exclude proc --exclude boot --exclude dir/de/destino . ) | 
(cd /dest/directorio; tar xvfp -)

los exclude son para que no te copie el directorio proc, que no es un
directorio real y no te va valer para nada copiarlo, el boot, porque lo
tendrás que montar en una partición aparte, y repetir el proceso aparte, y
el dir/de/destino, para que no comience a copiar recursivamente lo que ya
vas pasando.

Una vez hecho todo esto, pones el nuevo disco en /dev/hda/, arrancas con un
disquete de arranque, retocas el /etc/fstab (para que te monte la partición
/boot al arrancar), y ejecutas lilo, para que cree de nuevo el sector de
arranque, y a rular Yo lo he hecho varias veces así, y el cambio de
disco no te lleva en total más de una hora (dependiendo de lo que tengas que
copiar)

   Otra cosa es que empiezo a estar algo paranoico con la seguridad y
 quiero usar los archivos hosts.allow y hosts.deny para dejar entrar en mi
 máquina solo a cierta gente de mi dominio. Hasta ahora solo controlo no
 permitir el acceso a un ordenador concreto y no a colectivos. ¿Me
 comentais algo?

No es muy complicado, y en las páginas man viene bien documentado (aunque
tienen alguna contradicción). Tienes una introducción a los TCP-wrappers en
RedIris (http://www.rediris.es).

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpQMYOYCqP0Q.pgp
Description: PGP signature


Re: Compilar paquete fuente de potato en slink

2000-03-15 Thread Han Solo
On Wed, Mar 15, 2000 at 01:20:26PM +0100, Arregui-García, Javier wrote:
 Hola,
 
 Me quiero compilar los paquetes omniorb, omniorb-dev y omniorb-doc de potato
 en slink.
 Me he bajado los correspondientes archivos fuente, que en los 3 paquetes
 parecen ser los mismos:
 
 omniorb_2.8.0.orig.tar.gz
 omniorb_2.8.0-4_diff.gz
 omniorb_2.8.0.dsc
 
 Por lo que se apunta en el *.dsc, a partir de estos fuentes se generan 3
 paquetes binarios distintos. 
 
 1. Please, una ayudita rápida de lo que había que hacer para generar los
 paquetes a partir de esto.

Básicamente, descomprimirlos, con dpkg-source -x omniorb_2.8.0.dsc, entrar
en el directorio que te creará (omniorb-2.8.0), y allí ejecutar build. Este
el el proceso básico.

build pertenece al paquete devscripts, comprueba que está instalado. En
rigor, creo que no es estrictamente necesario, pero simplifica mucho la
vida. Este es el sistema que tengo yo para compilar paquetes a partir de
fuentes

 2. ¿Como cuánto de seguro es utilizar esta técnica? ¿Siempre funcionan bien
 los paquetes?

Yo lo he hecho muchas veces. No sé a que te refieres con seguro. Es la forma
de hacerlo. Únicamente tienes que tener en cuenta un par de cosillas:

- Puede que para compilar necesite librerías más modernas que las que tengas
instaladas en el sistema. En ese caso te dará errores al compilar. La
solución es que te bajes los fuentes de esas librerías para potato y los
compiles antes por el mismo método. Puede pasar de nuevo que dependan de
otras librerías y así hasta el infinito (no es broma, no sabes lo que me
costó compilar el xmms)

- Una vez creados los paquetes, puede que estos dependan de paquetes que se
llaman de distinta forma en slink que en potato, con lo que no se llegarán a
instalar, aunque de hecho funcionarían. Un ejemplo de esto el el perl. Los
paquetes de potato que necesitan perl, dependen del paquete perl5. En slink
el paquete se llama perl a secas. La solución es cambiar las dependencias.
Se hace en el fichero omniorb-2.8.0/debian/control.

- En algún momento, construyendo no-me-acuerdo-qué paquete, tuve que
actualizar el paquete devscripts de slink al de potato (y me suena que algún
otro). El caso es que me crea los paquetes con las estructura de potato, en
la cambian algunas cosillas, como la documentación. La documentación de los
nuevos paquetes ya no está en /usr/doc/paquete sino en
/usr/share/doc/paquete. DE igual manera, las páginas man pasan de
/usr/man a /usr/share/man. INCISO Me gustaría que algún Debian developer
de los que pululan por aquí me explicara este cambio /INCISO
Seguramente, toqueteando los makefiles podría arreglarlo, pero me ha
parecido mucho trabajo para una cosa tan tonta, sobre todo teniendo en
cuenta que potato está a la vuelta de la esquina. Lo de las páginas man se
arregla fácil incluyendo su directorio a la variable $MANPATH en el
/etc/profile.

Acabo de recordar que otro de los paquetes que tengo actualizados es
debhelper, que podría darte algo de guerra.
-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpu4o3ZwlsFc.pgp
Description: PGP signature


Cliente y servidor ftp seguro

2000-03-08 Thread Han Solo
Hola a todos.

Estoy buscando un cliente y un ftp seguros para Debian, pero no encuentro
nada. Me extraña que no haya el equivalente al telnet-ssl. ¿Alguien sabe
algo de este tema?

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpI3PEWROeJ1.pgp
Description: PGP signature


Re: Hay en linux un programa parecido al autocad?

2000-02-26 Thread Han Solo
   Existe una versión para estudiantes del MicroStation 95, que tiene una
 calidad como mínimo similar a la del AutoCad. Pasate por

¿Similar? Es mucho mejor que el AutoCad.

 http://www.bentley.com/ema/academic/ para más info ...

En Madrid (y creo que para toda España), el distribuidor es 

Aula Técnica Ingenieros
Av. Reina Victoria 15
Tel. 91 456 20 70

A mí me costó 13000 pesetas. Venían dos CDs, uno con el programa y varios
módulos y otro con toda la documentación en PDF, la misma que los manuales
en papel.

   Aparte de esto, hay unos cuantos proyectos libres, aunque no han
 alcanzado todavía su madurez...

Sip. Yo creo que el Qcad tiene bastante futuro, aunque estma muy muy verde.
Por otro lado, el Grass parece la leche (no lo he probado).

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpf9vbMbjRqF.pgp
Description: PGP signature


Re: Hay en linux un programa parecido al autocad?

2000-02-26 Thread Han Solo
On Sat, Feb 26, 2000 at 04:00:19PM +, David Charro Ripa wrote:
 Hola Han Solo:
 
 No veo paquete del Grass en potato, ni en
 woody. Creia haberlo visto. ¿Lo han
 quitado? ¿Nunca estuvo y tengo alucinaciones?

A mi no me suena haberlo visto nunca en ninguna distribución, y seguro que
es GPL.

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgp678HOwaKMT.pgp
Description: PGP signature


Re: ¿¿¿ Programa para consulta de correo (en plan news) ???

2000-02-18 Thread Han Solo
On Wed, Feb 16, 2000 at 09:04:45PM +0100, Manel Marin wrote:
 
 Quisiera mantener la correspondencia de varias personas y las respuestas y
  las respuestas a las repuestas en arboles en plan news.
 
 Seguro que existe un programa asi... pero ¿cual es?  
 
Si, el mutt ;-) ¿o cómo te crees que yo veo la correspondencia de esta
lista?
-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpljjd8DGn8f.pgp
Description: PGP signature


Re: Paquete emacs para X

2000-02-17 Thread Han Solo
On Tue, Feb 15, 2000 at 11:27:09PM +0100, David Muriel wrote:
 creo que lo que buscas es esto:
 
 ii  emacs20 20.3-7 The GNU Emacs editor.
 ii  emacsen-common  1.4.8  Common facilities for all emacsen.
 

Pues efectivamente, era eso. Muchas gracias.

 
 Emacs is a religion (take a look at alt.religion.emacs), it's not
 your typical software. You should study it like The Bible and one day
 you will believe in it.
 
 -- from a post in comp.emacs
 

Esta va para mi colección de tags.

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpXRqgS0m1rb.pgp
Description: PGP signature


Paquete emacs para X

2000-02-15 Thread Han Solo
Hola a todos.

Antaño, cuando tenía instalada RedHat, venía un paquete que llamaba algo así
como emacs para X en la instalación. El paquete se llamaba
emacs-X11-20.2-7.i386.rpm. Este emacs viene a ser un termino medio entre el
emacs de la consola y el xemacs. ¿Alguien sabe si exixte este paquete para
Debian?

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpOsDDGNwKHQ.pgp
Description: PGP signature


Re: Necesito consejo para quitar disco duro y dejar todo igual

2000-02-10 Thread Han Solo
On Thu, Feb 10, 2000 at 04:07:59PM +0200, [EMAIL PROTECTED] wrote:
 
 Hola
 
 En mi equipo tengo dos discos duros, /dev/hda con 6 GB. y /dev/hdb con 4
 GB. el caso es que tengo instalado la partición Linux en el /dev/hdb y
 dentro de poco me ocmpro un nuevo equipo sin disco duro y quiero ponerle el
 de 6 GB. el caso es que en el de 6 GB /dev/hda está el mbr con el lilo que
 arranca mi partición Linux en /dev/hdb y cuando quite el disco de 6 gb. el
 segundo disco de 4 gb. pasará a ser /dev/hda y no tener ni lilo ni leches.
 La cuestión es... no quiero perder Linux, pero ando un pelín confundido
 para saber como he de arreglármelas para montar aunque sea un disco de
 arranque que vaya a /dev/hda1 a arrancar el linux cuando ni siquiera lo
 tengo así ahora. :P
 

Es sencillo. Montas hdb como hda, y arrancas con un disco de arranque.
Puedes usar los mismos de la instalación de debian, pero en mi opinión
(aunque sea herejía en esta lista), los mejores discos de arranque son los
de la slackware. Si lo haces con los discos de debian, lo único que tienes
que hacer es montar hda en algún sitio, retocar el lilo, que estará en
/donde/sea/etc/lilo.conf, y ejecutar lilo -r /donde/sea. Para más info man
lilo(8).

Te digo lo de los discos de la slack, porque suelen llevar una opción que se
llama mount, que sirve para arrancar desde disquete pero continuar desde el
disco duro. Una vez que arrancas, cuando arparece aquello de LIO: tecleas
mount root=/dev/hda, y sigue arrancando desde hda como si hubiera arrancado
desde el disco duro. Una vez dentro retocas el lilo conf y ejecutas lilo
como siempre. Realmente lo único que lee del disquete es el kernel y poco
más.

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpYyvFK1FDFh.pgp
Description: PGP signature


Question on Scanner and sane

2000-02-05 Thread Tung-Han Hsieh
Dear All, 

I just buy an AcerScan Prisa 320P scanner. It is connected to 
parallel port. It works fine under Win95. Is it possible to use 
it under Debian?

Besides, I tried to use sane package to see if it is helpful.
But I found something strange. My system is potato (upgraded
one week ago), and the sane package version are:

libsane: 1.0.1-1999-10-21-9
sane:1.0.1-1999-10-21-9

but when I run scanimage --list-devices, the menu said that it
should report all the devices found in /etc/sane.d/, but it report
nothing. If I run scanimage --help, it reports:

=
Usage: scanimage [OPTION]...

Start image acquisition on a scanner device and write PNM image data to
standard output.

-d, --device-name=DEVICE   use a given scanner device
-h, --help display this help message and exit
-L, --list-devices show available scanner devices
-T, --test test backend thoroughly
-v, --verbose  give even more status messages
-V, --version  print version information
scanimage: no SANE devices found
=

So, what's wrong with this? And, I also see that /etc/sane.d/qcam.conf
which seems to use the parallel port device. So, is it possible to use
it under other parallel port scanners? What kernel options should I use
to support parallel port scanners?

Thank you very much for your reply in advance.

(ps. I do not subscribe to this list. Would you please also send a copy
 of your reply also to:

[EMAIL PROTECTED]

 Thank you very much).


T.H.Hsieh


Eliminar partición de NT rebelde

2000-02-03 Thread Han Solo
To: 
Cc: 
Bcc: 
Subject: 
Reply-To: 
Hola a todos.

Resulta que tengo un servidor con Debian potato que funciona perfectamente
(hasta aquí bien). Tiene un disco SCSI de 18Gb, que hasta ahora estaba
particionado de la siguiente manera:

sda1 2Gb güinNT
sda2 23Mb Linux /boot
sda3 100Mb Linux swap
sda4 7.5Gb Linux /

El resto del espacio que falta, estaba sin particionar en la mitad del
disco, previsto en pricipio para NT, pero no se llegó a usar nunca. El caso
es que quería eliminar  sda1 y sda2, para poner sda1 con 20 Mb al principo
del disco (por lo del cilindro 1024) para boot, y el resto asignárselo a una
partición de linux para guardar datos (miles de imágenes).

El caso es que con fsck, puedo borrar las particiones y crearlas de nuevo,
pero luego no es capaz de formatearlas, aunque con el fdisk aparecen
perfectamente definidas. El caso es que al intentar grabar la nueva tabla de
particiones, da un error; algo así como error 16. resource busy. Pensando
que el NT habría dejado alguna mierda en el sector de arranque, le he pegado
un borrado a la tabla de particiones con dd:

dd if=/dev/zero  of=/dev/hda1  bs=512  count=1

sacado de la documantación del fdisk, para particiones M$-DOG (aunque esta
era NTFS). Todo esto no ha servido de nada, y sigo sin poder formatear las
particiones. Ahora me temo que como tenga que reiniciar no va a ser capaz de
arrancar (todavía no lo he apagado, pero temo que se vaya la luz en
cualquier momento).

¿Alguien sabe como cepillarse esa partición? coo os digo, aunque en
principio parace que la ha borrado, si intento

mke2fs -b /dev/sda1 (ó 2)

se queja de un error de badblock y no formatea.
Por supuesto tengo desmontadas las particiones que pudieran usar sda1|2



-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpfXq3ypu60y.pgp
Description: PGP signature


Eliminar una partición de NT rebelde

2000-02-03 Thread Han Solo
Hola a todos.

Resulta que tengo un servidor con Debian potato que funciona perfectamente
(hasta aquí bien). Tiene un disco SCSI de 18Gb, que hasta ahora estaba
particionado de la siguiente manera:

sda1 2Gb güinNT
sda2 23Mb Linux /boot
sda3 100Mb Linux swap
sda4 7.5Gb Linux /

El resto del espacio que falta, estaba sin particionar en la mitad del
disco. previsto en pricipio rapa NT, pero no se llegó a usar nunca. El caso
es que quería eliminar  sda1 y sda2, para poner sda1 con 20 Mb al principo
del disco (por lo del cilindro 1024) para boot, y el resto asignárselo a una
partición de linux para guardar datos (miles de imágenes).

El caso es que con fsck, puedo borrar las particiones y crearlas de nuevo,
pero luego no es capaz de formatearlas, aunque con el fdisk aparecen
perfectamente definidas. El caso es que al intentar grabar la nueva tabla de
particiones, da un error; algo así como error 16. resource busy. Pensando
que el NT habría dejado alguna mierda en el sector de arranque, le he pegado
un borrado a la tabla de particiones con dd:

dd if=/dev/zero  of=/dev/hda1  bs=512  count=1

sacado de la documantación del fdisk, para particiones M$-DOG (aunque esta
era NTFS). Todo esto no ha servido de nada, y sigo sin poder formatear las
particiones. Ahora me temo que como tenga que reiniciar no va a ser capaz de
arrancar (todavía no lo he apagado, pero temo que se vaya la luz en
cualquier momento).

¿Alguien sabe como cepillarse esa partición? coo os digo, aunque en
principio parace que la ha borrado, si intento

mke2fs -b /dev/sda1 (ó 2)

se queja de un error de badblock y no formatea.
Por supuesto tengo desmontadas las particiones que pudieran usar sda1|2


-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpy9zmtSJlIL.pgp
Description: PGP signature


Re: resucitando un viejo 486 con debian

2000-02-01 Thread Han Solo
On Mon, Jan 31, 2000 at 06:08:30PM +0100, hcl wrote:
 El Mon, Jan 31, 2000 at 03:31:16PM +, Eduardo Fernandez Corrales dijo:
  Hola,
  
 
 Que yo sepa el wm que menos recursos  consume  es  el  twm,  el  fvwm2  
 no 
  consume mucho pero no se como te irá...

To hasta hace una año he tenido un 486DX50 con 16Mb e iba bastabte bien. El
fvwm2 no consume apenas. De hecho, yo lo he utilizada hasta entonces para
temas de CAD (con microstation)

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpSOcba1o6K9.pgp
Description: PGP signature


Fw: Inchon International Airport Information

2000-01-27 Thread han
 To whom it may concern

 Please refer to the attached news information for Inchon International Airport 
in Korea. This news letter(attached file) should be delivered to personnel who 
are related to airport business and are interested in our facilities/services.
If this is mistakenly delivered to you or you have no further interest, please 
inform  No in subject header. We will delete your address out of our list.

Best Regards.
Inchon International Airport
   
 인천 국제공항 홍보부 입니다.
공항관계자 또는 당사프로젝트에 관심을 표명한 분들께 보내는 News Letter(유첨file)입니다. 혹시 귀하께 잘못전달되었거나, 더이상 
관심이 없다면 부디 제목란에 No 라고 하시어 회신주시기 바랍니다.
   
감사합니다.
인천 국제공항 홍보부  
   
 
IIAC Internet Newsletter
January 20, 2000 (No. 5)

  

This newsletter is issued by the Inchon International Airport Corporation 
(IIAC) as a source of information on the progress of the construction, 
the start-up and commissioning schedule and operation readiness. 
IIAC plans to forward the newsletter to airlines, international aviation 
organizations, major airports, the press and investment companies via 
e-mail on the 20th of every month.


Progress Report 

 Construction of the airport is scheduled to be completed by June 
 2000. Progress as of the end of December was 87.8%. Details are 
 as follows: Passenger Terminal Building 83.6%, Runways 86.4%, 
 Transportation Center 48.8%, Support Buildings, including fueling 
 facility, aircraft maintenance hanger and catering 87.0%, Expressway
 91.6%.


  Major milestones for this year: 

  - The airport's thermal power plant  supply will start to burn in 
February.
  - Flight testing of navigational aids will begin in March.
  - Railroad tracks will be completed by the end of April. 
  - Building construction and facility installation will be completed
by June. 
  - Overall start-up and commissioning will start in July.
  - Trial operation with aircraft, passengers and cargo will take place
from October prior to the opening in early 2001.


 

News


  Bid for IIA Snow and Ice Removal Equipment 

 Four Companies have submitted bids to provide Snow and Ice Control 
 Equipment. The final date for receiving bids was January 14.
 Proposed is equipment manufactured by Schmidt (Germany), Busher-Schorling
 (Germany), R.P.M. Tech. (U.S.A.) and Fresia (Italy). 
 IIAC will announce the preferred bidder within February following 
 technical and price evaluations.


  Investors Invited to IBC Facilities

IIA is speeding up the process to invite investment in hotel and commercial
concessions within the International Business Center (IBC).
The IBC site, which is 1.6km from the Passenger Terminal Building, will 
include two first-class, 500-room hotels. Commercial concessions have a 
floor space of 12,000 sq. meters and 5 office buildings 31,000 sq. meters.
Reclamation and infrastructure work began on the site in 1992, and is 95% 
complete.
The IBC will be offered on a BOT (Build, Operate, and Transfer) basis. 
IIAC will prepare the site and the investors will build their own 
facilities with a right to operate them for 50 years. 
The airport aims to become East Asia's main international transit airport. 
Its annual handling capacity, upon opening in 2001, will be 21 million 
passengers and 2 million tons
of cargo. In 2005, this capacity is expected to increase into 28 million 
passengers and 2.6 million tons of cargo. 


 Proposals Requested for Passenger Terminal Concessions 

Some 500 people from around 250 companies attended a presentation January 
11 inviting proposals for Passenger Terminal Concessions.
Duty-free shops, food and beverage outlets, book and stationery stores, 
saunas, and specialty retail and video arcades are included in these 
Concessions. About 7% of the floor space of the Passenger Terminal area 
has been allocated for Concessions.
IIAC plans to select tenants by April.



 Airline Office Allocation Finalized


In mid-January, IIAC finalized the first allocation of business offices 
and CIP lounges within the Passenger Terminal. for 30 airlines which have 
indicated their intention to move to IIA.  
The allocation was made following a 2-month survey of the needs and 
preferences of 44 airlines.  IIAC held two presentations and working 
group meetings with the airlines concerned.
Total space for the airline offices within the Passenger Terminal is 
33,145 sq. meters which is 2.5 times larger than the office area at Kimpo 
International Airport. The first allocation covers by IIA about 23,972 sq.
meters.



 Passenger Terminal Fireproof Gypsum Board Passes Test

The fireproof gypsum board used in the Passenger Terminal Building passed 
a recent safety test with flying colors. 
The tests were conducted by the 

Re: Mpage me desborda la memoria de la HP

2000-01-19 Thread Han Solo
On Wed, Jan 19, 2000 at 07:38:23PM +0100, Diego Bote Barco wrote:
 Me gusta bastante el programa mpage y lo tengo instalado en los dos equipos 
 que manejo. En uno no tengo ningún problema pero en el que da salida a la 
 HPlj3P me crea unos archivos que  al pasarselos a la impresora esta se para e 
 indica que tiene un desbordamiento de memoria. El caso es que los *.ps 
 generados de otra manera no dan esos problemas, lease, a través de dvips, o 
 generados en otros sistemas. Sus salidas tambien las puedo ver con gv, pero 
 de nuevo si las mando a imprimir me originan el susodicho problema. Incluso 
 si 
 me llevo el archivo creado por mpage al Bicho95 este me desborda la memoria 
 al intentar imprimirlo.

No se si es una solución muy buena, pero prueba con las psutils, que para mi
gusto son mejores y más completas que mpage. Yo tengo una HP4L y nunca he
tenido ningún problema (con 1Mb de memoria).
-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpXbxutS8xeA.pgp
Description: PGP signature


Re: Engañar a APT

2000-01-16 Thread Han Solo
On Sat, Jan 15, 2000 at 10:12:55PM +0100, Francisco Callejo wrote:
 Hola.
 
 Total, que ahora cada vez que utilizo apt me da un error de
 dependencias y la única solución que me ofrece es desinstalar
 tetex-bin y todos los paquetes que dependen de él. Como no estoy
 dispuesto a hacerlo, tengo dos opciones:
 
 1) No utilizar nunca apt.
 2) Engañar a apt para que no tenga en cuenta las dependencias de los
 paquetes instalados.
 
Tienes una tercera opción: Antes de recompilar tetex, retócalo para que
dependa de la versión 1.3 en vez de la 1.3.3. Creo que se cambiaba en el
fichero debian/control, pero no estoy seguro. Con rgrep se encuentra en dos
patadas. Yo tengo así varios paquetes retocados que dependían de perl5
(potato) en vez de perl a secas (slink).
-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpY9Xhwn0efQ.pgp
Description: PGP signature


Re: CD completo

2000-01-11 Thread Han Solo
On Mon, Jan 10, 2000 at 08:33:39AM +0100, Tejada Lacaci, Antonio wrote:

   Que yo sepa el Easy CD Creator de Win permite El Torito, pero ignoro
 cómo se hace eso en linux :-m (no estoy muy puesto en grabadoras en lin,
 pero mira el cdroast, xcdroast y demás).
 
En linux se hace perfectamente con mkisofs. Yo he hecho algunos cd's
arrancables, para tener una distribución de linux personalizada con algunas
cosillas que le metí yo.

Puedes crear la imagen con mkisofs y luego tostar el CD con xcdroast, con
cdrecord (yo creo que es lo mejor) o incluso con algún programa del
Innombrable (se hace bien con el Easy Cd Creator de Adaptec).
-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpZuH278hJpg.pgp
Description: PGP signature


Re: Encoders de MP3?

2000-01-04 Thread Han Solo
On Mon, Jan 03, 2000 at 08:13:13PM +0100, Jordi wrote:
 Hola,

Hola

 Hay algún encoder de Mp3 en Potato? No encuentro ninguno de los famosos
 (bladeenc, etc.). Hay alguno recomendable para instalar en /usr/local?

Ni creo que los encuentres. Los encoders (corregidme si me equivoco) se
distribuyen como parches de un soft que no es libre, así que dudo que
lleguen a estar en potato o en ninguna otra, al menos en main.

El BladeEncoder sólo ocupa 300K; si queres te lo envío por mail.

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpROAIFr22nX.pgp
Description: PGP signature


Re: Acentos en Netscape

1999-12-24 Thread Han Solo
On Wed, Dec 22, 1999 at 11:31:22AM +0100, Agustín Martín Domingo wrote:
  Pookie wrote:
  
  no me van los acentos con netscape en las X a pesar de que otras
  aplicaciones como StarOffice y editores si que me van...

 c) Desactivar las extensiones de teclado de las X y utilizar la librería
 parcheada de Thomas Quinot y el xmodmap para obtener teclas muertas.
 Este era el remedio con la libc5, pero a estas alturas, ya parece un
 poco exagerado utilizar todo esto por una única aplicación. Si por lo
 menos se pudieran desactivar las extensiones de teclado y activar el
 xmodmap para una única aplicación, podría tener sentido, pero como si no
 me equivoco no es posible, creo que no merece la pena.

 
Yo Creo que sí merece la pena. Yo sigo usando aplicaciones que usan libc5,
como el Netscape 3.04 (antiquísimo, si, pero mucho más estable) o el
Microstation y alguna otra. Además, no es tan complicado de hacer. Se tardan
5 minutos. La ventaja que tiene lel usar un mapa de teclado es que puedes
redefinir alguas teclas. Así, yo por ejemplo tenco cambiado el asterisco del
teclado numérico por una como; para teclear coordenadas es comodísimo.

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpL0ASkJb6l9.pgp
Description: PGP signature


Inchon International Airport Information

1999-12-22 Thread han
To whom it may concern
  
 Please refer to the attached news information for Inchon International Airport 
in Korea. This news letter(attached file) should be delivered to personnel who 
are related to airport business and are interested in our facilities/services.
If this is mistakenly delivered to you or you have no further interest, please 
inform  No in subject. We will delete your address out of our list.
  
Best Regards.
Inchon International Airport
 
 인천 국제공항 홍보부 입니다.
공항관계자 또는 당사프로젝트에 관심을 표명한 분들께 보내는 News Letter(유첨file)입니다. 혹시 귀하께 잘못전달되었거나, 더이상 
관심이 없다면 부디 제목란에 No 라고 하시어 회신주시기 바랍니다.
  
 감사합니다.
인천 국제공항 홍보부  

 
 ÀÎõ±¹Á¦°øÇ×°ø»ç ÀÎÅÍ³Ý ´º½º·¹ÅÍ
 Á¦4È£, 1999³â 12¿ù 20ÀÏ ¹ßÇà  


   ÀÎõ±¹Á¦°øÇ×°ø»ç´Â °Ç¼³ÁßÀÎ ÀÎõ±¹Á¦°øÇ×ÀÇ °øÁ¤ÇöȲ°ú ¿î¿µÁغñ»óȲÀ» 
Áß½ÉÀ¸·Î ±¹¡¤¿µ¹® ´º½º·¹Å͸¦ ÀÛ¼º, ¸Å¿ù 20ÀÏ¿¡ ±¹³»¿Ü Ç×°ø»ç, Ç×°ø°ü·Ã 
±¹Á¦±â±¸, ÁÖ¿ä°øÇ×, ¾ð·Ð¸Åü ¹× ±¹Á¦Àû ÅõÀÚȸ»ç µî¿¡ E-mailÀ» ÅëÇØ ¼ÛºÎÇÒ 
¿¹Á¤ÀÌ´Ù.  


°øÁ¤ ÇöȲ 

¡Û ÀÎõ°øÇ×ÀÌ ¿õÀåÇÑ ¿ÜÇüÀ» µå·¯³½ °¡¿îµ¥ °üÁ¦Å¾, ¿©°´Å͹̳ΰú È°Áַο¡ Á¶¸íÀÌ 
Á¡µî, °³Ç×ÀÌ ÀÓ¹ÚÇØ¿È
   À» ½Ç°¨ÄÉ ÇÑ´Ù. 
   Áö³­ 11¿ù¸» ÇöÀç ÃÑ °øÁ¤À²Àº 85.4%. ÇöÀå¿¡¼± 2001³â È­·ÁÇÑ ºñ»óÀ» À§ÇÑ 
¸·¹ÙÁö ÀÛ¾÷ÀÌ ÇÑâÀÌ´Ù.
   ¿©°´Å͹̳ÎÀº 79.5%, È°Áַδ 84.8%, ±³Åë¼¾ÅÍ´Â 44.6%, ±ÞÀ¯½Ã¼³, Ç×°ø±â 
Á¤ºñ½Ã¼³°ú ±â³»½Ä ½Ã¼³ µî
   °øÇ× ºÎ´ë½Ã¼³¹°Àº 81.3%, ±×¸®°í ½Å°øÇ×°í¼Óµµ·Î´Â 89.3%°¡ ÁøôµÆ´Ù.  
   
¡Û Áö³­ 4¿ùºÎÅÍ °¡µ¿µÈ ½Ã½ºÅÛÅëÇÕ½ÃÇè½Ç (Temporary Benchmark Test 
Laboratory)¿¡¼­´Â 39°³ ½Ã½ºÅÛ±ºÀÇ 
   software ½ÃÇèÀÌ 3´Ü°è·Î ³ª´µ¾î °è¼ÓµÇ°í ÀÖ´Ù.
   °¢ °³º° ½Ã½ºÅÛº° interface ½ÃÇèÀº ÀÌ¹Ì ³¡³­ »óÅ°í ÇöÀç´Â °¢ °³º° ½Ã½ºÅÛ°£ÀÇ 
»óÈ£ ¿¬µ¿½ÃÇèÀÌ 
   ÁøÇàµÇ°í ÀÖ´Ù. »óÈ£ ¿¬µ¿½ÃÇèÀÌ ³¡³ª¸é ÅëÇÕ½ÃÇèÀ» °ÅÃÄ ÇöÀå¿¡ Àû¿ëµÈ´Ù.
   ÀÌ¿Í´Â º°µµ·Î ÇöÀå¿¡¼­´Â 39°³ ½Ã½ºÅÛ±ºÀÇ ±â°è ¹× Àü±â µî hardware°¡ ¼³Ä¡µÇ°í 
ÀÖ´Ù.
   ÀÌ·¯ÇÑ software ½ÃÇè°ú hardwareÀÇ ÇöÀ弳ġ¸¦ ÅëÇØ °øÇ×À» ÅëÇÕÀûÀ¸·Î ¿î¿µÇÏ´Â 
½Å°æ¸ÁÀÎ Á¾ÇÕÁ¤º¸
   Åë½Å½Ã½ºÅÛ (Integrated Information Communication System) ±¸ÃàÀÛ¾÷µµ Á¦ 
±Ëµµ¿¡ ¿Ã¶óÀÖ´Ù.  
   11¿ù ¸» ÇöÀç ÀÎõ°øÇ×ÀÇ software ¹× hardwareÀÇ ½Ã½ºÅÛ ±¸Ãà»ç¾÷Àº 74.4%°¡ 
ÁøôµÈ »óÅÂÀÌ´Ù.

   °øÁ¤1 : ÁöÇÏÂ÷µµ ¿Ï¼º
 -  ÀϺ» Àü¹®¾÷ü, ¾ÈÀü¼º¿¡ ¹®Á¦ ¾ø´Â °ÍÀ¸·Î ÃÖÁ¾Áø´Ü

¡Û ¿©°´Å͹̳Π°è·ùÀå°ú È­¹°Å͹̳Π»çÀÌ Áö»óÁ¶¾÷Àåºñ¿Í È­¹° ¼ö¼ÛÂ÷·® À̵¿Åë·ÎÀÎ 
ÁöÇÏÂ÷µµ°¡ ±¸Á¶ÀûÀÎ
   ¾ÈÀü¿¡ ¾Æ¹«·± ¹®Á¦°¡ ¾ø´Â °ÍÀ¸·Î Á¶»çµÆ´Ù. 
   ÀÌ °°Àº »ç½ÇÀº °øÇ×°ø»ç°¡ Àü¹®¾÷üÀÎ ÀϺ» ¿À¸®¿£Å» ÄÁ¼³ÅÏÆ®¿¡ ÀÇ·ÚÇØ ÃÖ±Ù 
È®º¸ÇÑ Á¤¹Ð¾ÈÀüÁø´ÜÀÚ·á
   ¿¡¼­ ¹àÇôÁ³´Ù.
   ÀÌ ÀÚ·á¿¡ µû¸£¸é ÁöÇÏÂ÷µµ ¿Üº®¿¡ Â÷¼ö¿ëÀ¸·Î »ç¿ëµÈ º¥Å䳪ÀÌÆ®°¡ ¹æ¼ö¼º´ÉÀ» 
¹ßÈÖÇØ ÁöÇÏÂ÷µµÀÇ 
   ¾ÈÀü¼º¿¡´Â ¾Æ¹«·± ÀÌ»óÀÌ ¾ø´Â °ÍÀ¸·Î È®ÀεƴÙ. 
   º¥Å䳪ÀÌÆ®´Â È­»êÀç¿¡¼­ ÃßÃâÇÑ ÀÏÁ¾ÀÇ ÂûÈë ¼ººÐÀç·Î ¹°°ú ¸¸³ª¸é ÆØâÇؼ­ 
¹æ¼ö¸·À» Çü¼º ¼º´ÉÀ» 
   ¹ßÈÖÇÏ°Ô µÈ´Ù.  
   ¿À¸®¿£Å» ÄÁ¼³ÅÏÆ®´Â 8¿ùºÎÅÍ 11¿ù±îÁö ¹æ¼öÀç ¼º´É°ú ö±ÙºÎ½Ä µîÀ» Áß½ÉÀ¸·Î 
ÁöÇÏÂ÷µµÀÇ Á¾ÇÕÀûÀÎ 
   ¾ÈÀüµµ ¹× ³»±¸¼º Áø´ÜÀÛ¾÷À» ½Ç½Ã 12¿ù 13ÀÏ ÃÖÁ¾ ¿ë¿ª °á°ú¸¦ ¹ßÇ¥Çß´Ù.
   ÀÎõ°øÇ׿¡´Â È°Áַθ¦ °¡·ÎÁú·¯ ³²Ãø°ú ºÏÃø ¾çÃø¿¡ 2°³ÀÇ ÁöÇÏÂ÷µµ°¡ °Ç¼³µÆ´Ù.
   ÁöÇÏÂ÷µµ´Â ±æÀÌ 1050m, ³ôÀÌ 7.1m (ºÏÃø ÁöÇÏÂ÷µµ 7.7m), Æø 20m (ºÏÃø 
ÁöÇÏÂ÷µµ´Â °øµ¿±¸ Æ÷ÇÔ Æø 
   29m)ÀÇ 4Â÷¼± µµ·ÎÀ̸ç õÀå ºÎÀ§´Â ÃÖ°í ÁöÇÏ 7.5m, ¹Ù´ÚÃþÀº ÃÖ°í ÁöÇÏ 14.9m 
±íÀÌ¿¡ ÀÖ´Ù. 
   õÀå°ú ¹Ù´Ú ºÎÀ§ µÎ²²´Â 120cm, º®Ã¼ ºÎºÐÀº 100cm µÎ²²ÀÇ ±¸Á¶¹°·Î¼­ ÇöÁ¸ÇÏ´Â 
ÃÖ´ë Ç×°ø±âÀÎ 
   B747-400ÀÇ Áß·® 394 Å溸´Ù 200¿©ÅæÀÌ ¸¹Àº 600ÅæÀÇ Ç×°ø±â Áß·®À» ÁöÅÊÇÒ ¼ö 
ÀÖµµ·Ï ¼³°èµÆ´Ù.
   ÇöÀç ÁöÇÏÂ÷µµ °øÁ¤Àº °ÅÀÇ ¸¶¹«¸®µÈ »óÅ·Π°¡·ÎµîÀÌ Á¡µîµÅ ÀÖÀ¸¸ç °Ç¼³ ÇöÀå 
Â÷·®ÀÇ ÅëÇà·Î·Î 
   ÀÌ¿ëµÇ°í ÀÖ´Ù.   

   °øÁ¤2: ½ÅºÒµµ, ¿Õ»ê¿¡ °øÇ×°¨½Ã·¹ÀÌ´õ ¿ÜÇü ¿Ï°ø

¡Û °øÇ×°¨½Ã·¹ÀÌ´õ°¡ ÀÌ ´Þ ÃÊ °øÇ× Àα٠½ÅºÒµµ¿Í ¿Õ»ê¿¡ °¢°¢ ¿ÜÇüÀ» µå·¯³Â´Ù.
   ÇÁ¶û½ºÀÇ Thomson-CSF»ç°¡ Á¦ÀÛ, °øÇ×°ø»ç¿¡ ÀεµÇÑ ÀÌ ·¹ÀÌ´õ´Â Èò»ö ¿øÇü ·¹ÀÌ 
µ¼ ³»¿¡ ·¹ÀÌ´õ ¾ÈÅ׳ª
   ¸¦ ÀåÂø, 20¹ÌÅÍ ³ôÀÌÀÇ ±¸Á¶¹°À§¿¡ ¾ñÀº ÇüÅ·Π¼³Ä¡µÆ´Ù.  
   ÀÌ ·¹ÀÌ´õ´Â ÀÎõ°øÇ×°ú ±× ÁÖº¯ 60notical mile (¾à 110km) ³»ÀÇ  ¸ðµç Á¤±â ¹× 
ºÎÁ¤±â ¿©°´±â¿Í 
   ±º¿ë±â¸¦ ŽÁöÇÏ¿© ÀÚµ¿ÀÚ·áó¸®ÀåÄ¡(Automated Radar Terminal System)·Î °Å¸® 
¹× ¹æÀ§ÀڷḦ Á¦°øÇÏ°Ô
   µÈ´Ù. 
   °øÇ×°ø»ç´Â ³»³â 2¿ù±îÁö ÄÉÀ̺í Æ÷¼³ ¹× Àåºñ ¼³Ä¡ ÀÛ¾÷À» ¿Ï·áÇÒ ¹æħÀÌ´Ù. 
12¿ù 15ÀÏ ÇöÀç °øÁ¤Àº  
   ¾à 90%¿¡ À̸£°í ÀÖ´Ù.


News

   üũÀÎ Ä«¿îÅÍ ¹èÁ¤ ¿Ï·á

¡Û ÀÎõ±¹Á¦°øÇ× ¿©°´Å͹̳ÎÀÇ Ç×°ø»ç¿ë Ãâ±¹¼ö¼Ó üũÀÎÄ«¿îÅÍ ¹èÁ¤ÀÛ¾÷ÀÌ Áö³­ ´Þ 
¸» °ü·Ã Ç×°ø»çµéÀÇ 
   ÇÕÀÇÇÏ¿¡ ¿Ï·áµÆ´Ù.
   ±¹ÀûÇ×°ø»çÀÎ ´ëÇÑÇ×°ø°ú ¾Æ½Ã¾Æ³ª Ç×°øÀº ¿©°´Å͹̳ΠÁß¾ÓÀÇ ¼­Æí ÀÏºÎ¿Í µ¿ÆíÂÊ 
üũÀÎÄ«¿îÅÍ¿¡, 
   ¿Ü±¹Ç×°ø»ç´Â ¼­ÆíÂÊ Ã¼Å©ÀÎÄ«¿îÅÍ¿¡ °¢°¢ ¹èÄ¡µÆ´Ù.
   °øÇ×°ø»ç´Â ±¹³»¼± ¹× ±Íºó½ÇÀÌ µ¿Ãø¿¡ À§Ä¡ÇÑ Á¡À» °¨¾È ±¹³»¼± ¿©°´ÀÇ 
ȯ½ÂÆíÀǸ¦ À§ÇØ ±¹ÀûÇ×°ø»ç¸¦ 
   µ¿Ãø¿¡ ¹èÄ¡ÇÏ°í ¼­Ãø¿¡´Â ¿ÜÇ׻縦 ¹èÁ¤Çß´Ù. 
   ½Å°øÇ×Àº ¿©°´Å͹̳Π3Ãþ Ãâ¹ßÃþ¿¡ ÃÑ 11°³ÀÇ Ã¼Å©ÀÎ ¾ÆÀÏ·£µå (üũÀÎÄ«¿îÅ͸¦ 
Çѵ¥ ¸ð¾Æ ³õÀº °÷À¸·Î 
   1°³ÀÇ Ã¼Å©ÀÎ ¾ÆÀÏ·£µå´ç 36°³¾¿ÀÇ Ã¼Å©ÀÎÄ«¿îÅÍ°¡ ¼³Ä¡µÊ)¸¦ ¼³Ä¡ÇÑ´Ù. ÀÌÁß 
¾çÃø ³¡ 2°³¾¿À» Á¦¿ÜÇÑ 
   7°³ üũÀÎ ¾ÆÀÏ·£µå¿¡ ¼³Ä¡µÈ 252°³ üũÀÎ Ä«¿îÅ͸¦ 2001³âºÎÅÍ ¿î¿µÇÑ´Ù. 
   ±¹³»¼±¿ë üũÀÎÄ«¿îÅͷδ µ¿ÆíÂÊ °¡Àå ³¡ ºÎºÐ¿¡ À§Ä¡ÇÑ Ã¼Å©ÀÎ ¾ÆÀÏ·£µåÀÇ ÇÑ 
ºÎºÐÀÌ ÀÌ¿ëµÈ´Ù.  
   ´ëÇÑÇ×°øÀº 

Problemas compilando el authsrv del TIS firewall toolkit

1999-12-20 Thread Han Solo
Hola a todos/as

Me he bajado el juego de herramientas TIS para montar un cortafuegos, y
todo ha ido bien, salvo la parte del authsrv. Compilar se compila todo
sin problemas, pero a la hora de compilar el authsrv da el siguiente
mensaje:

#make clean  make
rm -f ../libauth.a *.o authmgr authsrv authdump authload snkkey
gcc -I.. -g -DLINUX  -c cliio.c
ar rcv ../libauth.a cliio.o
a - cliio.o
ranlib ../libauth.a
gcc -I.. -g -DLINUX   -c authmgr.c -o authmgr.o
gcc -g -static -o authmgr authmgr.o ../libauth.a ../libfwall.a  
gcc -I.. -g -DLINUX   -c authsrv.c -o authsrv.o
gcc -I.. -g -DLINUX   -c proto.c
gcc -I.. -g -DLINUX   -c db.c -o db.o
gcc -I.. -g -DLINUX   -c pass.c -o pass.o
gcc -I.. -g -DLINUX  -c srvio.c
gcc -g -static -o authsrv authsrv.o proto.o db.o pass.o srvio.o
../libauth.a ../libfwall.a-ldb 
pass.o: In function `passverify':
/home/carlosv/ftp.tislabs.com/pub/firewalls/toolkit/dist/fwtk-9ab166/fwtk/auth/pass.c:39:
undefined reference to `crypt'
pass.o: In function `passset':
/home/carlosv/ftp.tislabs.com/pub/firewalls/toolkit/dist/fwtk-9ab166/fwtk/auth/pass.c:70:
undefined reference to `crypt'
collect2: ld returned 1 exit status
make: *** [authsrv] Error 1
 

...y  aquí se queda

Os mando el código, a ver si se os ocurre algo. He revisado los
makefiles, y está todo en orden.

/*-
 * Copyright (c) 1993, Trusted Information Systems, Incorporated
 * All rights reserved.
 *
 * Redistribution and use are governed by the terms detailed in the
 * license document (LICENSE) included with the toolkit.
 */


/*
 *  Author: Marcus J. Ranum, Trusted Information Systems, Inc.
 */
static  charRcsId[] = $Header:
/usr/home/rick/fwtk2.0/fwtk/auth/RCS/pass.c
#includetime.h
#includefirewall.h
#includeauth.h

#ifdef  AUTHPROTO_PASSWORD

extern  char*crypt();

passverify(user,pass,ap,rbuf)
char*user;
char*pass;
Auth*ap;
char*rbuf;
{
charlclpass[10];

if(ap-pw[0] == '\0') {
strcpy(rbuf,ok);
return(0);
}

if(pass == (char *)0)
goto reject;
strncpy(lclpass, pass, 8);
lclpass[8] = '\0';

if(!strcmp(crypt(lclpass,ap-pw),ap-pw)) {
strcpy(rbuf,ok);
return(0);
}
reject:   
strcpy(rbuf,Permission Denied.);
return(1);
}



static unsigned char itoa64[] = /* 0 ... 63 = ascii - 64 */
   
./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz;

passset(user,pass,ap,rbuf)
char*user;
char*pass;
Auth*ap;
char*rbuf;
{
if(pass == (char *)0)
ap-pw[0] = '\0';
else {
time_t  t;
charsalt[2];

time(t);
salt[0] = itoa64[getpid()  0x3f];
salt[1] = itoa64[(int)t  0x3f];
if(strlen(pass)  7)
pass[8] = '\0';
strncpy(ap-pw,crypt(pass,salt),AUTH_PWSIZ);
}
if(auth_dbputu(user,ap) == 0)
sprintf(rbuf,Password for %s changed.,user);
else
strcpy(rbuf,Database error.);
return(0);
}
#endif

Un saludo a todos
P.D. A los de la lista debian una disculpa; esto es un poco offtopic,
pero es que ando muy desdesperado


Re: Matrox G200 y X-Window

1999-12-18 Thread Han Solo
On Thu, Dec 16, 1999 at 07:42:27PM +0100, Antonio A. Rivas Ojanguren wrote:
 Salu2
 
 Busco a algún listero que tenga las X configuradas para la Matrox
 G200 AGP y que pueda mandarme una copia de su XF86Config.
 Ya me he leído todo lo que he encontrado sobre la configuración de
 las X y no logro más que un raquítico 320x204 (¡!) tanto con el
 XF86Setup como con el xf86config, incluso con los drivers actualizados.
 Ya sólo me queda editar a mano el /etc/X11/XF86Config.
 

Pues yo mismo.

La G200 AGP no da nungún problema. Yo la tengo funcionando a 1024x768x32 a
86Hz. Dices que tienes la última versión de las X, así que no entiendo que
no venga en la lista, porque además usa el servidor SVGA. Yo la tengo
funcionando en una slink con las xfree 3.3.3.1 pero el servidor X que
necesitas es el de la 3.3.3.2 (basta con cambiar el binario). Yo creo que
hace tiempo que anda por ahí la versión 3.3.3.2 en paquetes para slink. Si
no, pilla las fuentes de alguna revista y actualizate el servidor a pelo
(tampoco es tan difícil).

De todas formas, te mando mi configuración, pero ojito con los valores del
monitor, no vayas a fundir el tuyo. El mío es un Hitachi CM630ET.

Ahora que me acuerdo, mi tarjeta es el modelo SGRAM, mucho más raro que el
SDRAM que se vendió tanto, y creo que tiene algún parámetro extra. Revisa
bien la configuración.

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.

# File generated by xf86config.

#
# Copyright (c) 1995 by The XFree86 Project, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the Software),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
# THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
# OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# 
# Except as contained in this notice, the name of the XFree86 Project shall
# not be used in advertising or otherwise to promote the sale, use or other
# dealings in this Software without prior written authorization from the
# XFree86 Project.
#

# **
# Refer to the XF86Config(4/5) man page for details about the format of 
# this file.
# **

# **
# Files section.  This allows default font and rgb paths to be set
# **

Section Files

# The location of the RGB database.  Note, this is the name of the
# file minus the extension (like .txt or .db).  There is normally
# no need to change the default.

RgbPath /usr/X11R6/lib/X11/rgb

# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)
# 
# If you don't have a floating point coprocessor and emacs, Mosaic or other
# programs take long to start up, try moving the Type1 and Speedo directory
# to the end of this list (or comment them out).
# 

FontPath   /usr/X11R6/lib/X11/fonts/local/
FontPath   /usr/X11R6/lib/X11/fonts/misc/
FontPath   /usr/X11R6/lib/X11/fonts/75dpi/:unscaled
FontPath   /usr/X11R6/lib/X11/fonts/100dpi/:unscaled
FontPath   /usr/X11R6/lib/X11/fonts/Type1/
FontPath   /usr/X11R6/lib/X11/fonts/Speedo/
FontPath   /usr/X11R6/lib/X11/fonts/75dpi/
FontPath   /usr/X11R6/lib/X11/fonts/100dpi/

# For OSs that support Dynamically loaded modules, ModulePath can be
# used to set a search path for the modules.  This is currently supported
# for Linux ELF, FreeBSD 2.x and NetBSD 1.x.  The default path is shown
# here.

#ModulePath /usr/X11R6/lib/modules

EndSection

# **
# Module section -- this is an optional section which is used to specify
# which dynamically loadable modules to load.  Dynamically loadable
# modules are currently supported only for Linux ELF, FreeBSD 2.x
# and NetBSD 1.x.  Currently

Re: FTP de Linux Cutre?

1999-12-02 Thread Han Solo
On Wed, Dec 01, 1999 at 12:40:42PM +0100, Ramiro Alba wrote:
 Luis Calero wrote:
  
 Otra opcion es lftp. Va muy bien.
 
A mi me encata el cliente ftp del midnight commander, aunque no es modo
línea de comandos.

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgptljZINu2cI.pgp
Description: PGP signature


Re: AUTOCAD y MATHCAD

1999-12-01 Thread Han Solo
On Tue, Nov 30, 1999 at 06:29:39PM -0300, Andrés A. Rocchia wrote:
 
  Existe algún programa para Linux de CAD similar al AUTOCAD y
  que genere archivos compatibles con AUTOCAD??
  Lo mismo pregunto del programa MATHCAD. Espero que existan porque
  seria mi mudanza definitiva del WINDOWS.
 
Para sustituir mathcad no sé, pero en el asunto del CAD tienes microstation.
Microstation es un programa coj* donde los haya, mucho mejor que el
autocad; más sencillo, más potente, más rápido, más ligero... En versión
estudiante cuesta 13.000 pesetas, la versión completa + módulo (no recuerdo
si era el de ingenieria o de diseño mecánico). Viene también con dos
entornos de desarrollo y la documentación completa en formato pdf. Realmente
merece la pena. Yo tengo la versión 95, pero debe hebaer versiones más
recientes. El distribuidor en Espana (por lo menos en Madrid) es Aula
Técnica Ingenieros (lo siento, no tengo el teléfono ni la dirección).
Además, importa y exporta perfectamente ficheros de autocad.

No se lo qué hace exactamente el Mathcad, pero un paquete matemático muy
bueno es el Maple V.

Siento lo del crosspost; saludos a todas las listas desde
debian-user-spanish
-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgp3kZ51FYCBW.pgp
Description: PGP signature


Re: No puedo con tar

1999-11-30 Thread Han Solo
On Mon, Nov 29, 1999 at 06:25:10PM +0100, Barbwired wrote:
 La página de manual es infumable, /usr/doc/tar no ayuda mucho, y la info es
 tan pesada de navegar (llamadme vaga, lo merezco).
 ¿Alguien ha visto algún tutorial sencillito para empezar a hacer cositas
 más avanzadas que empaquetar y desmpaquetar?
 
 Un saludo!

Un par de trucos que tenía por ahí guardados.

Mover directorios enteros entre sistemas de ficheros (muy útil cuando se
cambia el disco duro). Del mismísimo Alan Cox:

(cd /origen/directorio; tar cf - . ) | (cd /dest/directorio; tar xvfp -)

al que yo simplificaría como

tar cf - /directorio/a/copiar |tar xvpf - 

que copia en el directorio actual. 

Hacer copias de seguridad multivolumen:

tar czvfM /dev/fd0 /directorio/a/copiar

y para rehacer la copia:

tar xzvfM /dev/fd0

Tiene el inconveniente de que si se hace un ls del disco no muestra lo que
tiene. Creo que es porque escribe en modo raw, pero no estoy seguro; no
conozco tanto (ni de lejos) los sistemas UNIX como para entrar en las
disqisiciones entre los dispositivos de bloques y los de caracteres, y si
linux puede manejar o no un sistema de caracteres. Que algún gurú nos
ilumine el camino. En cualquier caso, puede ser muy útil para copias en
cinta.

De todas maneras, a mí, la página man de tar me parece bastante clara, las
hay mucho peores.
-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgps6qGK5eVrq.pgp
Description: PGP signature


Inchon International Airport Information

1999-11-22 Thread han
To whom it may concern
  
 Please refer to the attached news information for Inchon international Airport 
in Korea. This news letter(attached file) should be delivered to personnel who 
are related to airport business and are interested in our facilities/services.
 If this is mistakenly delivered to you or you have no further interest, please 
inform  No in subject. We will delete your address out of our list.
  
Best Regards.
Inchon International Airport
 
 인천 국제공항 홍보부 입니다.
공항관계자 또는 당사프로젝트에 관심을 표명한 분들께 보내는 News Letter(유첨file)입니다. 혹시 귀하께 잘못전달되었거나, 더이상 
관심이 없다면 부디 제목란에 No 라고 하시어 회신주시기 바랍니다.
  
 감사합니다.
인천 국제공항 홍보부  
 
IIAC Internet Newsletter

 Issued on Nov. .20, 1999 (Vol No. 3) 

Inchon International Airport (IIAC) periodically issues an Internet 
newsletter in both Korean and English to report on the progress of the 
construction state, the start-up   commissioning schedule and operation 
readiness.   IIAC plans to   forward the newsletter to airlines, international 
aviation organizations, major airports, the press and world investment 
companies at home and abroad via e-mail on the 20th of every month. 

IIA Project Progress 

-   Inchon International Airport, where Korea's 21st century is getting ready 
with aiming aviation-centered new life value, has already emerged from a huge 
flat tract of land  and its opening is approaching with big strides.  Though 
weather gets chilly, nearly 13,000 workers who are unmindful of holidays are 
working with sweat running down in beads. Subsequently, the new IIA will become 
a vital symbol of Korean pride with reflection of promising future.
 
IIA has favorably reached 82.8% progress in the end of last October. Most of 
the facilities of  the new airport, except of Runway 2 and Transportation  
Center, will be completed  by  the end of June  2000. The IIA aims to open in 
the year 2001 following overall start-up and commissioning from July to 
December of 2000. The IIA construction is in smooth progress, as of the end of 
last October, according to the project schedule. Passenger Terminal has reached 
75.6%, runway 81.4%, Transportation Center 42.2%, and airport auxiliary 
facilities (including fueling facility, aircraft hangar maintenance and 
catering facilities) 75.4% and Airport Expressway 87% of completion 
respectively. Airport Integrated Communication Center has been already 
completed. Now the installation of the system inside the building is in full 
swing.  
The full operation of TBTL (Temporary Benchmark Test 
Laboratory) is boosting the nerve backbone system installation, called IICS 
(Integrated Information and Communication System) Having completed the tests 
from TBTL for 32 systems including Baggage Handling System (BHS), these systems 
have been installed or are in progress.  The remaining 9 systems including 
Integrated Traffic Control System will be tested by the end of next February.   
 As for IICS, it has reached 69.5% completion as of the end 
 of last October. IIA's separate start-up and commissioning for the individual  
  facility is very active. Beginning of the BHS last July, the gas static 
pressure tube in the co-generation power plant are set to start-up and 
commissioning on last August. Also the elevator/escalator/moving sidewalk of 
the vertical transport systems at Passenger Terminal has begun the trial on 
last October.
The individual start-up  commissioning for elevators in the Control Tower has 
been completed at the end of last October.  From the coming January, the 
airfield lighting cable and tower will embark on the start-up  commissioning. 
In succession from February the gray water system, the automated communication 
system, integrated safety/security system and air control communication system 
will start.

Status of Operation Readiness 

The Final Stage for Negotiation of Specialized Marketing Consultancy Selection

-   A specialized marketing consultancy will soon be selected for marketing 
Inchon International Airport. 
IIAC selected a consortium consists of internationally recognized specialists 
as an initial consultancy for negotiating the final contract. 
The contract seems to be concluded in the end of this month if the negotiation 
with   a preferred proposer is successful.
As for the marketing consultancy, IIAC addressed the international competitive 
bid for selection of qualified world specialist and selected a successful 
Proposer through combined technical and price evaluation. The contractor 
for the marketing consultancy services will implement a marketing plan from the 
date of Contract Award to December 31, 2001. The expected marketing consultancy 
services budget is set at roughly 8 billion won (6.6 million dollars). The 
selected agency will attract major overseas airlines adraw foreign capitals for 
the new airport, and undertake a strategy to differentiate with other airports 
by providing excellent passenger/cargo 

¿Imágenes de non-free/non-us?

1999-11-15 Thread Han Solo
Hola a todos.

¿alguien sabe de algún sitio del cual bajarse las imágenes ISO de la parte de
non-free y/o non-us? Para la Debian Hamm los de Linux Actual se marcaron el
detalle de meterlas en un CD, pero con Slink hay que bajárselo de Internet,
y ciertas cosas son un poco grandes.
-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpBxBU9dLyJ5.pgp
Description: PGP signature


apt-multicd desaparecido en combate

1999-11-15 Thread Han Solo
Hola a todos.

Como muchos en esta lista, yo tengo una Debian Slink de los CD's de Linux
Actual (la Citius, vaya), actualizada de una Hamm. Sé que durante la
actualización tuve el método apt-multicd para el dselect, pero en algún
momento dado desapareció, no se si por alguna desafortunada actuación mía
(lo más probable) o porque haya desaparecido en alguna actualización de
algún paquete. El caso es que ahora sólo tengo el método apt-cdrom, que sólo
mantiene la lista de paquetes de un CD, con lo que tengo la lista del
dselect hecha un cristo. No tengo problemas para instalar paquetes a mano
con el dpkg, pero tengo que andar buscándolos primero por los cederrones
(primera y última vez que empleo esta palabra) y ya me empieza a aburrir.
Además, el día menos pensado me encuentro un paquete que tiene dependencias
del otro disco y la liamos.

¿Existe alguna manera de recuperar el método apt-multicd? Os pongo los
paquetes instalados que pueden tener algo que ver.

ii  apt 0.3.3.1Advanced front-end for dpkg
ii  dpkg1.4.0.34.1 Package maintenance system for Debian
Linux
ii  dpkg-dev1.4.0.34.1 Package building tools for Debian Linux
ii  dpkg-ftp1.4.10 Ftp method for dselect.
ii  dpkg-http   0.19   Multiple URL access method for dselect
ii  dpkg-mountable  0.8Enhanced access method for dselect
ii  dpkg-multicd0.14.1 Installation methods for multiple binary
CDs
ii  dpkg-perl   0.1-2hamm1 Perl interface modules for dpkg
ii  dpkg-repack 0.20   puts an unpacked .deb file back together

 dselect --versión
Debian Linux select', herramienta de gestión de paquetes.
Versión 1.4.0.34.1 (i386 elf).  Copyright (C) 1994-1996 Ian Jackson. Ésto es
software libre; lea la licencia pública general GNU versión 2 o posterior
para las condiciones de copia. No se ofrece ninguna ganantia. Use dselect
--licence para más detalles.

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.



pgpY0U0uwSMgJ.pgp
Description: PGP signature


Re: Problema con la Debian policy

1999-11-03 Thread Han Solo
On Tue, Nov 02, 1999 at 10:13:00AM +0100, Agustín Martín Domingo wrote:
 Han Solo wrote:
  
  Hola a todos.
  
  Necesito imprimir la Debian policy, y estoy intentando hacerlo a partir del
  fichero policy.sgml, pero me está dando mucha guerra.
  
  Lo primero que he hecho es intentar convertirlo a LaTeX con sgml2latex
 
 ¿Has probado con debiandoc2latex? Es posible que ese documento use un
 DTD distinto. Tienes debiandoc2latex en el paquete debiandoc-sgml
 

Pue esra eso, pero he de hacer una puntualización:

Es necesario tener -al menos para este fichero- un archivo adjunto llamado
version.ent, de la forma

 cat version.ent 
!entity version 2.6.0
!entity date11 February, 1999

...y pregunto yo, ¿por qué demonios no meten la fecha dentro del sgml
original?¿por qué la gente de debian se tiene que inventar un DTD qe se sale
tanto de la norma general?¿la capa de superman es realmente necesaria?

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.


Re: Problema con la Debian policy

1999-11-02 Thread Han Solo
On Mon, Nov 01, 1999 at 12:14:10PM +0100, Paco Brufal wrote:

   ¿Tienes todos los paquetes necesarios instalados? Yo tengo estos y
 siempre me ha funcionado bien:
 
 ii  sgml-base1.01utilities to maintain the SGML catalog file
 ii  sgml-data0.13Data files for SGML programs
 ii  sgml-tools   1.0.9-1 converters for the linuxdoc DTD (and others)
 ii  sgmlspm  1.03ii-8Perl modules for processing SGML parser outp
 

Tengo instalados exactamente los mismos, incluso las mismas versiones

   Para hacer ps y dvi necesitas ademas tetex-base y tetex-bin
 (opcionalmente tetex-extra). Y si eso también te instalas el
 
 ii  sp  1.3.3-1.2.1-9  James Clark's SGML parsing tools
 

La única diferencia es que yo tengo la versión 1.3.3-1.2.1-4

De todas formas, la conversión desde sgml siempre me ha funcionado, este el
primero que me da problemas serios.

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.


¿No funcionan los acentos en el Netscape de Potato?

1999-10-31 Thread Han Solo
Pue eso, en una potato que tengo en el trabajo, he instalado El Communicator
4.61 y resulta que ahora no funcionan los acentos. Antes teía el 4.08 y sí
que funcionaban, pero lo he actualizado porque fallaba más que una escopeta
de feria (no el clásico problema del java/javascript, sino al conectarse al
servidor para bajar el correo cascaba miserablemente). Hasta donde yo sabía,
a partir de la versión 4.06 los acentos funcionaban perfectamente, pero
ahora parece que algo ha cambiado. ¿Hay que retocar algo en la
configuración, o es que directamente no funcionan los acentos en esa
versión?

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.


Problema con la Debian policy

1999-10-31 Thread Han Solo
Hola a todos.

Necesito imprimir la Debian policy, y estoy intentando hacerlo a partir del
fichero policy.sgml, pero me está dando mucha guerra.

Lo primero que he hecho es intentar convertirlo a LaTeX con sgml2latex
policy.sgml, y la primera respuesta es que no encuentra el fichero
/usr/lib/sgml-tools/dist/debiandoc/latex2e/mapping. Explorando, descubro que
es directorio /usr/lib/sgml-tools/dist/debiandoc/ debe ser un enlace a
/usr/lib/sgml-tools/dist/sgmltool (viendo que linuxdoc es un enlace a ese
directorio). ¿un pequeño bug tal vez? Bueno, eso no tiene mayor importancia.

Intento convertirlo a LaTeX por segunda vez y me da lo siguientes errores:

$ sgml2latex policy.sgml 
Processing file policy.sgml
/usr/bin/nsgmls:OSFD0:4:45:E: cannot find version.ent; tried
version.ent, /usr/lib/sgml/version.ent, version.ent, ./version.ent
/usr/bin/nsgmls:OSFD0:42:24:E: general entity version not defined and no
default entity
/usr/bin/nsgmls:OSFD0:42:35:E: general entity date not defined and no
default entity
parse_data: no entity map for ©'
parse_data: no entity map for '
parse_data: no entity map for '
parse_data: no entity map for '

no obstante crea el fichero policy.tex. A partir de aquí comienza el
calvario. Al procesar el policy.tex para crear el dvi y el ps, se queja de
muchos errores de sintaxis. A las bravas, retoco el archivo tex moviendo de
sitio el comando \begin{document} y consigo que lo procese no sin otro buen
montón de errores, todos referidos a las direcciones de e-mail que define en
la cabecera y a las urls. Al final, obtengo el policy.dvi, pero faltan todas
las urls y las direcciones de e-mail, y en muchos sitios aparecen caracteres
que no deberían, como por ejemplo 

/usr/doc/{}package-name{}/copyright (see ?? () for details). 

De momento me vale, pero me gustaría saber por qué falla. Pasan cosas
parecidas si convierto a html.

Naturalmente tengo el paquete debiandoc-sgml instalado, y no creo que sea
problema de LaTeX ni se sgml, pues he convertido otros *.sgml sin problemas.
Por cierto, mi distribución es slink.
-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.


Inchon International Airport Information

1999-10-21 Thread han
To whom it may concern
   
Please refer to the attached news information for Inchon international Airport 
in Korea. This news letter(attached file) should be delivered to personnel who 
are related to airport business and are interested in our facilities/services.
If this is mistakenly delivered to you or you have no further interest, please 
inform  No in subject. We will delete your address out of our list.
   
Best Regards.
Inchon International Airport
   
인천 국제공항 홍보부 입니다.
공항관계자 또는 당사프로젝트에 관심을 표명한 분들께 보내는 News Letter(유첨file)입니다. 혹시 귀하께 잘못전달되었거나, 더이상 
관심이 없다면 부디 제목란에 No 라고 하시어 회신주시기 바랍니다.
   
감사합니다.
인천 국제공항 홍보부  
   
  
 

IIAC Internet Newsletter
Issued on Oct.20, 1999(Vol No. 2)

 Inchon International Airport (IIAC) periodically issues an English-Korean 
Internet newsletter 
to report on the progress of the construction state, the start-up  
commissioning schedule 
and operation readiness and is supposed to be forwarded to airlines, 
allied international aviation organizations, major airports, 
the press and world investment companies at home and overseas via e-mail 
on the 20th of every month.


IIA Project Progress

- Aiming to complete 89.1 percent of the project by the end of this year, 
IIA has favorably reached 80.1 percent progress, as of September.
As for core facilities, the passenger terminal has reached 70.7 percent 
completion 
and the runways construction showed 78.5 percent progress as of September.
In addition, 40.6 percent of the transportation center under upper structure 
works 
for foundation had been completed and 71.3 percent of other annexed facilities 
had been installed as of September.
Being scheduled to be completed in Nov. 2000, the 40.2 km long expressway 
between Seoul 
and the new airport showed 84.4 percent of completion.
The airport integrated communication center, which has been completed earlier 
this month, 
will be installed Integrated Information Communications Systems till next March 
and 
the fully built control tower is going to be equipped with navigational systems 
from next month.
Moreover the construction of facilities such as elevators and escalators at 
passenger terminal has reached 67 percent completion and the piping work for 
air-conditioning, heating, gas supply, fire extinguishing and waterworks has 
reached 
85 percent progress as of September.



Start-up  Commissioning and TBTL

- Several systems have been under start-up  commissioning separately since 
last July. 
The trial run of some transportation facilities such as escalators has begun 
early October.
Cable and the lighting tower of airfield lighting system are going to be under 
pilot operations
from next January and gray water system, computerized communication system, 
integrated security
system and air traffic control system from February, 2000.
 IIAC intends to complete the separated and systematic pilot operations by 
early next June 
and will start the integrated test for the whole airport facilities and systems 
in July, 2000.

- IIAC is currently under negotiations to select foreign experts who have 
know-how upon airport 
 operation in order to support the successful completion of trial operations.
 In reaching an agreement, technical specialists of the assigned company will 
be committed 
 to the field next month at the latest and boost the testing works.
 IIAC will draw up the comprehensive opening program for the new airport in 
cooperation 
 with overseas experts (the standard processes for pilot operations, the 
administration plan 
 and the maintenance  repair process will be prepared as well.
 The chosen overseas experts are going to support the works till the opening 
and 
 the service charge is estimated as approximately 9 billion won (7.5 million 
dollars).
 IIAC published its public notice for international competitive bids last July.

- The full operation of TBTL (Temporary Benchmark Test Laboratory) is boosting 
the nerve system 
  installation, called IICS (Integrated Information and Communication System).
  TBTL, established over the airport areas last April, checks all possible 
errors and faults 
  in the interconnected system operation in advance of the field installation 
of individual 
  sub systems through its downsized basic communication networks including the 
airport operation 
  database, the prototype server of comprehensive management and the 
communication network 
  operation server.
  The separated tests for the individual systems and local system tests between 
each sub system 
  and IICS will be conducted until the end of this month. Upon completion, the 
interconnected 
  operation test between several sub systems and IICS will be carried until 
next April.
  TBTL is expected to prevent unnecessary time and manpower consumption and to 
minimize 
  process drastically by clearing possible problems in actual operations in 
advance of 
  sub system installations.
  The system installation had reached 67 percent progress as of September.


Operation 

DOS problemas con DOSemu

1999-10-20 Thread Han Solo
Hola a todos.

TEngo el Dosemu funcionando en una potato, con resultados bastante
aceptables, pero tengo dos cosas que ho he conseguido que funcionen. Os
cuento.

La primera es que necesito conexión con una red Novell. Según la
documentación, basta con ejecutar el programa netx.exe (que por cierto, no
viene con debian). El caso es que funciona, pero a medias. Me explico. El
netx sólo consigue conectar con el servidor novell si el dosemu se ha
iniciado como root, si lo ejecuta cualquier usuario, no es capaz de
encontrar ningún servidor. La doc del dosemu no dice nada al respecto, y no
acabo de ver la solución. Lo único que se me ha ocurrido es instalar sudo,
pero con el dosemu me parece mala política, pues puede suponer un agujero de
seguridad tremendo (miedo me da pensar que a alguien se le ocurra trastear
con lredir...).

El otro problema/duda es con el teclado. He conseguido que funcionen ñ's,
acentos y demás parafernalia, pero tengo problemas con las combinaciones de
teclas. En las X las combinaciones CTRL+tecla, ALT+tecla... tienen
funciones definidas, lo que las imposibita para programas como el WP5.1
(¿alguno se acuerda de él?). Creo que se puede remapear el teclado con el
dosemu, pero no se cómo. En la consola es todavía peor ¿A alguien se le
ocurre algo?

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.


Re: pnp

1999-10-20 Thread Han Solo
On Tue, Oct 19, 1999 at 09:56:02AM +0200, CoMa wrote:
 Hola, podría alguien darme una aclaración sobre cómo reconocer un dispositivo 
 pnp bajo Debian?. He leído sobre las isapnptools y también sé que los kernels 
 2.2.* vienen con una opción al respecto (pero no los uso), pero no me queda 
 claro cuál hay que usar y como.

Si el dispositivo PnP es de tipo isa, entonces tienes que recurrir a las
isapnptools. Si es de tipo pci, no se decirte, no he tenido todavía contacto
con ninguno. En la página de Santiago Romero (conocido de muchos por aquí),
en la sección de linux, hay un post mio titulado Cómo configurar
dispositivos pnp con isapnptools (o algo así) Describe cómo hacer funcionar
un modem isa pnp, pero todos los dispodisivos se configuran igual. Yo tengo
el modem y la tarjeta de red.

Si te lías, ya sabes
-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.


Re: Programas para impresoras HP

1999-10-14 Thread Han Solo
On Wed, Oct 13, 1999 at 10:25:32AM +, Manuel Jerez Cßrdenes wrote:
   Gracias por la información Manuel pero ¿dónde puedo encontrar ese 
 programa?

Hola.

Pues aunque todos te han recomendado el magicfilter, yo que soy muy vago (y
mantengo ciertas manías de mi época de RedHat) te recomendaría el
Printtool+RHS printifilters, el sistema de configuración de impresoras de
RedHat. Te puedes bajar el paquete convertido de la página de Agustín Martín
Domingo http://corbu.aq.upm.es/~agmartin o bien el paquete nativo para
debian, que está desde hace poco en potato. Ambos funicionan perfectamente.

-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.


  1   2   >