latin2 fonts in X

2001-02-22 Thread Michal F. Hanula
Is there a way to force X to use latin2 fonts by default?
(ie. unless an application chooses to use other fonts)
aTdHvAaNnKcSe
MisoFrankie
-- 
Nietzsche is dead.


pgppd7pQz61vO.pgp
Description: PGP signature


Re: grill

2001-02-01 Thread Michal F. Hanula
On Thu, Feb 01, 2001 at 04:25:32PM +0100, Sven Hoexter wrote:
 On Thu, Feb 01, 2001 at 03:57:47PM +0100, Kerstin Hoef-Emden wrote:
  On Thu, 1 Feb 2001, Joris Lambrecht wrote:
 
 Hi,
  
   Look at it this way, maybe if you get this sourcecode you could turn any
   grill in your house into a computer, hehe
  
  Is it possible to collect grills and assemble them to a super-computing
  cluster? What if the outcome is with a weird CPU for which Linux has not
  been ported yet (new Linux platform grill with models electric and
  coal)? 
 You forgot the gas powered models. ;-)
 
 hm, it's a little bit OT now ;-)
 
 Cu,
 Sven
A new mailing list [EMAIL PROTECTED]'' should be created for 
this thread.
MisoFrankie
-- 
Nietzche is dead.


pgpYMBBTLEKf2.pgp
Description: PGP signature


Re: [OT] two domains and one ip / apache [ css weirdness ]

2001-01-16 Thread Michal F. Hanula
On Tue, Jan 16, 2001 at 10:09:18AM -0600, Casey Webster wrote:
 I'm not familiar with style sheets, but if they have a specific extensions
 (.css?), you prog need to setup a handler for it in httpd.conf, i'm not
 sure the exact syntac you would need to enable them, but here's what ia
 have to setup SSI and PHP4:
 
 AddType text/html .shtml
 AddHandler server-parsed .shtml
 AddHandler server-parsed .htmlAddType application/x-httpd-php .php
 AddType application/x-httpd-php-source .phps
 AddType application/x-httpd-php .php3
 AddType application/x-httpd-php .phtml
 AddType application/x-hhtpd-php .php4
 
 The line you want is prob along the lines:
  
 AddHandler ? css
 
 but as i'm not very familiar with style sheets, hopefully someone else
 here can clarify a bit better
 
 -Casey
 
AFAIK stylesheets are processed by the client's web browser - you don't
need a special handler for them. Check whether the stylesheets are on the 
site, whether the URL in link rel=stylesheet... is correct (just give the 
URL to your browser)... 
MisoFrankie
-- 
Nietzche is dead.


pgpmR5h544ZVB.pgp
Description: PGP signature


Re: [OT] two domains and one ip / apache [ css weirdness ]

2001-01-16 Thread 'Michal F. Hanula'
On Tue, Jan 16, 2001 at 05:24:42PM +0100, Joris Lambrecht wrote:
 mmm, must say that the html code has been verified to work,
 
 afraid this is some 'feature' in apache :(
 
 J.L.
What did the browser do when you gave it the URL for the stylesheet?
Any error messages from the server?
MisoFrankie
PS/1 Maybe you could try ``AddType text/css .css'' in srm.conf
-- 
Nietzche is dead.


pgpUeSDYRZwai.pgp
Description: PGP signature


Re: How do you modify WindowMaker menus?

2001-01-14 Thread Michal F. Hanula
On Sun, Jan 14, 2001 at 07:24:20AM -0800, Denzil Kelly wrote:
 I want to add gmc to one of my windowmaker menus,
 however, I've not been able to get it done. Does
 anyone know how to accomplish this?
 
Edit /etc/X11/WindowMaker/menu
The syntax is explained in the file.
MisoFrankie
-- 
Nietzche is dead.


pgpOVox2pteyu.pgp
Description: PGP signature


Re: Command line search and replace

2001-01-07 Thread Michal F. Hanula
On Mon, Jan 08, 2001 at 12:56:45AM +0800, csj wrote:
 Is there a tool to do a search-and-replace from the command line? 
 Something along the lines of:
 
 replace string one string foo files-to-process
 
 I find it a bit of a hassle to keep 100+ files open just to change an 
 .html to an .htm. Note however that I intend to use the tool on 
 other text files besides runaway web pages, such as processing a list 
 of files to feed to tar.
 
Use something like

for file in * do sed 's/replace this/by this/g'  $file  $file.tmp; mv 
$file.tmp $file; done

(there probably _are_ errors, check man sh)
MisoFrankie

-- 
Nietzche is dead.


pgpNBNhYgG7XF.pgp
Description: PGP signature


Re: Network Throughput

2001-01-05 Thread Michal F. Hanula
On Fri, Jan 05, 2001 at 10:25:10AM +0100, Sebastiaan wrote:
 On Fri, 5 Jan 2001, Philipp Schulte wrote:
   KB = Kelvin Byte
  
IIRC `K' as in KB means 1024 (2^10), while `k' as in kB (or kg, or almost 
anything else) means 1000 (10^3). Still not confused?
MisoFrankie
-- 
Nietzche is dead.


pgpm37kQjGT42.pgp
Description: PGP signature


Re: less can't show ä,ü,ö

2000-12-18 Thread Michal F. Hanula
On Mon, Dec 18, 2000 at 09:52:15AM +0100, Manuel Hendel wrote:
 Hi everybody,
 
 kann anyone help fixing my problem with less? I can't see any ä,ü or ö
 if I do a less file.
 
 Thanks for any help,
 Manuel
Try less -r 
MisoFrankie
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 

-- 
Nietzche is dead.


pgpOebLVHNKnm.pgp
Description: PGP signature


Re: Number of processors

2000-12-05 Thread Michal F. Hanula
On Tue, Dec 05, 2000 at 02:01:05PM -0500, Christopher W. Aiken wrote:
 A little off topic...
 
 Does anyone know how to get the number of CPU's
 that a machine has using the C programming 
 language?Any URL's on the subject?
 
 Thanks you...
 
What about parsing /proc/cpuinfo? (this requires you to have /proc filesystem).
MisoFrankie
-- 
Nietzche is dead.


pgplrkyLQnh3r.pgp
Description: PGP signature


Re: default shell

2000-11-21 Thread Michal F. Hanula
On Tue, Nov 21, 2000 at 04:03:25PM -0800, Sathish C wrote:
 Hi All
 
 While creating  a new user in my system if I don't -s option I am
 getting tcsh as the default shell.
 What should I do to get bash as the default shell with out using -s
 option while creating the user.
 I don't want to modify the /etc/passwd file either.
 
 Can any body please tell me the answer?
 
 Thanks in advance
 
 Bye
 Kilaru

Edit /etc/adduser.conf and set DSHELL to /bin/bash
MisoFrankie


-- 
Nietzche is dead.


pgpyG8gFNbwgj.pgp
Description: PGP signature


Re: PINE -- Full headers

2000-09-25 Thread Michal F. Hanula
On Sun, Sep 24, 2000 at 04:05:36PM -0400, Joel Dinel wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 I've made sure the Enable-Full-Headers-Cmd options was selected in Pine's
 ^^^ this is the important part -
 the option only enables the ``full
headers'' _command_. To view full headers, you have to use it (I haven't used
pine for quite a long time, but I think it was ^H. Read the screen.)
MisoFrankie
 setup, and I still don't seem to be seeing the full headers for any emails
 in PINE.
 
 Is there anything else that needs to be done ?
 
 
 Joel Dinel
 [EMAIL PROTECTED]

-- 
Energy equals milk chocolate square.


pgpz0cUqof89z.pgp
Description: PGP signature


Re: what are these things?

2000-09-07 Thread Michal F. Hanula
On Thu, Sep 07, 2000 at 08:12:59AM +0100, [EMAIL PROTECTED] wrote:
 hey list
 
 I'd love to identify some mystery files in my home
 directory. there are 14 of them.  they are big, and
 apparently binary. they are: xaa thru xam, and the last
 one is xxml.el.  Just noticed them yesterday.
The x?? files were probably created by split. Thry 

cat x?? | file -

to find what the original file was.
The xxml.el is probably an Emacs Lisp source - just read it (eg. by less)
to find out more.
MisoFrankie


pgp01HymL26j0.pgp
Description: PGP signature


qmail trouble

2000-07-19 Thread Michal F. Hanula
I have successfully installed qmail 1.02 (slink) and run it for months.
This morning it has suddenly stopped acepting messages from the outside 
world (remote - local) --- local - local and local - remote works OK.

/var/log/mail.log contains several entries saying that 

[...] starting delivery number: msg number to local 
@tristvrte.fphil.uniba.sk

(should be ``to username@tristvrte.fphil.uniba.sk'').

I have compiled qmail (build-qmail from qmail-src), but haven't installed 
the  deb. (needed it for another machine). Could this be the reason?
Any ideas?
aTdHvAaNnKcSe
MisoFrankie





apt-get problem

2000-07-17 Thread Michal F. Hanula
When I try to run apt-get upgrade, it stops with 

mount: can't find /usr in /etc/fstab or /etc/mtab
E: Problem executing scripts DPkg::Pre-Invoke 'mount -o remount,rw /usr'
E: Sub-process returned an error code

I don't have a separate /usr partition (The machine has a 200MB HDD).
Any sugestions?
aTdHvAaNnKcSe
MisoFrankie
PeS/1 forgot to say... running Slink on an i386



mounting root via NFS

2000-06-14 Thread Michal F. Hanula
Is it possible to do this? I would like to set up an ``almost diskless''
workstation, having only the kernel and a swap partition on the local HD.
aTdHvAaNnKcSe
MisoFrankie