Linux-Setup Digest #996, Volume #20 Thu, 5 Apr 01 23:13:08 EDT
Contents:
Re: Can't build kernel--"redefinition of `struct user_struct'" (Brue Halco)
Re: ask for help about chroot, Thanks in advance. ("harrison")
Re: how to dis-partition? ("ekkis")
Mandrake 7.2 .iso image ("01nk")
Re: CDRW Drive (E J)
Need to Install Debian over a RedHat install but... ("MKinn")
Having problem creating partition (John Fusek)
Re: SCSI emulation on SuSE 7.0 (Jerry Kreps)
building gnutella/etc server (maher)
Re: Red Hat 7.0 & Lilo ("Elem103")
Re: FYI on Power Failure induced crashes (in Linux) (Arthur Sowers)
Where is smbpasswd? ("Hiawatha Bray")
Re: Epson printer configuration for LaTeX (Markus Kossmann)
Re: Xfree 4.0.2 dpms doesn't work (Zed)
----------------------------------------------------------------------------
From: Brue Halco <[EMAIL PROTECTED]>
Subject: Re: Can't build kernel--"redefinition of `struct user_struct'"
Date: Thu, 05 Apr 2001 19:45:42 -0400
Unfortunately, that was no help. I started over with
make mrproper
make xconfig
make dep
make
bzImage
but got the same error :-(
Bruce
Marc Ledauphin wrote:
>
> Before setting values of the new kernel type make mrproper
>
> >>>>>>>>>>>>>>>>>> Message d'origine <<<<<<<<<<<<<<<<<<
>
> Le 31/03/2001, � 23:53:40 h, Brue Halco <[EMAIL PROTECTED]> vous a
> �crit sur le sujet suivant Can't build kernel--"redefinition of `struct
> user_struct'":
>
> > This is a Mandrake 6.0 system. I can compile the original 2.2.13
> > kernel ok, but it seems like time for an upgrade. I downloaded
> > the 2.2.18 sources and header files, (and various and sundry other
> > stuff to resolve dependency problems, RPM upgrade, etc). Got
> > everything seemingly installed ok.
>
> > "make xconfig" -- ok
> > "make dep" -- ok
> > "make" -- NOT ok
>
> > make trundles along for a short while, then dies at
>
> > make[2]: Entering directory `/usr/src/linux-2.2.18/kernel'
> > cc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes -O2
> > -fomit-frame-pointer -fno-strict-aliasing -pipe -fno-strength-reduce
> > -m486 -malign-loops=2 -malign-jumps=2 -malign-functions=2 -DCPU=586
> > -c -o fork.o fork.c
> > fork.c:48: redefinition of `struct user_struct'
> > make[2]: *** [fork.o] Error 1
> > make[2]: Leaving directory `/usr/src/linux-2.2.18/kernel'
> > make[1]: *** [first_rule] Error 2
> > make[1]: Leaving directory `/usr/src/linux-2.2.18/kernel'
> > make: *** [_dir_kernel] Error 2
>
> > I gather the conflict is with the definition of user_struct in sched.h,
> > but I have no clue what to do next (I'm *not* a c programmer).
> > I'd appreciate any pointers about how to deal with this.
>
> > Thanks
>
> > Bruce Halco
------------------------------
From: "harrison" <[EMAIL PROTECTED]>
Subject: Re: ask for help about chroot, Thanks in advance.
Date: Thu, 5 Apr 2001 17:21:12 -0700
Hi,
First of all , i shall say Thank you so much for your great help from my
inner part .:-)
I do have successfully done for ftp service , i am using Wu-ftp on RedHat
Linux. :-)
What i have right now is grant a user a shell account and only allow him
remotely access
the RedHat linux via SSH and restrict his access on nothing but the file
and dir
Under His Own Home Directory .
I have got some other help that told me to write a restricted shell like
rbash in bash to achieve
the goal , I will post the result once i have done it.
What i have tried is replace the corresponding user's default shell
environment "/bin/bash" with
a new restrict shell , i add the following line into this new shell :
sudo chroot $HOMEDIRECTORY /bin/sh
of course , no password required for sudo of chroot command for this user.
but that maybe open a hole that it runs a suid program , right ?
waiting for your help again , :-)
c u online then.
"H.Bruijn" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> On Wed, 4 Apr 2001 17:00:43 -0700, harrison allegedly wrote:
> >Hi, All Friends :
> >
> > My Question is :
> >
> > Provide user a unix/linux shell account and a home directory, for
> >security reason,
> > after logging into the system, he can traverse no other system
directories
> > but his own homedirectory(all the file and dirs under his HOME
DIRECTORY).
> >
> > What i Have done is :
> >
> > 1. copy
/etc,/lib,/bin,/sbin,/usr/bin,/usr/sbin,/etc/skel,/lib,/usr/lib
> >these dirs under the "/" to
> > the corresponding home dir
> > 2. running CHROOT command like:
> > chroot $USERHOMEDIR /bin/sh
> > 3. then what should i do next ?
> > I have tried to replace the user'shell with a new one which contains
> >the following command:
> > sudo chroot $HOMEDIRECTORY /bin/sh
> >
> > Is this the best effiecient way to achieve the goal ? or any other
> >alternative way except modifying
> > the linux login souce code?
> >
> > Any Help will be greatly appreciated. Thanks in advance.
>
> First IMHO there are very, very few valid reasons that make such
> eleborate chroot schemes necessary. There is little harm in allowing
> users to see the layout of your system, they can't modify anything.
> Just close the home directories of your users to all ut their owners
> and all privacy will be assured.
> Besides, you don't need to be affraid unskilled users abuse that
> information, and skilled ones can, when they are determined, break out
> of chroot contructions.
>
> But instead of doing all the above, search on http://freshmeat.net for a
> restricted shell, or read the documentation of the bash shell, since
> when you start the bash shell with the option restricted or as rbash
> (symlink to bash) you get (from the man page) :
> RESTRICTED SHELL
> If bash is started with the name rbash, or the -r option
> is supplied at invocation, the shell becomes restricted.
> A restricted shell is used to set up an environment more
> controlled than the standard shell. It behaves identi-
> cally to bash with the exception that the following are
> disallowed or not performed:
> o changing directories with cd
> o setting or unsetting the values of SHELL, PATH,
> ENV, or BASH_ENV
> o specifying command names containing /
> o specifying a file name containing a / as an argu-
> ment to the . builtin command
> o Specifying a filename containing a slash as an
> argument to the -p option to the hash builtin com-
> mand
> o importing function definitions from the shell envi-
> ronment at startup
> o parsing the value of SHELLOPTS from the shell envi-
> ronment at startup
> o redirecting output using the >, >|, <>, >&, &>, and
> >> redirection operators
> o using the exec builtin command to replace the shell
> with another command
> o adding or deleting builtin commands with the -f and
> -d options to the enable builtin command
> o specifying the -p option to the command builtin
> command
> o turning off restricted mode with set +r or set +o
> restricted.
> These restrictions are enforced after any startup files are read.
>
> When a command that is found to be a shell script is executed
> (see COMMAND EXECUTION above), rbash turns off any restrictions
> in the shell spawned to execute the script.
>
>
> Simply setting some restrictive defaults for PATH and you'll get quite
> far. fi PATH=/usr/bin/restricted
> And /usr/bin/restricted has a number of symlinks to the only
> commands/programs the unfortunate user may use. Make sure that the
> partition with the home-directories is mounted with the noexec option,
> that will prevent users from downloading, installing and running their
> own binaries and scripts .
> --
> If a trainstation is the place where trains stop, what is a workstation?
> ------------------------------------------------------------------------
> Herman Bruijn website: http://hermanbruijn.com
> The Netherlands
------------------------------
From: "ekkis" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.misc
Subject: Re: how to dis-partition?
Date: Thu, 5 Apr 2001 17:20:49 -0700
"Floyd Davidson" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> Become root, and go to single user mode first, with "init s". Then
> do:
>
> mkdir /u1
> cp -a /usr /u1
> mv /usr /u2
> mv /u1/usr /usr
> umount /dev/hda5
> rmdir /u2
> mount -t ext2 /dev/hda5 /u1
>
> You can now return to multiuser mode, with "init 5" or whatever
> is appropriate for your particular Linux distribution. Before
> deleting files on /dev/hda5 (now mounted on /u1), make sure that
> things are working OK with the new /usr directory. Once you are
> satisfied that all is well you can rm the files, just reformat
> the filesystem, or whatever.
too cool. thx! ok... since I don't have enough room on / to move /usr's
contents I'll have to shrink /usr and give the space to /. the docs for
parted don't specifically state it but I imagine a resize kesps data. if
this isn't the case, please someone scream!
here's my layout:
(parted) print
Disk geometry for /dev/hda: 0.000-19623.515 megabytes
Disk label type: msdos
Minor Start End Type Filesystem Flags
1 0.031 23.532 primary ext2 boot
2 23.533 19618.439 extended
5 23.563 8958.120 logical ext2
6 8958.151 17892.707 logical ext2
7 17892.738 18151.567 logical ext2
8 18151.598 18410.427 logical ext2
9 18410.458 18669.287 logical linux-swap
Filesystem 1k-blocks Used Available Use% Mounted on
/dev/hda8 256667 83514 159901 35% /
/dev/hda5 9005272 3280128 5267696 39% /usr
and what I mean to do.
parted# resize 5 23.563 4490.842
parted# move 6 4490.873 13425.429
parted# move 7 13425.460 13684.289
parted# resize 8 13684.320 18410.427
does the above seem reasonable?
1k thx - e
------------------------------
From: "01nk" <[EMAIL PROTECTED]>
Subject: Mandrake 7.2 .iso image
Date: Fri, 6 Apr 2001 01:51:07 +0100
hello,
I've just downloaded the .iso image of Linux Mandrake 7.2. I've tried
burning it to a CD but it just saved the image in the CD's root as the
image, (Mandrake72-inst) not as the acutal OS. Am i supposed to extract
this image first to a directory and then burn the files in that directory
onto a CD? If so does anyone know of a utility to do this and where to get
it plz? Otherwise if this isn't what i'm supposed to do, what am I supposed
to do?
thanks
------------------------------
From: E J <[EMAIL PROTECTED]>
Subject: Re: CDRW Drive
Date: Fri, 06 Apr 2001 00:56:30 GMT
Read http://linuxdoc.org/HOWTO/CD-Writing-HOWTO.html for background
material.
$ su -
password: <scret>
# # RH6.2 is conf.modules RH7.0 is modules.conf
# cp /etc/modules.conf /etc/modules.conf.bak
# vi /etc/modules.conf # use your favorite editor to edit modules.conf
Modify modules.conf for your CDROM writer, my CDROM is located at
/dev/hdc
Here is my conf.modules
# --- add this to your conf.modules -------
alias scd0 sr_mod
alias scsi_hostadapter ide-scsi
options ide-cd ignore=hdc
# --- end -------
# cp /etc/rc.d/rc.local /etc/rc.d/rc.local.bak
# vi /etc/rc.d/rc.local
# --Put this at the end of the rc.local---
# load ide-scsi module
insmod ide-scsi
#---end---------
# cp /etc/lilo.conf /etc/lilo.conf.bak
# vi /etc/lilo.conf
put the append statement for /etc/lilo.conf your cdrom
'append="hdX=ide-scsi"' and run lilo.
Here is /etc/lilo.conf, my CDROM is located at /dev/hdc
boot=/dev/fd0
timeout=100
message=/boot/message
prompt
image=/boot/vmlinuz-2.2.14-6.1.1
label=linux
root=/dev/hda4
append="hdc=ide-scsi"
read-only
# /sbin/lilo
Now relink the /dev/cdrom to your scsi emulation of your cdwriter
# mv /dev/cdrom /dev/cdrom.bak
# ln -s /dev/scd0 /dev/cdrom
Reboot. (I don't know how to restart with new conf.modules and rc.local
in linux :( )
Run dmesg to see if your scsi emulation is working after the reboot
# dmesg
scsi0 : SCSI host adapter emulation for IDE ATAPI devices
scsi : 1 host.
Vendor: HP Model: CD-Writer+ 8100 Rev: 1.0g
Type: CD-ROM ANSI SCSI revision: 02
Detected scsi CD-ROM sr0 at scsi0, channel 0, id 0, lun 0
sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
Uniform CDROM driver Revision: 2.56
Run cdrecord to see if you scsi emulation is working also.
# cdrecord -scanbus
Cdrecord 1.8 (i686-pc-linux-gnu) Copyright (C) 1995-2000 J�rg Schilling
Using libscg version 'schily-0.1'
scsibus0:
0,0,0 0) 'HP ' 'CD-Writer+ 8100 ' '1.0g' Removable
CD-ROM
0,1,0 1) *
0,2,0 2) *
0,3,0 3) *
0,4,0 4) *
0,5,0 5) *
0,6,0 6) *
0,7,0 7) *
I hope it works for you, it works for me
Stuart wrote:
> I have redhat 7 with kernel 2.4.3 w/ scsi emul. has a module
>
> how do i make it emul. hdd has scd0
------------------------------
From: "MKinn" <[EMAIL PROTECTED]>
Subject: Need to Install Debian over a RedHat install but...
Date: Thu, 5 Apr 2001 21:15:40 -0400
I have an old Dell optiplex GXi that does not allow me to boot from CD. I
have upgraded the bios to vA05 from A00, and I am not offered a choice to
"Boot from CD" in the boot sequence options.
I need to reformat box and install Debian from my 3 Debian CD's.
How would I do this ?
------------------------------
From: John Fusek <[EMAIL PROTECTED]>
Subject: Having problem creating partition
Date: Thu, 5 Apr 2001 20:12:25 -0400
I have been issued a HP pavilion 5250 laptop with both win/me and win2k on it.
The reason I have it is for it to serve as a terminal with my cell phone. I am
a HP3000 system administrator/manager. Well I thought rather then let this go
to waste as HP3000s have few problems I thouhg I would put linux on it and do
some useful work. The win stuff show over 5 gig free and that there were a
couple of partitions, the big one with the free space was last and was FAT32.
So I defragmented and scanned. Then got the FIPS that handles FAT32. It would
only give me a few hundred meg where I was looking for 4 gig or so. It said
there was a file on the disk that prevented it giving me more. The defragger
did not show anything. I also lost win/me but no big deal.
So how do I find that file and move it or whatever? I know next to nothing
about windows and have to no desire to learn. So please make it simple, thanks.
John Fusek
[EMAIL PROTECTED]
------------------------------
From: Jerry Kreps <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.misc,alt.os.linux.suse
Subject: Re: SCSI emulation on SuSE 7.0
Date: Thu, 5 Apr 2001 20:50:12 -0500
Donald Stidwell wrote:
> Pascal MiQUET wrote:
> >
> > Books from 7.1 Pro told us to add into /etc/init.d/boot.local the
> > following command :
> >
> > /sbin/modprobe ide-scsi
> >
> > and to make links ln -sf /dev/scd0 /dev/cdrom
> >
> > HTH
> > PMiquet
> >
>
> And that's exactly what works.
BUT, NOT with every IDE cd-rw out there. My IDE PleXWriter 8432Ti won't
work reliably with ide-scsi emulation, and the only way I can play audio CDs
is with xcdroast. My next CDRW will be scsi, and so with the zip drive.
JLK
> The instructions for several things in
> the Personal edition of 7.0 are incomplete or misleading. (Try following
> the instructions for setting up a TV card if you don't have WinTV card.
> You'll never get it working).
>
> I bought the Pro version of 7.1 and it's interesting to see how much
> more accurate the information is in the manuals for Pro.
>
> Don
------------------------------
From: maher <[EMAIL PROTECTED]>
Subject: building gnutella/etc server
Date: Fri, 06 Apr 2001 09:56:46 +0500
Hi there,
Does anyone knowns about configuring and setup your own some sort of
gnutella server?I would like to build my own server and share with my
private network.Anyone know other than gnutella or any software that can
customize server and client?
thank you very much,
maher
------------------------------
From: "Elem103" <[EMAIL PROTECTED]>
Crossposted-To: aus.computers.linux
Subject: Re: Red Hat 7.0 & Lilo
Date: Fri, 6 Apr 2001 12:13:04 +1000
"Markku Tikkanen" <[EMAIL PROTECTED]> wrote in message
news:9ah85a$obg$[EMAIL PROTECTED]...
> Elem103 <[EMAIL PROTECTED]> wrote:
>
>
> >> Can Win 2k boot loader run after lilo has taken in? I had the idea that
2k
> >> acts like NT and doesn't boot if it doesn't 'own' the MBR? Am I wrong?
>
> > I'm running my system with NT and Linux and Linux owns MBR. Also have a
> > system with Win2K and linux and it works fine too.
>
> OK. I'm just making sure that this is possible, because Red Hat guides
> state that: "To create a dual-boot environment on a system that currently
> has NT, you must install LILO on the first sector of the root partition,
> not the MBR."
>
> I have also assumed, that NT or 2k won't boot if it doesn't
> own the MBR. Glad that you made it. How did you install the OS's? First
> the M$ stuff and then Linux, writing the MBR over?
Hmm.. i did this about a year ago. Hope i still remember how to do it ..
properly. Anyway, i think this is what i did.
I made sure that everything is in the first 1024 cylinders of the hard
drive, due to the use of old lilo.
ie.
Partition your hard drive with Linux first. I use fdisk to partition
everything, specifying the correct partition type for each partition. What
i have is:
/dev/hda1 1 131 1052226 b Win95 FAT32
/dev/hda2 132 262 1052257+ 6 FAT16
/dev/hda3 263 279 136552+ 82 Linux swap
/dev/hda4 * 280 526 1984027+ 5 Extended
/dev/hda5 280 296 136521 83 Linux
/dev/hda6 297 305 72261 83 Linux
/dev/hda7 306 338 265041 83 Linux
/dev/hda8 339 469 1052226 83 Linux
/dev/hda9 470 526 457821 83 Linux
Win98 goes in /dev/hda1, WinNT goes into /dev/hda2 and Linux root partition
/ goes into ... /dev/hda5 :) Yeah i know this is messy oh well.
Always always install Win95/98/ME2000 first. That thing always mess around
with your MBR.
Then install WinNT.
Then it's time to install linux. Install normally.
/dev/hda5 /
/dev/hda6 /tmp
/dev/hda7 /var
/dev/hda8 /usr
/dev/hda9 /home
Add LILO to MBR with /dev/hda1 as Win98, /dev/hda2 as WinNT and image in
/dev/hda5 as linux.
Then again, i manually edit lilo so that i can boot into those 3 operating
system and i'm using Debian.
eg.
boot=/dev/hda
root=/dev/hda5
install=/boot/boot.b
map=/boot/map
delay=5
default=Linux243
image=/boot/vmlinuz-2.4.3
label=Linux243
read-only
other=/dev/hda1
label=Win95
other=/dev/hda2
label=WinNT
> Anyway this prob below was odd, I thought that newer lilo's could load
> with that lba32 setting the OS being quite far from beginning of drive. Or
> is that the problem I'm having?
Well, i have not tested lilo much, so i can't really say. Most of the time,
i just made sure that my boot partition is above 1024.
Cheers,
Elem103
------------------------------
From: Arthur Sowers <[EMAIL PROTECTED]>
Crossposted-To:
comp.unix.solaris,comp.unix.questions,alt.os.linux,alt.os.linux.caldera,alt.os.linux.redhat,alt.os.linux.questions,comp.os.msdos.misc,linux.redhat.install,sci.research.careers
Subject: Re: FYI on Power Failure induced crashes (in Linux)
Date: 6 Apr 2001 02:33:38 GMT
On Thu, 5 Apr 2001, G.T. wrote:
> x-no-archive: yes
> Arthur Sowers wrote:
> >
> > On 5 Apr 2001, Craig Kelley wrote:
> >
> > > Arthur Sowers <[EMAIL PROTECTED]> writes:
> > >
> > > [snip]
> > >
> > > > ntsysv <cr>
> > > >
> > > > and it brought back the whole list of services that it controls complete
> > > > with "check" marks or blank spaces for all of the services that are
> > > > accessible. I just un-Xed all the services that were part of the default
> > > > install except the log, printer, and one other (can't remember) services
> > > > and closed the window. Then graceful shutdown & reboot, and sure enough, I
> > > > can now turn off the power switch, turn it back on 20-30 sec later, and it
> > > > all boots up just fine (it does do a filecheck that takes maybe a minute
> > > > or so, but still ends up with a complete bootup). Even with StarOffice
> > > > runing, a power off and turn back on still boots up fine and can launch SO
> > > > fine, and it works fine, and it all collapses back upon exit from the
> > > > application and does graceful shutdowns without problems.
> > >
> > > You *don't* want to do this.
> >
> > I'd like to hear from more people about this.
> >
> > Linux agressivly caches information in
> > > memory, and if you power down at the wrong moment it can potentially
> > > ruin your entire system.
> >
> > When I had a raftload of services runing (as in the default setup), it
> > blew away my bootup (it would lockup before finishing the boot up, or not
> > shut down to "system halt").
> >
> > You should always shut down the machine
> > > properly,
> >
> > I agree. But when I asked in the broad post I made many months ago, I even
> > got back posts and private email from Solaris whips and Unix whips using
> > Linux on boxes and while they all said you should shut down properly, they
> > also said their boxes would survive a random power-off with the OS fully
> > running and had no problems.
> >
>
> You're asking the wrong people then.
I've got to start somewhere. I've asked several people I know (who have
worked with computers, one with Unix, all their lives), face to
face, about this question and gotten unsatisfactory answers (eg. "Just put
a UPS on your system" did not explain why my default install was
intollerant of a power shutdown but when I unchecked many default services
then shutdown and then rebooted I discovered that not only the OS but
some applications were tollerant of a power shutdown). There is a sentence
I read in one Unix book by the author who said he's been in Unix for 20
years and is still learning things.
Until you start using ReiserFS or
> another journaling filesystem you are risking major filesystem
> corruption.
I am aware of five filesystems and some of the advantages and
disadvantages of two or three of them. I will stay with the ext2 for the
time being.
I'm less interested in "risk" than I am in what WILL or WILL NOT happen.
> Why are you cross-posting to groups such as comp.os.msdos.misc
There are a lot of bright guys on msdos who know a lot more about OSes,
and many different OSes, than you might think. Some of them don't like
Windows either.
and
> sci.research.careers???
Some of the people I know who are using Linux hang out there and I asked
them this question, and also did not get very satisfactory answers
although I got well meaning attempts. I think I found a partial answer all
by myself and wanted to share it back with them, too, plus any
"fallout" responses to my FYI post.
> Talk about shotgun approach to getting an
> answer. If you didn't get decent suggestions from the linux newsgroups
> for this most basic of problems
I've monitored all of the major Linux newsgroups for the better part of a
year and the question never came up, at least until I posted my original
question. For your information, I have saved all of the most significant
replies I got in a folder off my PINE application and will be willing to
send you a copy if you wish of each saved reply to show you how I
presented the question and what I got in return.
I also monitored the major Solaris and Unix newsgroups also for many
months.
then you should subscribe to one of the
> vendor e-mail lists.
What makes you think the answer will come out of this any better than what
I did? I'd have to wait maybe months to a year for an answer, and maybe an
answer would never appear.
Knowing a few things about commercial computer/software support and
consulting, I will offer that I think I could anticipate that I would be
paying money first, and then getting poor answers rather than good
answers. The same thing happens with rare diseases and rare medical
conditions when they are presented to the medical industry (I have
personal experience).
The SuSE English list is very helpful, don't know
> about the Caldera or Redhat ones as I haven't checked them in years.
Thank you for your response.
Did I answer all of your questions?
I know you didn't answer mine.
Art Sowers
(still evaluating Linux, when time permits)
> Greg
>
------------------------------
From: "Hiawatha Bray" <[EMAIL PROTECTED]>
Crossposted-To: linux.redhat.misc,linux.samba
Subject: Where is smbpasswd?
Date: 06 Apr 2001 02:38:02 GMT
I need it to set up encrypted passwords in Samba, but when I installed RH 7,
smbpaswd did NOT get installed, and I have no idea where it is. Help!
------------------------------
From: Markus Kossmann <[EMAIL PROTECTED]>
Subject: Re: Epson printer configuration for LaTeX
Date: Fri, 06 Apr 2001 04:12:40 +0200
Peter wrote:
>
> Hi,
>
> I got an Epson 890 Photo printer, which I got to work using CUPS and
> gimp-print. Printing foto's from the gimp works fine now.
>
> But...I want to use it for postscript/LaTeX as well, but I cannot get
> decent output. I does print latex, but it looks really light and at
> low resolution (big dots, almost matrix "quality"). I tried to
> generate higher output by modifying my config.ps for divps, and adding
> 720 dpi resolution, but that didn't help.
>
> How can I get good latex/postscript output?
>
you might try turboprint ( www.turboprint.de )
--
Markus Kossmann
[EMAIL PROTECTED]
------------------------------
From: Zed <[EMAIL PROTECTED]>
Subject: Re: Xfree 4.0.2 dpms doesn't work
Date: Thu, 05 Apr 2001 19:57:22 -0700
Thanks, I'll give it a try....
"ne..." wrote:
>
> On Apr 4, 2001 at 16:46, Zed eloquently wrote:
>
> >Trying to get dpms to shut my monitor off after a certain time
> >period.
> >xset -q shows the options are set properly for suspend, sleep, off
> >etc but nothing happens. Options entered in Xsetup_0 or thru KDE
> >Power Control/Energy show everything is enabled, but nothing ever
> >happens. Worked fine with 3.3.6.
> >Compiled 4.0.2 from scratch. Running 2.4.2ac-11 Kernel. Using an
> >Intel CA810 mb. Any switches on compile that might need setting?
> Doing dpms that way does not work for the X 4.x series.
> See snippet below for you XF86Config file.
>
> Section "Monitor"
> Identifier "Monitor0"
> VendorName "IVM"
> ModelName "2140"
> HorizSync 30-110
> VertRefresh 50-160
> Option "DPMS"
> EndSection
> Section "ServerLayout"
> Identifier "XFree86 Configured"
> Screen 0 "Screen0" 0 0
> InputDevice "Mouse0" "CorePointer"
> InputDevice "Keyboard0" "CoreKeyboard"
> Option "standby time" "20"
> Option "off time" "25"
> EndSection
>
> HTH
>
> --
> Registered Linux User # 125653 (http://counter.li.org)
> Diplomacy is the art of saying "nice doggy" until you can find a rock.
> 7:53pm up 18 days, 19:52, 7 users, load average: 0.00, 0.00, 0.00
------------------------------
** FOR YOUR REFERENCE **
The service address, to which questions about the list itself and requests
to be added to or deleted from it should be directed, is:
Internet: [EMAIL PROTECTED]
You can send mail to the entire list by posting to comp.os.linux.setup.
Linux may be obtained via one of these FTP sites:
ftp.funet.fi pub/Linux
tsx-11.mit.edu pub/linux
sunsite.unc.edu pub/Linux
End of Linux-Setup Digest
******************************