Re: filtering processes

2007-06-19 Thread Jhair Tocancipa Triana
pol  writes:

 I would like to display running processes together with their time elapsed
 since they were launched (real time, not the time spent by the cpu) and
 sort them with time. 

 Any hints?

ps -eo pid,comm,args,etime

-- 
--Jhair


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



Re: rampant offtopic and offensive posts to debian-user

2007-05-19 Thread Jhair Tocancipa Triana
Joey Hess writes:

 I feel that an appropriate policy for -user would be that when offtopic
 threads exceed a few messages, the people posting to the thread should
 take it to private email. If offtopic threads get much larger than that,
 people who have posted large portions of the thread should be reminded
 to take it to private mail. If they refuse to do so they should lose
 their posting priveliges to the mailing list, either temporarily or
 permanantly. I think that this policy should be applied retroactively to
 at least the currently running OT threads unless the people posting to
 them promise to stop dominating -user by volume.

Thanks, I agree this would be a sane policy for debian-user. Hopefully
it gets implemented soon, or at least, the excessively vocal offtopic
posters learn to autoregulate themselves.

-- 
--Jhair


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



Re: can you recommend any open source presentation tool?

2007-05-19 Thread Jhair Tocancipa Triana
Serena Cantor writes:

 Which software is Linux's equivalence of M$'s PowerPoint?

I would recommend foiltex + pdflatex.

-- 
--Jhair


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



Re: Is Boo compiler broken?

2007-04-14 Thread Jhair Tocancipa Triana
Eugene K writes:

 Is the boo compiler/mono runtime usable at all in its current state?
 If yes, what am I doing wrong? I installed boo in my fresh etch with

Works for me,

$ pwd
/usr/share/doc/boo/examples

$ booi say.boo
Your name, pls: test
- Hello, test!

HTH,

-- 
-- Jhair


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



Re: Is there a C# for Debian-Etch?

2007-04-07 Thread Jhair Tocancipa Triana
Dennis G Wicks writes:

 I was trying to install a package, Gnome-RDP, and it popped
 up a message that it can't find c#.

 Is there one? If so where? Can't find one on debian.org.

Debian etch incudes mono-gmcs which is a C# compiler. See

http://packages.debian.org/cgi-bin/search_packages.pl?keywords=mono-gmcssearchon=namessubword=1version=allrelease=all

HTH,

-- 
--Jhair


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



Re: Debian User List

2007-03-31 Thread Jhair Tocancipa Triana
Kamaraju S Kusumanchi writes:

 David Baron wrote:
 Most recently, how much of the heavy traffic on this list has had anything
 to do with Debian? With Linux? With computers?
 
 The price of bread, love or hate Wallmart or Sponge-Bob, Ubuntu or Dell
 (ok U is a Linux distro and Dell makes computers, but...) Endless threads
 filling my mailbox with irrelevance.
 

 Actually, I do not mind the discussion about Ubuntu and Dell. We can learn a
 lot from Ubuntu folks (or any other distribution's users for that matter).
 I think the discussion about Dell computers (and hardware in general) is
 very helpful for Debian users. But it is the other topics you highlighted
 that get on my nerves...

I agree that having to read political rants on a technical mailing
list is quite annoying for some of us.

In my case a well-tuned killfile handles most of this problem ;-).

-- 
-- Jhair


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



Re: pthread has error on Etch

2007-03-25 Thread Jhair Tocancipa Triana
Mohsen Pahlevanzadeh writes:

 void *task1(int *counter)
 {
 while(*counter  5 ){
 printf(task1 count: %d\n,*counter);
 (*counter)++;
 }//end of while

You are missing a parenthesis here.

 void cleanup(int counter1,int counter2)
 {
 printf(Total iterations: %d\n,counter1+counter2);
 }//end of cleanup function

 But i receive following error:

With the parenthesis mentioned above added compiles fine in Debian
unstable.

HTH,

-- 
-- Jhair


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



Re: man vs info

2007-03-14 Thread Jhair Tocancipa Triana
Mike McClain writes:

 In man pages written by the FSF I see this advisory:
 SEE ALSO
The full documentation for sync is maintained as a Texinfo manual. If
the info and sync programs are properly installed  at  your site, the
command
   info coreutils sync
should give you access to the complete manual.

 which seems to imply that the man page does not contain the 'complete manual'.

 Every time I've gone to the info page, it has contained the same information
 though sometimes broken into smaller chunks it's all been there.

 Has anyone seen am example where there was any more information in the info
 pages than the man pages?

Yes, emacs.

-- 
-- Jhair


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



Re: Readable Bash Primer

2007-03-10 Thread Jhair Tocancipa Triana
David Baron writes:

 Anything on line. The man is unreadable.

http://tldp.org/LDP/abs/html/

HTH,

-- 
-- Jhair


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



Re: core dumps

2007-03-10 Thread Jhair Tocancipa Triana
Cédric Lucantis writes:

 Hi,
 I'd like to know how to find which program produced a particular core dump 
 file, any idea?

,
| (debian-unstable)[EMAIL PROTECTED]:~$ ulimit -c unlimited
| 
| (debian-unstable)[EMAIL PROTECTED]:~$ echo 
| #include stdio.h
| 
| int main ()
| {
|   char * foo = 0;
|   *foo = 'bar';
| 
|   return 0;
| }
| 
|  | gcc -xc -o baz -
| 
| (debian-unstable)[EMAIL PROTECTED]:~$ ./baz 
| Segmentation fault (core dumped)
| 
| (debian-unstable)[EMAIL PROTECTED]:~$ gdb -batch -c ./core | grep -i generated
| Core was generated by `./baz'.
`

HTH,

-- 
-- Jhair


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



Re: Emacs key binding problem on debian testing.

2007-03-07 Thread Jhair Tocancipa Triana
r clayton writes:

 I'm runining emacs
   GNU Emacs 21.4.1 (i486-pc-linux-gnu, X toolkit, Xaw3d scroll bars) of
   2007-01-04 on saens, modified by Debian 

 on a debian testing sytem

   $ uname -a
   Linux UlanBator 2.6.17-2-686 #1 SMP Wed Sep 13 16:34:10 UTC 2006 i686
   GNU/Linux

   $

 updated weekly.  These commands

   (define-key c-mode-base-map \C-cp 'insert-c-procedure-skeleton)
   (define-key c-mode-base-map \C-ci 'insert-include-statement)

 but the response to ctrl-i is a bell and the response to help-key ctrl-i is

   C-c i is undefined

 ctrl-p has the same problem.  Everything works as expected on other emacsen

   GNU Emacs 21.4.1 (i386-redhat-linux-gnu, X toolkit, Xaw3d scroll bars) of
   2006-03-07 on hs20-bc1-6.build.redhat.com

   GNU Emacs 21.4.1 (i386-unknown-openbsd4.0, X toolkit) of 2006-09-01 on
   i386.ports.openbsd.org

 with the same .el files, and it used to work on debian testing too.  What is
 the procedure for getting it to work again?

I don't have a testing box at hand, but on an unstable box[1],
evaluating

  (define-key c-mode-base-map \C-cp 'insert-c-procedure-skeleton)
  (define-key c-mode-base-map \C-ci 'insert-include-statement)

in a C buffer, yields to the following results:

C-h k Ctrl-C-p
= describe-key: Symbol's function definition is void: 
insert-c-procedure-skeleton

and

C-h k Ctrl-C-i
= describe-key: Symbol's function definition is void: insert-include-statement

Which is what I would expect.

Have you tested with emacs -q to be sure your local .emacs is not
messing things around?

HTH,

__ 
[1] GNU Emacs 21.4.1 (x86_64-pc-linux-gnu, X toolkit, Xaw3d scroll
bars) of 2007-01-04 on chenonceaux, modified by Debian

-- 
-- Jhair


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



[OT] Re: preprocessor/linker c++ error

2007-02-19 Thread Jhair Tocancipa Triana
ccostin  writes:

 What's wrong with the followind C++ code ?
 $ cat file1.cc
 #include file.hh

int a, b, c;

 void f1(int x,int y, int z)
 {
a=x;
b=y;
c=z;
 }

 $ cat file2.cc
 #include file.hh
 void f2(int x,int y, int z)
 {
a=x;
b=y;
c=z;
 }

OK.

 $ cat file.hh
 #ifndef _FIS_H_
 #define _FIS_H_
 int a,b,c;

extern int a, b, c;

 void f1(int x,int y, int z);
 void f2(int x,int y, int z);
 #endif

 $ cat mult.cc
 #include stdio.h
 #include file.hh

 int main(int argc, char **argv)
 {
f1(2,4,5);
f2(-4,-6,-7);
 }

 At compilation some unexepected errors appear:

 g++ -g3 -Wall mult.cc file1.cc file2.cc file.hh  -o mult

$  g++ -g3 -Wall mult.cc file1.cc file2.cc -o mult; ls -altr mult
-rwxr-xr-x 1 jtocancipa jtocancipa 30690 2007-02-19 20:30 mult

 Same files, in C variant (using .c and .h file extensions) are
 compiled (using gcc) without any error or warning.

BTW why are you trying to use the C++ compiler if your code doesn't
use classes at all but looks like pure C code?

-- 
--Jhair


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



Re: A very simple documentation framework.

2007-02-11 Thread Jhair Tocancipa Triana
cga2000  writes:

 So far my personal doc system amounts to a patchwork of notes and
 cheat sheets in ascii files that I grep when I need to find some piece
 of information or other.

 I would like to switch to something a little more ambitious where I
 would be able to generate my docs in the usual popular formats, namely
 pdf, html, ps, txt, and possibly dvi.

I use the following packages for that:

ii  docbookstandard SGML representation system for tech...
ii  docbook-dsssl  modular DocBook DSSSL stylesheets, for print...
ii  docbook-utils  Convert Docbook files to other formats (HTML...

-- 
-- Jhair


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



Re: The system hangs up when I press ctrl+alt+f1

2007-02-07 Thread Jhair Tocancipa Triana
Michael Pobega writes:

 myusernet wrote:
 I want to kill X, so I press the combination but the system hangs up,
 half of the screen was the desktop and the other one is totally black.
   ^

 Are you sure you're pressing the right key combination? The correct
 combination is Ctrl-Alt-F*, not Alt-F*.

Yes the default right combination is Ctrl-Alt-F*. No key combination
should trigger the behaviour described by the OP though.

FWIW it may be a problem with his video card driver. The OP should
check the system logs for clues first (or try another driver).

-- 
--Jhair


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



Re: probs installing g++ on unstable

2007-01-27 Thread Jhair Tocancipa Triana
michael  writes:

 I have an unstable system on which I'm trying to install g++ but I've
 been getting the below dependency problem for about a month. Could
 somebody highlight whether this is just an 'unstable' some packages
 just not ready issue or something deeper? I've included what I think is
 all the required info. Thanks, Michael

Seems to be a problem in your environment. g++ works fine here:

$ dpkg -l | egrep ^ii.*'(libstdc\+\+|g\+\+)'
ii  g++  4.1.1-15
ii  g++-4.1  4.1.1-21
ii  libstdc++6   4.1.1-21
ii  libstdc++6-4.1-dev   4.1.1-21

 The following packages have unmet dependencies:
   libc6-dev: Depends: libc6 (= 2.3.6.ds1-10) but 2.3.6-15 is to be
 installed
 E: Broken packages
[snip]
 ii  libc6  2.3.6-15   GNU C Library: Shared libraries

This a *very* outdated version of libc6 (released on Juny 2006). When
was your last upgrade?

-- 
-- Jhair


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



Re: probs installing g++ on unstable

2007-01-27 Thread Jhair Tocancipa Triana
michael  writes:

 On Sat, 2007-01-27 at 14:51 +0100, Jhair Tocancipa Triana wrote:
 michael  writes:
  ii  libc6  2.3.6-15   GNU C Library: Shared libraries
 
 This a *very* outdated version of libc6 (released on Juny 2006). When
 was your last upgrade?

 today!
 ~$ sudo apt-get update  sudo apt-get install libc6
 Hit http://ftp.uk.debian.org unstable/main Packages
 Hit http://ftp.uk.debian.org unstable/main Release
 Hit http://ftp.uk.debian.org unstable/non-free Packages
 Hit http://ftp.uk.debian.org unstable/non-free Release
 Hit http://ftp.uk.debian.org unstable/contrib Packages
 Hit http://ftp.uk.debian.org unstable/contrib Release
 Reading Package Lists... Done
 Reading Package Lists... Done
 Building Dependency Tree... Done
 libc6 is already the newest version.
 0 upgraded, 0 newly installed, 0 to remove and 255 not upgraded.

Latest libc6 version in unstable is 2.3.6.ds1-10 though. What does

apt-cache policy libc6

say?

-- 
-- Jhair


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



Re: probs installing g++ on unstable

2007-01-27 Thread Jhair Tocancipa Triana
michael  writes:
 On Sat, 2007-01-27 at 15:08 +0100, Jhair Tocancipa Triana wrote:
 Latest libc6 version in unstable is 2.3.6.ds1-10 though. What does
 
 apt-cache policy libc6
 
 say?
 

 aha!
 ~$ apt-cache policy libc6
 libc6:
   Installed: 2.3.6-15
   Candidate: 2.3.6-15
   Package pin: 2.3.6-15
   Version table:
  2.3.6.ds1-10 1000
 500 http://ftp.uk.debian.org unstable/main Packages
  *** 2.3.6-15 1000
 100 /var/lib/dpkg/status

 which I presume means I've pinned it in the past...

Yes, that was the source of your problem.

 The following packages will be upgraded:
   libc6 locales
 2 upgraded, 4 newly installed, 0 to remove and 249 not upgraded.
 Need to get 15.7MB of archives.
 After unpacking 26.3MB of additional disk space will be used.
 Do you want to continue [Y/n]?

 Many thanks! (Shame that apt-get doesn't tell me I've something pinned
 and thus why won't be upgraded.)

You are welcome,

-- 
-- Jhair


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



Re: OT: memory requirements

2007-01-26 Thread Jhair Tocancipa Triana
Tyler  writes:
 Kamaraju Kusumanchi wrote:

 Is dma enabled for the hard drive?

 How do I check?

# hdparm /dev/hda | grep using_dma
 using_dma=  1 (on)

  what is this?

# man hdparm
 
-- 
--Jhair


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



Re: top post fixer?

2007-01-20 Thread Jhair Tocancipa Triana
Paul Johnson writes:

 Gnus has this functionality, IIRC.  The name is on the tip of my tongue,
 like de-outlookify or something.

,[ C-h k W-Y-f ]
| W Y f runs the command gnus-article-outlook-deuglify-article
|   which is an interactive autoloaded Lisp function in `deuglify'.
| It is bound to W Y f, menu-bar Article Washing (Outlook)
| Deuglify Full (Outlook) deuglify.
| [Arg list not available until function definition is loaded.]
| 
| Deuglify broken Outlook (Express) articles and redisplay.
`

:-)

-- 
-- Jhair


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



Re: setting editor options with update-alternatives

2007-01-20 Thread Jhair Tocancipa Triana
Seb  writes:

 I recently changed my default editor program, by using:
 update-alternatives --config editor

 and I selected emacs-snapshot.  However, whenever some program calls
 editor, I'd like emacs-snapshot to be called with the -nw option, as I
 wouldn't want to be restricted if I'm at a terminal.  I can't find info on
 how to do this in the docs.  I'd appreciate any advice on this.

A possibility is to create a shell script which calls emacs with the
nw flag, e.g.:

--8---cut here---start-8---
#!/bin/sh

emacs -nw
--8---cut here---end---8---

Then put the location of the script instead of the location of emacs
executable in the relevant line of the
/var/lib/dpkg/alternatives/editor file.

HTH,

-- 
--Jhair


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



Re: local network with twisted rj45

2007-01-18 Thread Jhair Tocancipa Triana
Russell L Harris writes:

 The nice thing about a switch or hub is that (1) it allows you to
 use common straight cables and

Crossover cables can be easily purchased from any (good) electronics
shop.

 (2) it has an LED which gives you a visual indication of the amount
 of traffic flowing.

I cannot see how this can be an advantage over using a crossover cable
in the context the OP is trying to use it.

-- 
-- Jhair


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



OT: Configure Evolution instead (was: Please stop using Horrendous Coloring (or coloring period))

2007-01-13 Thread Jhair Tocancipa Triana
Greg Folkert writes:

 PLEASE STOP USING COLORING. It is exceptionally offensive. Especially
 YOUR choices.

I don't use coloring.

 Please use only straight text, no HTML. or other techniques to get the
 cool coloring.

In gnus the following can be used to avoid reading HTML mails
automatically by default:

--8---cut here---start-8---
(setq mm-automatic-display (remove text/html mm-automatic-display)
  mm-discouraged-alternatives '(text/html text/richtext))
--8---cut here---end---8---

I see you use Evolution. Does Evolution support a similar feature?  If
it doesn't, Evolution would be a very weak MUA[1] and you should
replace it with a better alternative.

__ 
[1] http://en.wikipedia.org/wiki/Email_client

-- 
-- Jhair


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



Re: perl: how to suppress system()'s output or quiet down `tar`

2007-01-13 Thread Jhair Tocancipa Triana
LeVA  writes:

 From a perl script I call 'tar' with system().

Why not use the Archive::Tar perl module? It is available in the
libarchive-tar-perl package, and very easy to use (see

man 3pm Archive::Tar

if you have it installed).

-- 
-- Jhair


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



Re: nohup, but not nohup.out -- how to?

2007-01-13 Thread Jhair Tocancipa Triana
Dave Sherohman writes:

 On Fri, Jan 12, 2007 at 10:29:02AM -0500, Nelson Castillo wrote:
 On 1/12/07, David Jardine [EMAIL PROTECTED] wrote:
 On Fri, Jan 12, 2007 at 12:45:44PM +0530, vikrant vig wrote:
  Nohup.out got larga enough and I don't want to redirect nohup output 
  neither
  to nohup.out  nor to any other file.
 
  How can I do it???
 
 nohup command  /dev/null
 
 nohup command  /dev/null 2/dev/null 

 nohup command /dev/null 

Do you all mean

nohup command  /dev/null 21

instead?

:)

-- 
-- Jhair


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



Re: Second sound card is too much hassle?

2007-01-12 Thread Jhair Tocancipa Triana
Bruno Buys writes:

 I have the need for a second mic in on my computer, and I was wondering
 if I plugging in a spare emu10k1 card was a good idea. The computer has
 onboard sound realtek alc658 (so says alsamixer), working ok. With two
 cards, how does sound related apps behave? I never did this before...

If your card is correctly detected by alsa, you will see it in
/proc/asound/cards, e.g.:

$ cat /proc/asound/cards
 0 [IXP]: ATIIXP - ATI IXP
  ATI IXP rev 1 with unknown codec at 0xb0003400, irq 17
 1 [Modem  ]: ATIIXP-MODEM - ATI IXP Modem
  ATI IXP Modem rev 1 at 0xb0003800, irq 17
 2 [Audio  ]: USB-Audio - USB Audio
  USB Audio at usb-:00:13.0-2, full speed

Most sound related programs can be configured to use a particular
sound card.

With the example above

$ alsamixer -c 2

controls the sound card with index 2 (the USB one).

You can also configure alsa to use a particular sound card as the
default, see the alsa documentation.

HTH,

-- 
-- Jhair


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



Re: How to check installed file integrity?

2007-01-12 Thread Jhair Tocancipa Triana
Richard B Kreckel writes:

 I'm recovering from a serious filesystem corruption and wondered if
 there is already an interface that checks the files' integrity by
 comparing their MD5 fingerprints with those under /var/lib/dpkg/info/?
 (This expected this to be a FAQ, but I wasn't able to find it out.)

dbsums

-- 
-- Jhair


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



Re: How to check installed file integrity?

2007-01-12 Thread Jhair Tocancipa Triana
Richard B Kreckel writes:

 I'm recovering from a serious filesystem corruption and wondered if
 there is already an interface that checks the files' integrity by
 comparing their MD5 fingerprints with those under /var/lib/dpkg/info/?
 (This expected this to be a FAQ, but I wasn't able to find it out.)

debsums
 ^

(my apologies for replying myself)

HTH,

-- 
-- Jhair


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



Re: resolv.conf file is written over on reboot.

2007-01-11 Thread Jhair Tocancipa Triana
jdaues  writes:

 All my internet connections are working now, thanks to resolvconf (and
 to Jhair)

Good to know :)

Have fun,

-- 
-- Jhair


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



Re: static linking?

2007-01-10 Thread Jhair Tocancipa Triana
Drake Mobius writes:

 The question is, how do I do that? I apt-get source dialog, for example, and
 then ./configure and edit the resultant makefile to include -static on the
 LDFLAGS line...but it doesn't seem to be working. ldd /usr/bin/local/dialog
 returns 'not a dynamic executable' instead of 'statically linked'.

ldd returning 'not a dynamic executable' on your executable, means
that your executable *is* statically linked.

It will not resolve symbols using dynamic libraries, since all symbols
will reside in the executable itself.

A dynamic executable would say:

$ ldd foo
libpthread.so.0 = /lib/i686/libpthread.so.0 (0x4001f000)
libm.so.6 = /lib/i686/libm.so.6 (0x4007)
libwibucmlin.so = /usr/lib/libwibucmlin.so (0x40093000)
libc.so.6 = /lib/i686/libc.so.6 (0x403b4000)
/lib/ld-linux.so.2 = /lib/ld-linux.so.2 (0x4000)
libstdc++.so.5 = /usr/lib/libstdc++.so.5 (0x404e8000)
libdl.so.2 = /lib/libdl.so.2 (0x405a8000)
libgcc_s.so.1 = /lib/libgcc_s.so.1 (0x405ab000)

And a statically linked executable would say:

$ ldd foo
not a dynamic executable

$ file foo
file foo: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV),
for GNU/Linux 2.2.5, statically linked, not stripped
 ^
-- 
-- Jhair


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



Re: resolv.conf file is written over on reboot.

2007-01-10 Thread Jhair Tocancipa Triana
jdaues  writes:

 The etc/resolv.conf file is being written over when i reboot.
 I have setup for static ip address, NOT dhcp.  The outside word sees
 the static ip address, and inside on the NAT, each machine is
 192.168.0.x. In KDE, System - Networking, I set up the ip address,
 subnet mask, gateway address, DNS, Search domains. Host, Hostname and
 Domain. When I do a more /etc/resolv.conf, it looks good. When I
 restart, all the info I entered is gone.

 What is happening? How do I prevent this?

Different programs are able to change /etc/resolv.conf behind your
back. You need to tell those programs don't to change your resolv.conf
file.

Try to install the resolvconf package and take a look at the

/usr/share/doc/resolvconf/README.gz

file. There is valuable information there.

HTH,

-- 
-- Jhair


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



Re: resolv.conf file is written over on reboot.

2007-01-10 Thread Jhair Tocancipa Triana
jdaues  writes:

 So I installed resolvconf, and then reentered the values for the
 network. I rebooted and now resolv.conf is this:

 # Dynamic resolv.conf(5) file for glibc resolver(3) generated by
 resolvconf(8)
 #DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN

 There is no mention of glibc in the resolvconf README file.
 What is this telling me?

You need to configure resolvconf.

You should add your DNS entries to the following file:

/etc/resolvconf/resolv.conf.d/base

In that way your entries will not change after reboots. See man 8
resolvconf for details.

(Please note resolvconf uses a symbolic link:

/etc$ ls -altr resolv.conf
lrwxrwxrwx 1 root root 31 2006-12-14 02:32 resolv.conf -
   /etc/resolvconf/run/resolv.conf

(Don't change the symbolic link.))

HTH,

-- 
-- Jhair


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



Re: resolv.conf file is written over on reboot.

2007-01-10 Thread Jhair Tocancipa Triana
jdaues  writes:

 I read the man page. it gives no hint as to the syntax.  I see nothing
 on the internets about this either. I can only guess maybe this:

 domain 123.45.67.8 91.23.456.78
 or
 dns 123.45.67.8 91.23.456.78

 Are either of these correct?

The syntax is the same as the one described in

man 5 resolv.conf

I.e. the same syntax as if you would change the /etc/resolv.conf
directly.

E.g. this syntax should work

nameserver 217.237.151.142
nameserver 217.237.151.51

Regards,

-- 
-- Jhair


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



Re: xorg-6.9.0 on Sid?

2007-01-07 Thread Jhair Tocancipa Triana
Hugo Vanwoerkom writes:

 Jhair Tocancipa Triana wrote:
 I've just installed it and tleds works fine with
 
 ,[ /var/log/Xorg.0.log ]
 | X Window System Version 7.1.1
 | Release Date: 12 May 2006
 | X Protocol Version 11, Revision 0, Release 7.1.1
 | Current Operating System: Linux golem 2.6.18.1 #4 Sun Nov 12 03:28:04
 | CET 2006 x86_64
 `
 
 (vanilla kernel).
 

 Meaning with Linux golem 2.6.18.1 #4 you get LEDs in *both* X *and*
 console VT's?

Yes.

-- 
-- Jhair


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



Re: xorg-6.9.0 on Sid?

2007-01-07 Thread Jhair Tocancipa Triana
Hugo Vanwoerkom writes:

 Jhair Tocancipa Triana wrote:
 Hugo Vanwoerkom writes:
 
 Jhair Tocancipa Triana wrote:
 I've just installed it and tleds works fine with
 
 ,[ /var/log/Xorg.0.log ]
 | X Window System Version 7.1.1
 | Release Date: 12 May 2006
 | X Protocol Version 11, Revision 0, Release 7.1.1
 | Current Operating System: Linux golem 2.6.18.1 #4 Sun Nov 12 03:28:04
 | CET 2006 x86_64
 `
 
 (vanilla kernel).
 
 
 Meaning with Linux golem 2.6.18.1 #4 you get LEDs in *both* X *and*
 console VT's?
 
 Yes.
 

 I don't get it. Where do you get that vanilla kernel? From
 http://www.kernel.org/ ?

Yes.

 Also what distrib are you running, Sid?

Correct.

 And why does 'uname -srv' say Linux golem if it's a vanilla kernel?

uname -srv doesn't say Linux golem. 

(debian-unstable)[EMAIL PROTECTED]:~$ uname -srv
Linux 2.6.18.1 #4 Sun Nov 12 03:28:04 CET 2006

The output I pasted above is from the /var/log/Xorg.0.log file (it
probably uses `uname -a` which includes the hostname in the output).

Regards,

-- 
-- Jhair


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



Re: xorg-6.9.0 on Sid?

2007-01-07 Thread Jhair Tocancipa Triana
Hugo Vanwoerkom writes:

 Jhair Tocancipa Triana wrote:
 Hugo Vanwoerkom writes:
 
 Jhair Tocancipa Triana wrote:
 Hugo Vanwoerkom writes:
 
 Jhair Tocancipa Triana wrote:
 I've just installed it and tleds works fine with
 
 ,[ /var/log/Xorg.0.log ]
 | X Window System Version 7.1.1
 | Release Date: 12 May 2006
 | X Protocol Version 11, Revision 0, Release 7.1.1
 | Current Operating System: Linux golem 2.6.18.1 #4 Sun Nov 12 03:28:04
 | CET 2006 x86_64
 `
 
 (vanilla kernel).
 
 I am going to try that same kernel: vanilla 2.6.18.1.

 I am also leaving out a patch from here:
 http://dev.gentoo.org/~spock/projects/vesafb-tng/
 that I always include. Just 2.6.18.1 and tleds.

 I'll report back. Thanks for replying so promptly

Good luck.

I've just noted the following: Usually I do use an external USB
keyboard for my laptop since I don't like the default keyboard. The
LEDs in my USB keyboard blink when there is network traffic (as
expected).

However, on the default keyboard they LEDs don't work no matter if my
USB keyboard is plugged in or not.

So the bottom line is (in my case) tleds works on my laptop only with
my external USB keyboard.

HTH,

-- 
-- Jhair


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



Re: xorg-6.9.0 on Sid?

2007-01-07 Thread Jhair Tocancipa Triana
Hugo Vanwoerkom [EMAIL PROTECTED] writes:

 Jhair Tocancipa Triana wrote:
 However, on the default keyboard they LEDs don't work no matter if my
 USB keyboard is plugged in or not.
 
 So the bottom line is (in my case) tleds works on my laptop only with
 my external USB keyboard.

 Just tried vanilla 2.6.18.1 from kernel.org + Sid tleds:

 the LEDs do *not* blink in X but *do* blink in the VT consoles.

Maybe there is a missunderstanding.

With do blink in the VT console I understand the following:

From within X I switch to a VT console (say Ctrl+F1). In the VT
console I start a network intensive task (e.g. wget). Here the LEDs
blink as expected.

With do blink in X I understand the following:

From within X I start a terminal program (say xterm). In xterm I start
a network intensive task (e.g. wget). Here the LEDs blink.

 On your default keyboard, do the LEDs blink in the VT's?

My default keyboard is the USB external one (I use the keyboard of my
laptop rarely). In the USB external keyboard the LEDs seem to work
properly.

I fail to understand how in your case choosing a VT console or an X
application makes any difference. It should be irrelevant since tleds
monitors network traffic. I think there is our missunderstanding.

Regards,

-- 
-- Jhair


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



Re: xorg-6.9.0 on Sid?

2007-01-07 Thread Jhair Tocancipa Triana
Hugo Vanwoerkom writes:

 1. I start a network intensive task anywhere, e.g. a download
 2. Make sure tleds is running
 3. I select Alt+Ctrl+F1 and then end up in a VT console #1 I see the
 LEDs blink
 4. I select Alt+Ctrl+F7 and end up in X, whatever I did there before,
 The LEDs do *not* blink there.

I am unable to reproduce this. In step 4. the LEDs keep blinking in my
case, while I am doing a

$ wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.19.tar.gz

So obviously you are having the same issue no matter the kernel
used. It could be an issue between your hardware and tleds, or
something else, I'm not sure.

I just want to add, to downgrade xorg only to fix the issue you are
having with tleds would be an overkill, IMHO.

To a have a working version of tleds doesn't seem to outweight the
advantages of an up-to-date xorg installation (e.g. enhancements,
security vulnerabilities fixes, working dependencies, etc.).

-- 
-- Jhair


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



Re: lynx no common name in certificate error on google

2007-01-07 Thread Jhair Tocancipa Triana
Jude DaShiell writes:

 This happens with the debian distributed version of lynx when I try
 logging into my google account. Do I need to rebuild the package and
 perhaps link it to the ssl facilities on my system or do I need to
 configure lynx in some way short of a rebuild? I'll probably download
 source and build using that and remove the debian package altogether
 if this needs rebuilding.

See,

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=268102

-- 
-- Jhair


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



Re: xorg-6.9.0 on Sid?

2007-01-06 Thread Jhair Tocancipa Triana
Hugo Vanwoerkom writes:

 Mathias Brodala wrote:
 Hello Hugo.
 
 Hugo Vanwoerkom, 06.01.2007 19:44:
 How would I go about backlevelling xorg to 6.9.0 on Sid?
 
 Since there have been a lot of changes from 6.9→7.0→7.1, you should 
 completely
 purge your current Xorg and install the packages from s.d.n[0].
 
 But why do you want to downgrade your Xorg, if you allow this question?
 
 
 [0] 
 http://snapshot.debian.net/archive/2006/04/05/debian/pool/main/x/xorg-x11/
 

 I like tleds[1]

I've just installed it and tleds works fine with

,[ /var/log/Xorg.0.log ]
| X Window System Version 7.1.1
| Release Date: 12 May 2006
| X Protocol Version 11, Revision 0, Release 7.1.1
| Current Operating System: Linux golem 2.6.18.1 #4 Sun Nov 12 03:28:04
| CET 2006 x86_64
`

(vanilla kernel).

-- 
-- Jhair


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



Re: MODERATOR - NEWS GROUP

2007-01-05 Thread Jhair Tocancipa Triana
Andrew Sackville-West writes:

 On Thu, Jan 04, 2007 at 01:05:39PM -0500, Douglas Tutty wrote:
 
 The other thing I've noticed is that a new spam will have a subject
 starting with Re: .  Could not the list filter verify that the subject
 Re'd actually exists in the list archive within a set time frame (30
 days?).

 but then we'd miss all of Michele Konzack's mail! ;-)

,[ nntp+news.gmane.org:gmane.linux.debian.user.SCORE ]
| ((from
|   (Michelle Konzack -1 nil r))
|  (expunge -9000))
`

SCNR ;),

-- 
-- Jhair


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



Re: multi-gnome-terminal alternative

2007-01-01 Thread Jhair Tocancipa Triana
Jerome BENOIT writes:

 Why my escape sequence which works fine on xterm does not work with
 gnome-terminal ?

Which escape sequence are you using?

-- 
-- Jhair


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



Re: Determining Page Size on AMD64 Etch

2007-01-01 Thread Jhair Tocancipa Triana
Owen Heisler writes:

 On 12/29/06, Matt Miller [EMAIL PROTECTED] wrote:
   see what my page size is?
 
  man 2 getpagesize
 
 Thanks, that helped.  I wrote the following C program which
 apparently tells me that my pagesize is 4K:
 
 #include unistd.h
 #include stdio.h
 
 int main ()
 {
 printf (%d\n, getpagesize ());
 return 0;
 }

 Maybe I'm missing something, but why not just look at /proc/swaps?

Because /proc/swaps doesn't show the memory page size.

-- 
-- Jhair


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



Re: fmod

2007-01-01 Thread Jhair Tocancipa Triana
Gerard Robin writes:

 Hello,
 apt-cache search fmod, gives nothing about fmod.

 Does someone know if it exists a package debian containing fmod ?

$ apropos fmod
fmod (3) - floating-point remainder function

Or are you looking for something else?

-- 
-- Jhair


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



Re: multi-gnome-terminal alternative

2007-01-01 Thread Jhair Tocancipa Triana
Jerome BENOIT writes:

 Hello,
 this one:

 PS1='\[\033]0;$NICKNAME:\w\007\]\[\033[40;1;37m\]$NICKNAME\[\033[0;m\] '

Yes, I see garbled characters in gnome-terminal after NICKNAME. E.g.:

foo^[[0;m

I tried with konsole and your escape sequence works fine there.

 Why my escape sequence which works fine on xterm does not work
 with gnome-terminal ?

This is obviously a gnome-terminal bug. gnome-terminal is not parsing
escape sequences correctly.

Maybe this is related to the bug

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=369867

In this report, the xterm author points out some defects of
gnome-terminal and compares it with konsole.

-- 
-- Jhair


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



Re: fmod

2007-01-01 Thread Jhair Tocancipa Triana
Gerard Robin writes:

 What is FMOD ?

 FMOD is a cross platform audio library to let you easily implement the
 latest audio technologies into your title

I guess you are talking about 

http://www.fmod.org/

It seems nobody cared about packaging this software. Probably you will
not find it in the Debian _main_ repositories, it is not free:

,[ http://www.fmod.org/ ]
| Full source code is included with a commercial licenses. (except for
| shareware/budget licenses).
`

-- 
-- Jhair


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



Re: make pdf with password

2007-01-01 Thread Jhair Tocancipa Triana
gustavo halperin writes:

 Hello
 There are any form to make pdf with password using latex  or from the
 pdf generated using Latex there are any form to add password to this
 pdf ??

You could try the pdftk package.

-- 
-- Jhair


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



Re: multi-gnome-terminal alternative

2006-12-31 Thread Jhair Tocancipa Triana
Jerome BENOIT writes:

 Hello List,
 I have just tried Multi-Gnome-Terminal on my new x86_64 box:
 it appears the terminal is filled with arbitrary caracters
 [ bug #345504 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=345504 

I can reproduce this with

Package: multi-gnome-terminal
Version: 1.6.2-13
Architecture: amd64 (x86_64)
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

 Is there any good alternative, patches or workarounds ?

Maybe set the bug severity to critical? The program is unusable and
not suitable for release.

-- 
-- Jhair


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



Re: Determining Page Size on AMD64 Etch

2006-12-29 Thread Jhair Tocancipa Triana
Matt Miller writes:

 Can I use sysctl or /proc/sys/kernel or something to see what my
 page size is?  My kernel is 2.6.18-3-amd64.

Don't know about an entry in sysfs with that entry, but does

man 2 getpagesize

help?

-- 
-- Jhair


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



Re: What is faster to achive to encode 1 chunk of 1mb or 1000 chanks of 1000kb?

2006-12-27 Thread Jhair Tocancipa Triana
Jabka Atu writes:

 Im working on encoding system :

You sent your message to the wrong mailing list.

-- 
-- Jhair


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



Re: Query re: disk free (df) output

2006-12-23 Thread Jhair Tocancipa Triana
andy  writes:

 I suppose I could've been more specific: what might a shm be?

,[ /usr/src/linux/Documentation/devices.txt ]
| The following names are reserved for mounting special filesystems
| under /dev.  These special filesystems provide kernel interfaces that
| cannot be provided with standard device nodes.
| 
| /dev/shmtmpfs   POSIX shared memory maintenance access
`

The linux kernel implements shared memory with the help of a minimal
filesystem which is mounted in /dev/shm.

More information about POSIX shared memory can be found in the
relevant man pages,

,[ apropos shm ]
| shm_open (3) - Create/open or unlink POSIX shared memory objects
| shm_unlink (3)   - Create/open or unlink POSIX shared memory objects
| shmat (2)- shared memory operations
| shmctl (2)   - shared memory control
| shmdt (2)- shared memory operations
| shmget (2)   - allocates a shared memory segment
| shmop (2)- shared memory operations
`

-- 
-- Jhair


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



Re: whereis rgmanager package under debian etch?

2006-12-22 Thread Jhair Tocancipa Triana
C L Martinez writes:

 I am testing redhat cluster suite under debian etch. I found all packages
 that I need, except rgmanager with clustat command. Somebody where is??

rgmanager a.k.a. *Red Hat* Resource Group Manager. This is a little
bit Red Hat specific, no?

I doubt this is in the archives. You can use alien to convert a given
rpm file to deb format.

-- 
-- Jhair


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



Re: whereis rgmanager package under debian etch?

2006-12-22 Thread Jhair Tocancipa Triana
C L Martinez writes:

 On 12/22/06, Jhair Tocancipa Triana [EMAIL PROTECTED] wrote:
 
 C L Martinez writes:
 
  I am testing redhat cluster suite under debian etch. I found all
  packages that I need, except rgmanager with clustat
  command. Somebody where is??
 
 rgmanager a.k.a. *Red Hat* Resource Group Manager. This is a little
 bit Red Hat specific, no?

 No, only Resource Group Manager 

At least most of it seems to be copyrighted by Red Hat,

http://sources.redhat.com/cgi-bin/cvsweb.cgi/~checkout~/cluster/rgmanager/src/daemons/main.c?rev=1.9.2.21content-type=text/plaincvsroot=cluster

 I doubt this is in the archives. You can use alien to convert a
 given rpm file to deb format.

 It is not possible to convert with alien, because all dependencies
 crashed: css, cman, etc ...

Install from source then. AFAIK there is no rgmanager package in the
Debian repositories (of course I could be wrong).

-- 
-- Jhair


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



Re: Should Debian be strictly all-volunteer or should it pay developers?

2006-12-22 Thread Jhair Tocancipa Triana
IntnsRed  writes:

 From the semi-off-topic, FWIW category:

 A poll was created on debianHELP.org http://www.debianhelp.org/node/2571 
 asking, Should Debian be strictly all-volunteer or should it pay developers?

 Feel free to select from the choices of
 * Strictly all volunteer.
 * There's nothing wrong with paying Debian developers.
 * Payments should be rare and only for a short duration.
 * One developer should not be paid unless all are paid.

Why beat a dead horse?

http://www.debian.org/vote/2006/vote_006.html

-- 
-- Jhair


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



Re: [OT] CVS vs. SVN

2006-12-20 Thread Jhair Tocancipa Triana
David Christensen writes:

 I've been using CVS (and RCS before it) for several years new.  I've
 also looked at switched to SVN, but seem to recall that there was an SVN
 feature whereby SVN applied to same version number to all files in the
 project (repository?) whenever you checked something in.

Yes, SVN has a global revision number[1].

However it has also commit revision numbers.  The commit revision
numbers do not apply to files, but to commits (in SVN commits are
atomic operations).

 I prefer a more traditional scheme whereby version numbers are
 managed on a per-file basis, and only change when the file changes.

You don't have those in SVN. you have version numbers on a per-commit
basis (and the global revision number (on a per-repository basis)).

__ 
[1] http://subversion.tigris.org/faq.html#globalrev

-- 
-- Jhair


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



Re: restarting eth0

2006-12-20 Thread Jhair Tocancipa Triana
richard  writes:

 I use 'ifdown eth0'
 followed by 'ifup eth0'

 I expect there is another way.

Like

/etc/networking restart

It will only work if the eth0 interface is marked as auto in
/etc/network/interfaces. And it will bring _all_ interfaces marked as
auto down and up.

It is shorter than two different commands though.

-- 
-- Jhair


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



Re: restarting eth0

2006-12-20 Thread Jhair Tocancipa Triana
Jhair Tocancipa Triana writes:

 Like

 /etc/networking restart

Typo. I meant

/etc/init.d/networking restart

(my apologies for replying myself).

-- 
-- Jhair


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



Re: cleanup after dist-upgrade

2006-12-19 Thread Jhair Tocancipa Triana
Hans du Plooy writes:

 OK, I got all the problems sorted out after doing dist-upgrade on a live
 production server :-)

 What's the best way to clean this up?  By the looks of it I now have two
 versions of mysql installed.  mysql -V does give me the 5.0.30 though:

 # dpkg -l | grep mysql
 rc  courier-authmysql  0.47-4sarge5

dpkg --purge courier-authmysql

 ii  libdbd-mysql-perl  3.0008-1A
 Perl5 database interface to the MySQL data
 ii  libmysqlclient10   3.23.56-3
 LGPL-licensed client library for MySQL datab
 ii  libmysqlclient12   4.0.24-10sarge2 mysql
 database client library
 ii  libmysqlclient14   4.1.11a-4sarge7 mysql
 database client library
 ii  libmysqlclient15off5.0.30-1mysql
 database client library
 ii  libpam-mysql   0.6.2-1 PAM
 module allowing authentication from a My
 ii  mysql-client-5.0   5.0.30-1mysql
 database client binaries
 ii  mysql-common   5.0.30-1mysql
 database common files (e.g. /etc/mysql
 ii  mysql-server-4.1   5.0.30-1mysql
 database server (transitional package)
 ii  mysql-server-5.0   5.0.30-1mysql
 database server binaries
 ii  php5-mysql 5.2.0-7 MySQL
 module for php5
 ii  postfix-mysql  2.3.4-3 MYSQL
 map support for Postfix

Have you already tried debfoster to clean this up?

-- 
-- Jhair


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



Re: apt-get Segmentation faultsts ... x% not solved

2006-12-16 Thread Jhair Tocancipa Triana
jdevoo  writes:

 The segmentation fault appears at random points anywhere from 0% to
 as high as 60%...

Have you already tested the memory of your machine with memtest?

-- 
-- Jhair


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



Re: Checking integrity of cached debs

2006-12-03 Thread Jhair Tocancipa Triana
Winston Smith writes:

 Is there an easy way to check the integrity of cached debs and remove
 corrupt ones?

You can install debsums for that,

Description: Verify installed package files against MD5 checksums.
debsums can verify the integrity of installed package files against
MD5 checksums installed by the package, or generated from a .deb
archive.

-- 
-- Jhair


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



Re: after upgrade tomcat5.5 stop working!

2006-11-24 Thread Jhair Tocancipa Triana
nx13464a  writes:

 Hi all,
 After upgrade tomcat5.5 stop working!
 Since i'm using java 1.5 from sun, and this upgrade is for tomcat5.5
 start working with java-gcj-compat, i think it stop working with
 others jre. But also since i'm a newbie in tomcat, i can't report this
 as a bug.
 I only upgrade from 5.5.20-1 to 5.5.20-2 and change nothing.

I deployed today some applications with tomcat 5.5.20-2 and they
worked without problems.

You should give more information than tomcat5.5 stop working in
order to know what is wrong with your installation...

-- 
-- Jhair


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



Re: restoring a panel in xfce4

2006-11-21 Thread Jhair Tocancipa Triana
Easthope  writes:

 Debian users,
 Using the Panel Manager in xfce4, I removed 
 the panel which showed the quiescent tasks.
 The panel with the icons for the Xfce Menu,
 the clock  etc. remains intact.

 How can that quiescent task panel be restored?
 I tried removing and reinstalling the xfce4-panel
 package to no avail.

Xfce Menu-Settings-Settings Manager-Panel

then add a new panel with the + button at the left and then add the
old items (Task List, System Tray) to the newly created panel, no?

-- 
-- Jhair


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



Re: dig

2006-11-16 Thread Jhair Tocancipa Triana
Raquel  writes:

 Does anyone know in what package can I find dig?  I tried
 apt-cache search dig and couldn't find anything it the list it
 gave me.

apt-cache search looks for package names not for package
contents. You should try apt-file[1] instead:

$ apt-file --fixed-string search /usr/bin/dig
dnsutils: usr/bin/dig

__ 
[1] It seems apt-file is a CPU hog though:
  PID USER  PR  NI  VIRT  RES  SHR S %CPU %MEMTIME+  COMMAND
12522 jtocanci  18   0 25500 6356 2616 S 68.6  0.6   0:05.03 apt-file

-- 
-- Jhair


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



Re: emacs and ASCII file to ISO-8859-* to UTF-8

2006-11-14 Thread Jhair Tocancipa Triana
hendrik  writes:

 On Tue, Nov 14, 2006 at 09:31:25AM +0100, Matus UHLAR - fantomas wrote:
   On 12.11.06 14:52, Andrea Ganduglia wrote:
Hi. I have a lots ascii file with ecoding iso-8859-* and I must
convert those in UTF-8. How?
 
  On Mon, Nov 13, 2006 at 10:06:44AM +0100, Matus UHLAR - fantomas wrote:
   iconv -f src-encoding -t dst-encoding inputfile  outputfile.
   
   There is also 'recode' package, however I found it a bit
   redundant, since iconv (part of libc6) has this functionality
 
 On 13.11.06 09:14, [EMAIL PROTECTED] wrote:
  And after you've has converted such a file, how can you tell emacs that 
  it is supposed to recognise the new encoding?
 
 pardon?

 This is an emacs-specific add-on question.  If it has seen a file in one 
 encoding system, and I run a program to change it to another (in my 
 case, getting my accented letters converted from the old 8-bit encoding 
 into UTF-8) emacs insists on continuing to read it as if it were in the 
 old encoding, so my accented characters, which have been expanded into 
 two bytes each, show up in the editor as two gibberish characters each.

C-x RET r utf-8 RET should force emacs to read the file using the
utf-8 coding system.

-- 
-- Jhair


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



Re: launcher for terminal ap

2006-11-14 Thread Jhair Tocancipa Triana
Mark Grieveson writes:

 Einar Olason wrote:
 Hi,
 
 I'm not familiar with the exo-open command, but you could try xterm -e
 dict . I have a very old version of XFCE here at work and there is a
 command here called xfterm4 which starts your preferred shell as
 defined by the TERMCMD variable. xfterm4 -e dict should also work in
 most cases. In general the -e 'command' option seems to work with most
 graphic terminals (e.g. rxvt and konsole).
 
 Cheers,
 
 Einar
 
 
 2006/11/14, Mark Grieveson [EMAIL PROTECTED]:

 Hello Einar.  I tried the -e command (xterm -e dict), but it did not
 work.  The terminal appears for a second, but then dies.

Maybe you can try with an expect[1] script? Something like:

--8---cut here---start-8---
#!/usr/bin/expect -f

send_user Word?\ 
expect_user -re (.*)\n
exec dict $expect_out(1,string)\n

exit
--8---cut here---end---8---

If you execute that script it will ask for a word and pass it to dict
(you need to have expect installed).

This is my first expect script, so probably there are much better ways
to solve your problem.

HTH,

__ 
[1] apt-cache show expect

-- 
-- Jhair


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



Re: error message : pic error on cpu0 : 40(40)

2006-11-14 Thread Jhair Tocancipa Triana
Roelof Wobben writes:

 Hello,
 Sometimes i see this error.
 My system is a amd64 processor with 1GB memory.

 What does this mean ?

You mean:

syslog.0:Nov 13 04:02:22 localhost kernel: APIC error on CPU0: 40(40)

?

AFAIK is harmless. You can turn it off with the noapic kernel
parameter.

-- 
-- Jhair


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



Re: document processing

2006-11-01 Thread Jhair Tocancipa Triana
Douglas Tutty writes:

 I'm revisiting how I make documents.  I have been using lout since I
 started with linux in 2000 but it has the following shortcomimgs:

I would recommend DocBook.

   Difficult to change things like margins

With DocBook this isn't as straightforward as with WYSIWYG editors,
but possible adjusting (or creating new) style-sheets.

   Can't make html

docbook2html

   plain text output has blank lines that must be edited.

I tried now with docbook2txt on an document here and the output
doesn't have more blank lines than needed (to separate paragraphs and
sections).

 My primary use is for letters and notes but also larger projects.  I
 don't like wysiwyg.  I want to be able to make: ps, pdf, txt, html.

docbook2ps, docbook2pdf, docbook2txt and docbook2html help with that.

 Something like DebianDoc seems overkill for a letter.

Yes I agree.

 I want something that is simple, probably a markup language, but without
 excessivly long tags or difficulty changing things like margins for
 non-html output.

 What do people find works well?

I have used DocBook for years, mainly to write technical documentation
and it suits perfectly my needs.

HTH,

-- 
--Jhair


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



Re: What's your favourite FLOSS?

2006-11-01 Thread Jhair Tocancipa Triana
Gerard Robin [EMAIL PROTECTED] writes:
 Here goes my new list (If you don't use certain things, please leave
 the brackets blank like I did for audio editor, instead of leaving
 them occupied with previous entries; this is to make the counting more
 accurate):

 
* audio editor [ ]
* audio player [ amarok ]
* cd-ripper [ lame ]
* Desktop Environment [ gnome ]
* DBMS [ ]
* development [ emacs, GNU toolchain (g++, glibc, binutils, gdb, ...) ]
* disc burner [ k3b ]
* e-mail client [ gnus (emacs) ]
* file manager [ nautilus, dired (emacs) ]
* finance [ ]
* ftp [ nautilus, tramp (emacs) ]
* image editor [ gimp ]
* image viewer [ gqview, gimp ]
* instant messenger [ gaim ]
* mathematics [ gnuplot, latex, xcalc ]
* misc utilities [ coreutils (ls, cut, paste), sed, awk, perl ]
* p2p [ gtk-gnutella ]
* package manager [ aptitude ]
* pdf-reader [ gpdf ]
* spreadsheet [  ]
* tag editor [ amarok ]
* terminal emulator [ xterm, konsole ]
* text editor [ emacs ]
* 3D animation [  ]
* video player [ vlc, mplayer ]
* web browser [ firefox ]
* word-processor [ emacs + (pdflatex, DocBook) ]
* (unreleased) [  ]
* (great honours) [ GNU toolchain, Linux kernel ]

What about games?

* games [ eboard ]

-- 
--Jhair


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



Re: C manual

2006-10-03 Thread Jhair Tocancipa Triana
Brad Brock writes:

 What package should I install to have a C manual?

What exactly do you need? The GNU C library manual is available in the
glibc-doc-reference package.

If you want a C language manual you should read the Kernighan and
Ritchie book[1] or the ISO C standard[2].

__ 
[1] http://cm.bell-labs.com/cm/cs/cbook/

[2] http://www.open-std.org/jtc1/sc22/wg14/

-- 
-- Jhair


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



Re: xchat 2.6.1 - 2.6.4 input offset problem?

2006-08-20 Thread Jhair Tocancipa Triana
Justin Piszcz writes:

 See the picture attached.
 
 Is there anyway to make 2.6.4 have the same spacing at 2.6.1 for the
 input box?

In the second case you have some sort of spelling feature activated,
so obviously the distance between the text and the lower margin is
different in both cases.

Or do you mean the spacing between words? I cannot tell any difference
for that.

-- 
--Jhair


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



Re: Delinquent maintainers?

2006-08-13 Thread Jhair Tocancipa Triana
Carl Fink writes:

[vlc]
 How can I fix it? [pause while I do research] Okay, it's written in C.  I'm
 not a C programmer.

The release critical bug which blocks vlc to get into testing has
nothing to do with C code. See [1].

__ 
[1] http://bjorn.haxx.se/debian/testing.pl?package=vlc

-- 
--Jhair


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



Re: Any recommendations on open source MUAs that can allow to read Microsoft Exchange Server e-mails?

2006-08-11 Thread Jhair Tocancipa Triana
Yu,Glen [Ontario] writes:

 Hi everyone,
 I'm trying to look for an e-mail client that can allow me to check
 Microsoft Exhange Server e-mails.  I googled the topic and XFMail was
 suggested, but when I tried it, it didn't work for me.  Wondering if
 anybody out there knows how I can do this.

 I know that Evolution Connector will work, but it's proprietary, and I'm
 looking for something free/opensource.

If the Exchange Server you are using is configured to understand IMAP,
gnus or Firefox (among many other MUAs) will work.

HTH,

-- 
-- Jhair


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



Re: Possible bug in apt-get

2006-08-11 Thread Jhair Tocancipa Triana
Nils Erik Svangård writes:

 Hi!
 Im running unstable with swedish locale.
 apt-get upgrade ask me something in swedish and a reply is necessary
 to continue.
 Ja=Yes and Nej=No in swedish, so the dialog looks like [j,N] and I
 answered y which was accepted and the program kept on running, that
 was not the response I was waiting for.
 This could be a feature though :D
 /nisse

I've seen the same thing with german locales (probably happens with
all of them):

$ export LANG=de_DE.UTF-8
$ apt-get install vim-gnome
...
Nach dem Auspacken werden 2331kB Plattenplatz zusätzlich benutzt.
Möchten Sie fortfahren [J/n]? yes
Hole:1 http://ftp.de.debian.org unstable/main vim-gui-common 1:7.0-035+1 
[88,4kB]
...

Not sure if it is a bug though...

-- 
-- Jhair


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



Re: Any recommendations on open source MUAs that can allow to read Microsoft Exchange Server e-mails?

2006-08-11 Thread Jhair Tocancipa Triana
Ron Johnson writes:

 Jhair Tocancipa Triana wrote:
 Yu,Glen [Ontario] writes:
 
 Hi everyone,
 I'm trying to look for an e-mail client that can allow me to check
 Microsoft Exhange Server e-mails.
 If the Exchange Server you are using is configured to understand IMAP,
 gnus or Firefox (among many other MUAs) will work.

 But it won't do calendar or scheduling.

Right.

And with Firefox as MUA it won't do email either (of course, I meant
Thunderbird in my original message).

-- 
-- Jhair


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



Re: mp3 players with Debian (samsung and iriver)

2006-08-11 Thread Jhair Tocancipa Triana
H S writes:

 Thinking of getting an mp3 portable player. Options are iRiver t30 and
 Samsung YP-C1Z. The latter also a radio tuner in it so this appears to
 be the preferred one. The main deciding factor for these was that they
 play OGG files.

I own a Samsung YP-MT6. It works without problems in Debian
(unstable).

 Has anyone used either of these with Debian? I just wanted some
 feedback if it is straight forward to transfer files to/from these as
 USB devices.

It's very straightforward. When I plug the mp3 player to my computer
it gets detected automatically by the kernel (2.6.15.1):

kernel: usb 3-4: new high speed USB device using ehci_hcd and address 3
kernel: Initializing USB Mass Storage driver...
kernel: scsi0 : SCSI emulation for USB Mass Storage devices
kernel: usbcore: registered new driver usb-storage
kernel: USB Mass Storage support registered.
kernel:   Vendor: Samsung   Model: YP-MT6Rev: 2122
kernel:   Type:   Direct-Access  ANSI SCSI revision: 04
kernel: SCSI device sda: 2034432 512-byte hdwr sectors (1042 MB)
kernel: sda: Write Protect is off
kernel: SCSI device sda: 2034432 512-byte hdwr sectors (1042 MB)
kernel: sda: Write Protect is off
kernel:  sda: sda1
kernel: sd 0:0:0:0: Attached scsi removable disk sda
kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0

-- 
-- Jhair


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



Re: 'M-v' not working in man pages

2006-04-25 Thread Jhair Tocancipa Triana
Rodolfo Medina writes:

 Hi.
 When I'm reading a manual page, I do 'C-v' to go one screen ahead,
 but 'M-v' does not work to go one screen back: when I do 'M-v',
 the View menu is displayed instead.
 How can I fix that?
 I have Sarge stable, and Gnome.

Which pager are you using?

$ update-alternatives --display pager

will tell you. With `less` as the default pager you can just use SPACE
and b to move through man screens...

-- 
--Jhair


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



Re: Upgrading from Ubuntu to Debian

2006-04-14 Thread Jhair Tocancipa Triana
Chris Dunn writes:

 I'm coming to Debian via Ubuntu.
 Ubuntu (Breezy Badger) mightily impressed me after struggling for
 several years and never quite succeeding with Slackware.

 I'd now like to remove the fluff, and get to the underlying Debian
 basics.

 Is there any established method for moving from Ubuntu to Debian Testing
 without doing a complete new installation of Debian?

I use Ubuntu and Debian (testing) on my laptop, the Debian install was
done through debootstrap.

Take a look at

http://www.debian.org/releases/stable/i386/apcs04.html.en

for details.

This requires a new installation of Debian accessible through the
chroot (I cannot think of a way to move from Ubuntu to Debian without
a new installation of Debian).

HTH,

-- 
--Jhair


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



Re: EJECUTAR KDE EN WINDOWS

2006-04-13 Thread Jhair Tocancipa Triana
Ricardo Frydman Eureka! [EMAIL PROTECTED] writes:

 Pablo Braulio wrote:
 No he probado X-win32, pero si lo he hecho con cygwin por ssh.
  ^^
 
 No hay mas que hacer startx y luego ssh -X -C [EMAIL PROTECTED] comando.

 Eso que escribiste, asi como lo pusiste, sencillamente no le funcionara
 como desea.

 Porque?

 Veamos:

 Hacer startx.  Donde? Si esta en windows?

Cygwin trae startx.

$ which startx
/usr/X11R6/bin/startx

$ uname -a
CYGWIN_NT-5.1  1.5.18(0.132/4/2) 2005-07-02 20:30 i686 unknown unknown 
Cygwin

 En todo caso, primero debe conectarse al host que corre X + KDE
 (ssh, lo segundo que recomiendas), y desde alli, exportar DISPLAY y
 luego iniciar una sesion.

Con ssh -X no es necesario exportar DISPLAY en la máquina remota.

-- 
--Jhair


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



Re: EJECUTAR KDE EN WINDOWS

2006-04-13 Thread Jhair Tocancipa Triana
Ricardo Frydman Eureka! [EMAIL PROTECTED] writes:

 Ricardo Frydman Eureka! [EMAIL PROTECTED] writes:

 Con ssh -X no es necesario exportar DISPLAY en la máquina remota.

 Clarosi usas cygwin, lo cual no es el caso ;)

De donde saca que mi afirmación se refiere únicamente a cygwin?

RTFM:

,[ man 1 ssh ]
| DISPLAY  The DISPLAY variable indicates the location of the X11 server.
|  It is automatically set by ssh to point to a value of the form
|  ``hostname:n'' where hostname indicates the host where the shell
|  runs, and n is an integer = 1.  ssh uses this special value to
|  forward X11 connections over the secure channel.  The user
|  should normally not set DISPLAY explicitly, as that will render
|  the X11 connection insecure (and will require the user to manu­-
|  ally copy any required authorization cookies).
`

$ uname -a
Linux  2.6.9y #1 SMP Fri Oct 29 12:30:33 CEST 2004 x86_64 x86_64 x86_64 
GNU/Linux

-- 
--Jhair


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



Re: seltsame Mails von CRON / Logrotate

2005-07-17 Thread Jhair Tocancipa Triana
Michael Dauer schreibt:

 Hallo,
 ich bekomme regelmäßig Mails vom Cron Daemon:

 Betreff: Cron [EMAIL PROTECTED] test -x /usr/sbin/anacron || run-parts 
 --report
 /etc/cron.daily

 /etc/cron.daily/logrotate:
 kill(16166, 12)
 signal 12 sent to process 16166

 Was will mir das System damit sagen?

Das ist ein Debian Hack, um das xdm-Logfile wieder zu öffnen, wenn
xdm-Logfiles mit logrotate gepflegt werden.

Keine Angst, nichts wird gekillt, nur ein SIGUSR2 Signal wird an den
xdm Prozess zugeschickt und das Signal von xdm entsprechend mit einem
Handler bearbeitet :).

Einzelheiten hier:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=285871

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: OT: Concurrent Version System ohne die Quelldateien zu verändern

2005-05-21 Thread Jhair Tocancipa Triana
Christoph Petersen schreibt:

 mit dem letzten Absatz war gemeint, dass CVS in die Textdateien
 Steuerinformationen einfügt

Nicht immer.

,[ (info (cvs)Avoiding substitution) ]
|There is unfortunately no way to selectively turn off keyword
| substitution.  You can use `-ko' (*note Substitution modes::) to turn
| off keyword substitution entirely.
`

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: Suche ganz leichten Webserver oder wie Kommandozeile per http!?

2005-04-08 Thread Jhair Tocancipa Triana
Dirk Salva schreibt:

 ich suche einen lightweight Webserver, mit dem ich momentan erstmal
 nur statische Seiten (eigentlich sogar nur eine einzige) aufsetzen
 will.

http://people.redhat.com/~mingo/TUX-patches/

,[ http://de.wikipedia.org/wiki/Tux_(Webserver) ]
| Tux ist ein kernelbasierter Webserver für Linux. Er gilt als besonders
| schnell bei der Auslieferung statischer Seiten.
`

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: Tabellenrelationen in mysql grafisch darstellen

2005-03-21 Thread Jhair Tocancipa Triana
Sascha Hüdepohl schreibt:

 * Tobias Krais ([EMAIL PROTECTED]) schrieb:
 Liebe Liste,
 
 kennt ihr ein Tool, dass die Tabellenrelationen einer MySQL-DB grafisch
 darstellen kann?

 gibt es überhaupt Tabellenrelationen in MySQL?

Doch

http://dev.mysql.com/doc/mysql/en/innodb-foreign-key-constraints.html

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: Webcam

2005-03-18 Thread Jhair Tocancipa Triana
ideenpool  schreibt:

 Hallo zusammen!
 Welche Webcam könnt Ihr mir empfehlen? Habe momentan die Philips ToUcam2 ins
 Auge gefaßt. Gibt es Alternativen? Erfahrungen?

Philips ToUcam PCVC740K funktioniert hier mit dem Treiber auf

http://www.saillard.org/linux/pwc/files/

unter Kernel 2.6.11 ganz hervorragend.

 Hintergrund: sie muß die aufgenommenen Bilder direkt auf einem Webserver
 ablegen, an den sie angeschlossen ist.

$ apt-cache show webcam | grep -A3 Description
Description: capture and upload images
 webcam captures images from a video4linux device like
 bttv, annotates them and uploads them to a webserver
 using ftp or ssh in an endless loop.

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: Ordner umbennen

2005-02-20 Thread Jhair Tocancipa Triana
patrik matt schreibt:

 hallo,
 mit welchem befehl/tool ist es möglich alle unterordner innerhalb eines 
 ordners
 in kleinschreibweise umzubennen?

 zum beispiel: Dokumente - dokumente

$ find . -type d -print | xargs rename 'y/A-Z/a-z/'



$ dpkg -S /usr/bin/rename 
perl: /usr/bin/rename

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: mailx ohne exim bzw. für postfix installieren?

2005-01-21 Thread Jhair Tocancipa Triana
Christian  schreibt:

 kann ich mailx nicht auch runter laden und selbst übersetzen? Wo find
 ich mailx? Beim googlen bin ich leider nicht weiter gekommen...

apt-get source mailx

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: chroot bash prompt - was ist die Idee dabei?

2004-10-07 Thread Jhair Tocancipa Triana
Hi,

 Hallo zusammen,
 in sarge findet sich seit kurzem folgende Zeile:

 ,[ /etc/bash.bashrc
 | PS1='${debian_chroot:+($debian_chroot)[EMAIL PROTECTED]:\w\$ '
 `

 Nach einem
 ,
 | # export debian_chroot=unstable
 `

 Hat man dann auch ungefähr so einen Prompt:
 ,
 | (unstable)[EMAIL PROTECTED]:~$
 `

 Ich frag mich nun was das soll. Wenn ich selber Variablen setzten muss
 kann ich auch gleich selbst den Prompt ändern. Gibt es vielleicht irgendeinen
 Mechanismus der die Variable automatisch setzten sollte, der aber bei
 mir (noch) nicht funktioniert?

 Nach lägerem Suchen habe ich z.B. das gefunden:
 ,[ http://lists.debian.org/debian-devel-changes/2004/05/msg00560.html
 | * Update skeleton files and /etc/bash.bashrc to include the contents
 |   of /etc/debian_chroot in the prompt, if the file exists.
 `

 Die Datei habe ich jetzt mal selbst angelegt, aber erwartungsgemäß hat
 das natürlich keine Konsequenzen. Also wenn jemand eine Idee hat wie
 das gedacht ist / war ...

Die Skeleton Files (hier /etc/skel/.bash_profile) werden von bash
nicht direkt evaluiert. Nur beim Anlegen neue Users werden sie nach
$HOME des Users drüberkopiert.

Per default ist aber die Änderung oben kommentiert:

| $ pwd; grep -A5 commented .bash_profile 
| /etc/skel
| # the rest of this file is commented out.
| 
| # set variable identifying the chroot you work in
| #if [ -f /etc/debian_chroot ]; then
| #  debian_chroot=$(cat /etc/debian_chroot)
| #fi

 Wenn man sich übrigens selbst eine Lösung basteln will könnte man z.B. mit
 sowas anfangen:

 ,
 | PS1='$(if [ -f /etc/debian_chroot ]; then echo (`cat /etc/debian_chroot`) ; 
 fi;)[EMAIL PROTECTED]:\w\$ '
 `

Gruss,

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: eclipse

2004-10-06 Thread Jhair Tocancipa Triana
Markus Raab schreibt:

 Kann mich jemand aufklären?
 Bei unstable ist eine brandneue Version von Eclipse und bei testing
 *überhaupt* keine? Habe ich da falsch gesucht?

http://bjorn.haxx.se/debian/testing.pl?package=eclipse

Gruss,

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: MicroStation95, die Zweite

2004-09-20 Thread Jhair Tocancipa Triana
Hi,

 Hallo Liste.  Erstmal ein großes Danke an alle, die mitgeholfen
 haben.  Mikrostation ist installiert.

[...]

 LD_LIBRARY_PATH=/usr/local/ncurses2/lib:/lib:/usr/lib: \
  ^^^
 /usr/lib/libc5-compat:/lib/libc5-compat:   \
 /usr/i486-linuxlibc1/lib:/usr/local/X11R6/lib: \
 /usr/X11R6/lib ldd ./ustation32

 ergibt 

 libm.so.5 = /lib/libm.so.5 (0x40025000)
 libdl.so.1 = /lib/libdl.so.1 (0x4002e000)
 libX11.so.6 = /usr/X11R6/lib/libX11.so.6 (0x40031000)
 libc.so.5 = /lib/libc.so.5 (0x400f8000)
 libdl.so.2 = /lib/libdl.so.2 (0x401b5000)
 libc.so.6 = /lib/libc.so.6 (0x401b8000)
 ld-linux.so.2 = /lib/ld-linux.so.2 (0x402eb000)

Handelt es sich auch (ustation32) um ein ncurses-Programm? Wenn ja,
fehlt hier die Abhängigkeit zu ncurses.

 Beim Versuch das Programm zu starten mit 

 LD_LIBRARY_PATH=/usr/local/ncurses2/lib:/lib:/usr/lib:/usr/lib/libc5-compat:/lib/libc5-compat:/usr/i486-linuxlibc1/lib:/usr/local/X11R6/lib:/usr/X11R6/lib
 ./ustation32

 ergab sich wieder der Speicherzugriffsfehler.

Mit LD_LIBRARY_PATH entsprechend gesetzt, versuch bitte mit

strace ./station32

Es sollte dann erkennbar sein, an welcher Stelle das Program auf die
Nase fällt.

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: MicroStation95 und libncurses.so.2.0

2004-09-18 Thread Jhair Tocancipa Triana
Peter Kuechler schreibt:

 Am Donnerstag, 16. September 2004 16:21 schrieb Martin Wanke:
 Hi;
 
 [On Thu Sep 16 13:25:48 2004 +0200, Küchler, Peter wrote:]
 
  Konfigurieren und Kompilieren hat funktioniert. Die Frage ist, wie ich
  die libs paralell zu den vorhandenen installieren kann? So das nur
  MicroStation95 sie kennt, der Rest vom System aber unbehelligt bleibt?
 
 Z.B. nach /usr/local/microstation/lib installieren und vor dem Starten von
 MicroStation95 dieses Verzeichis mit in $LD_LIBRARY_PATH aufnehmen.

 Leider war das noch nicht alles:-(

 pelle:/image/asuite95/ms95/linux# ./setup
 bash: ./setup: No such file or directory

 Die Zugriffsrechte stimmen selbstverständlich. Mit google hab ich
 noch den Tip gefunden, dan Pfad komplett anzugeben, also

 pelle:/image/asuite95/ms95/linux# /image/asuite95/ms95/linux/setup 
 bash: /image/asuite95/ms95/linux/setup: No such file or directory

 Also auch nichts. Hat jemand eine Idee dazu?

Was sagt 

ls -al /image/asuite95/ms95/linux

?

Wurde /image mit dem Befehl mount[1] angelegt? Falls ja, mit der
noexec Option etwa?

__ 
[1] man 8 mount

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: Remote Desktop von Linux zu Windows

2004-09-18 Thread Jhair Tocancipa Triana
Martin Röhricht schreibt:

 Hallo beisammen,
 ich wollte mal fragen, ob es eine Möglichkeit gibt, von einem Linux PC 
 auf einen Windows XP PC eine Remote Desktop Verbindung aufzubauen. Ich 
 habe das von Linux zu Linux schon mit krfb/krdc geschafft, aber krdc 
 konnte sich (wohl aufgrund des unterschiedlichen Protokolls) nicht mit 
 Windows verbinden. Im Internet war die Rede von rdesktop, allerdings:
 [EMAIL PROTECTED]:~# apt-get install rdesktop
 Reading Package Lists... Done
 Building Dependency Tree... Done
 The following packages will be REMOVED:
   kde kdenetwork krdc
 The following NEW packages will be installed:
   rdesktop
 0 upgraded, 1 newly installed, 3 to remove and 0 not upgraded.
 Need to get 71.2kB of archives.
 After unpacking 659kB disk space will be freed.
 Do you want to continue? [Y/n]

 Dafür wollte ich jetzt nicht das ganze kde runterschmeißen ;-)

Ja, sieht so aus, hättest du krdc aus unstable (siehe #267434). Hilft
vielleicht krdc auf Version: 4:3.3.0-2 zurückzustufen und dann
versuchen rdesktop zu installieren?

Die Version in unstable hat ein

$ apt-cache show krdc | grep -i conflicts
Conflicts: rdesktop (= 1.3.1-1 )

das die Löschung von krdc verursacht.

 Dann gibt es ja wohl noch diesen NXServer und NXClient. Allerdings habe 
 ich da unter nomachine.com nur die kommerziellen Varianten gefunden und 
 keine Homepage zu dem freien Projekt von Fabian Franz zum FreeNX Server. 
 Kennt sich damit jemand aus?

Ich benutze rdesktop beruflich ab und zu, kann ich nur empfehlen.

Gruss,

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: Paketeinteilung für Paketauswahl nutzen

2004-09-12 Thread Jhair Tocancipa Triana
Manuel Soukup schreibt:

 Hi
 Gibt es einen Befehl mit dem man alle Pakete die in Synaptic und Co. 
 unter dem Reiter Textverarbeitung stehen in eine Liste einzutragen und 
 die man dann mit apt get installieren kann?

 Bsp dpkg Pakete in Textverarbeitung  liste.txt

$ grep-available -F Section 'editors' -s Package | cut -f2 -d' '  liste.txt

$ head liste.txt
iiimecf
emacs21-bin-common
conglomerate
kimagemapeditor
vim-vimoutliner
vim-latexsuite
  
$ dpkg -S grep-available | tail -n1
grep-dctrl: /usr/bin/grep-available

Gruss,

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: MicroStation95 und libncurses.so.2.0

2004-09-12 Thread Jhair Tocancipa Triana
Hi,

Miriam Winterling schreibt:

 Ich habe hier ein CAD-Programm für Linux. Auf älteren SuSE
 Installationen habe ich es auch schon erfolgreich zum laufen
 gebracht. Momentan fehlt mir eine zu libncurses.so.2.0 kompatible
 Bibliothek, so daß das Setup-Programm läuft.  Ein einfacher
 symbolischer Link auf libncurses.so.5.4 (Sarge) endet mit einem
 SegVault.

 Ich habe alles, was mir an compat-Paketen aufgefallen ist
 eingebunden, sofern es nicht völlig abwegig war, u.a. libc5*
 termcap-compat.

 Ich habe packages.debian.org nach ncurses2 durchforstet und 
 leider nichts gefunden. Ich habe auch versucht ins Archiv zu 
 schauen, was mir aber wahrscheinlich mißglückt ist.

 Wäre für ein paar Tips echt dankbar. libncurses.so.3 müßte per
 symbolischen Link auch noch laufen.

Laut

| $ pwd; zgrep -A2 libncurses.*corresponds xterm.faq.text.gz 
| /usr/share/doc/xterm
| The libncurses.so.3.0 corresponds to ncurses 1.9.8a; while there have been
| interface changes to ncurses past this point (the current version of ncurses),
| the termcap interface should still be compatible. So (for xterm) it doesn't

sollte[1] das Bauen von

http://www.rz.uni-duesseldorf.de/ftp/pub/gnu/ncurses/ncurses-1.9.8a.tar.gz

libncurses.so.3.0 erzeugen.

Hilft dies weiter?

__ 
[1] Von der Installation solcher alten Libraries würde ich eher
abraten - wer weiss, was für nicht gefixten Sicherheitslücken da
noch drin stehen.

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: Suche Programm für .rdf

2004-08-28 Thread Jhair Tocancipa Triana
Christian Synoradzki schreibt:

 Hallo Liste,
 Ich such ein Programm womit ich .rdf daten mit lesen kann.

 Z.b :

 *http://www.heise.de/newsticker/heise.rdf
 **http://www.heise.de/security/news/news.rdf

 *und so weiter 

 Das Programm sollte an besten unter X laufen.

Gnus.

http://www.gnus.org/manual/gnus_193.html#SEC193

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: Ersatz für Streamripper

2004-08-20 Thread Jhair Tocancipa Triana
Thorsten Haude schreibt:

 Moin,
 ich will einen MP3-Strom auf meine Platte sichern. Mit Streamripper
 klappt es schonmal nicht:
 - - - Schnipp - - -
 [EMAIL PROTECTED] % streamripper http://www.dradio.de/streaming/dlf.m3u
 Warning: splitpoint sanity check not yet complete.
 Connecting...

 error -54 [SR_ERROR_NOT_SHOUTCAST_STREAM]
 bye..
 shutting down
 - - - Schnapp - - -

 Gibt es einen Ersatz?

Vielleicht den Patch auf

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=256695

anwenden?

Gruss,

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: Festplattenfehler (?)

2004-07-10 Thread Jhair Tocancipa Triana
Hallo,

Udo Jans schreibt:

 seit einiger Zeit sehe ich folgende Meldung beim Starten von Sarge:

 balu kernel: hdc: task_no_data_intr: status=0x51 {
 DriveReady SeekComplete Error }
 balu kernel: hdc: task_no_data_intr: error=0x04 { DriveStatusError }
 balu kernel: hdc: Write Cache FAILED Flushing!

 Muss ich mir Sorgen machen? Die Festplatte scheint ansonsten
 einwandfrei zu funktionieren. Kein Datenverlust erkennbar. Und auch das
 Bios-Smart meldet Platte OK.

Maxtor Festplatte? Kernel2.6.7?

 Beim Abschalten des Rechners erscheint die Meldung kurz vorm Power-Off
 mehrfach.

 Was bedeutet die Meldung?

http://article.gmane.org/gmane.linux.kernel/208782

Gruss,

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: Zeichenfolge mit sed aus einer Zeile loeschen

2004-07-04 Thread Jhair Tocancipa Triana
Thilo Engelbracht schreibt:

  [Color-Management] Frage zu Rendering Intents
  Re: [Color-Management] Frage zu Rendering Intents
  Re: [Color-Management] Frage zu Rendering Intents
  AW: [Color-Management] Frage zu Rendering Intents


 Nun möchte ich gerne eine procmail-Regel definieren, die diese
 Zeichenfolge mit Hilfe von sed aus der Subject-Zeile löscht.

 Zuerst habe ich folgendes ausprobiert:

  # Loeschen der Zeichenkette aus der Betreffzeile
  :0fw
  * ^subject:.*\[color-management\]
  | sed 's/^Subject: \[color-management\]/Subject:/'


 Mein Problem: Diese Methode funktioniert nur, wenn die Zeichenfolge
 immer direkt am Anfang der Zeile steht. Meine procmail-Regel wird nicht
 ausgeführt, wenn die Subject-Zeile z.B. mit Re: oder AW: beginnt...

$ cat test.txt 
Subject: [Color-Management] Frage zu Rendering Intents
Subject: Re: [Color-Management] Frage zu Rendering Intents
Subject: Re: [Color-Management] Frage zu Rendering Intents
Subject: AW: [Color-Management] Frage zu Rendering Intents

$ sed s/^Subject: [A-Za-z]*[A-Za-z]*[:]*[[:space:]]*\[Color-Management\]/Subject:/ 
test.txt 
Subject: Frage zu Rendering Intents
Subject: Frage zu Rendering Intents
Subject: Frage zu Rendering Intents
Subject: Frage zu Rendering Intents

Gruss,

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: ssh wget nach abmelden weiterlaufen lassen

2004-06-16 Thread Jhair Tocancipa Triana
David Nawrot schreibt:

 HAllo
 ich möchte mittels wget eine grosse datei aus dem Netz ziehen. Dazu
 muss ich mich auf dem Rechner mittels ssh anmelden. Wie kann ich es
 schaffen, das des Programm anch dem logout wieterläuft? Alle Versuche
 endeten mit dem beenden aller vom Nutzer gestarteten Anwendungen.

(wget URL 21 download.log )

Klammern beachten.

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: Kann Apache Webserver nicht starten

2004-05-16 Thread Jhair Tocancipa Triana
 nach Eingabe von /usr/local/apache2/bin/apachectl start kommt keine
 Meldung.

 [Sat ...] [emerg] (22)Invalid argument: Couldn't set permissions on
 cross-process lock; check User and Group directives

 Entscheidend ist ja sicherlich der Teil Couldn't set permissions on
 cross-process lock; check User and Group directives. Aber was habe ich
 da falsch gemacht.

Hast du keinen Zugriff auf Google?



http://groups.google.com/groups?q=Couldn't%20set%20permissions%20on%20cross-process%20lock%3B%20check%20User%20and%20Group%20directiveshl=enlr=ie=UTF-8safe=offsa=Ntab=wg



Was hat dies mit Debian zu tun?

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: Ich kann Disketten nicht mounten

2004-05-16 Thread Jhair Tocancipa Triana
Michelle Konzack schreibt:

 Am 2004-05-16 21:51:20, schrieb Natanael Arndt:
 Am Sonntag, 16. Mai 2004 21:10 schrieb Michelle Konzack:
 Probiere mal:
 
 /dev/fd/0   /floppy autouser,noauto 0   0
 
 bei /dev/fd/0 kommt die meldung, dass es ein Blockdevice ist.
 
 /dev/fd0 gibt es aber
[...]

 Kann es sein, das du das devfs nicht gemountet hast ?

Aua.

Natanael Arndt schreibt:

 ich verwende einen 2.6.4er Kernel

...dass devfs von 2.6.x nicht mehr unterstützt wird[1] ist
offensichtlich dir nicht bekannt.

__ 
[1] http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev-FAQ

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: 'lame' gleich 'toolame'?

2004-05-16 Thread Jhair Tocancipa Triana
Heino Tiedemann schreibt:

 Michelle Konzack [EMAIL PROTECTED] wrote:
 Am 2004-05-16 19:07:31, schrieb Heino Tiedemann:
 Michelle Konzack [EMAIL PROTECTED] wrote:
[...]
 Der algorythmus im mp3 ist copyrigted und patentiert !!

 Interessant. Unter Windows (inner Firma) nehme ich MusicMatch
 Jukebox. Da gibst eine Basic Version. Die ist zwar nicht open
 Source, aber Kostenlos.

 Wie lösen die die Lizensprobleme?

Sie haben den entsprechenden Patenthalter für die Benutzung ihrer
Patente bezahlt.

-- 
--Jhair

PGP key available from public servers - ID: 0xBAA600D0


-- 
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



  1   2   >