Re: how to create a binary package
belahcene wrote: Hi every body, can I post it here or on devel-list? I try to use the last lyx 1.3.5, from the source ( I didn't find a debian binary), ./configure --with-frontend=qt gives the folowing error checking for moc2... not found checking for moc... not found configure: error: moc binary not found in $PATH or /bin ! where can I find the package? The strange is , with the 1.3.4 there is no probleme with rpm on my debian? thank you for answer Install the QT development tools. --K-sPecial -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: lyx-1.3.5 for debian
belahcene wrote: Hi, every body I want to upgrade lyx to the latest version 1.3.5 I tried the rpm created for fedora, there was error, same thing with the source I need extra files, is there who created it for debian ? thanks a lot bela Install the QT development package, should be something like qt-devel --K-sPecial [ http://xzziroz.freeshell.org irc://xzziroz.dtdns.net ] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: radius/pppd problems
Nathan Kroll wrote: I am setting up a PPTP VPN that authenticates users against a radius server. I compiled pppd with radius support and made the changes to the pptpd and pppd configurations that I found online (they are below). The FreeRADIUS server is set up to authenticate via LDAP. When I tested the VPN as a user in ldap, the radius server decline the authorization due to no password being passed. If I add a user to the radius users file and authenticate as that user, everything is ok. So I think the problem is between the pppd auth configs and what radius expects for authentication. I'm just not sure what to try from this point. /etc/ppp/pptpd-options: name pptpd refuse-pap refuse-chap refuse-mschap require-mschap-v2 require-mppe-128 ms-dns ms-wins proxyarp nodefaultroute debug lock plugin radius.so /etc/pptpd.conf: option /etc/ppp/pptpd-options debug bcrelay eth0 localip xxx.xxx.xxx.xxx remoteip xxx.xxx.xxx.xxx-xxx All auth attempts were done with a windows client with the default settings. I'd appreciate any help. Thanks. Maybe you'll get more help in gmane.linux.ppp :) They where very helpful with my last ppp question. --K-sPecial -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Beginner's?? Question
David Baron wrote: Quick answer: How might one retrieve the path to the most recent entry in a directory to pass to something else in a bash script? [EMAIL PROTECTED]:/tmp$ echo $OLDPWD /home/kspecial [EMAIL PROTECTED]:/tmp$ echo $PWD /tmp [EMAIL PROTECTED]:/tmp$ PWD contains the current directory while OLDPWD contains the last accessed directory. --K-sPecial [ http://xzziroz.freeshell.org irc://xzziroz.dtdns.net ] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: (unknown)
Nelson, Quinten Charles wrote: I just bought an HP with an AMD 64 processor. It came w/ wireless keyboard/mouse. If I install debian stable or unstable will it have drivers for these or will I need a plugged in keyboard/mouse. -A Reasonably Confused newbie The wireless stuff should all be done in hardware, ie if it's like [mouse] [hub]--[ps/2 on back of computer] it should act just like a regular ps/2 mouse :) --K-sPecial [ http://xzziroz.freeshell.org irc://xzziroz.dtdns.net ] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: lilo and mbr
Punit Ahluwalia wrote: I upgraded the kernel to 2.6.7, and successfully booted with the new kernel once. However, I had to compile the kernel again, to include some additional support. I cannot boot after compiling and installing the kernel the second time. I received a message during the configuration that mbr.b was missing. I don't see it in /boot. On booting, numbers start rolling on the screen as soon as BIOS transfers the control. I suspect I have damaged the mbr. Any ideas? __ Do you Yahoo!? Meet the all-new My Yahoo! - Try it today! http://my.yahoo.com Yea, run lilo and it should make a new mbr conforming to your lilo settings. /sbin/lilo -M [-z] - write a Master Boot Record on a device - or clear the device serial number But i'm thinking -M requires an mbr.b so you'll have to regenerate one. --K-sPecial [ http://xzziroz.freeshell.org irc://xzziroz.dtdns.net ] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: file/package counter
Tshepang Lekhonkhobe wrote: Hi, Is there any package that enables one to count the number of files in a directory(s) and/or number of packages installed on a system. Thanks... Well to figure out how many files in a directory (not including directories and not including files in sub directories: 'find -type f -maxdepth 1 | wc -l' To find how many directories and files in a single directory (still not including sub directories) 'find -maxdepth 1 | wc -l' Both can be applied, removing the '-maxdepth 1' parameter, and checking the directory specified and all it's subdirectories. so 'find | wc -l' would tell you how many directories and files (including subdirectores and their files/directories) are present in the given path.. you get the point. There might be better ways to do this I don't know. Note when not using -type f, one directory will be counted as the current directory. --K-sPecial [ http://xzziroz.freeshell.org irc://xzziroz.dtdns.net ] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Mouse ps/2 doesn't work
Mariusz Antonik wrote: Hi. I just install a debian sarga from internet. Probably during intalation I bad chose a mouse and now it doesn't work. Can somebody tell me where I can reconfigure a mouse? Under konsole from KDE package when I run a "mc" , it doen't look nice. TO change it to normal view I have to set a fonts to UNICODE. When I try it it give me a error: " Font '-misc-fixed-medium-r-normal--15-140-75-75-c-90-iso10646-1' not found Check README.linux.console for help " Where I can find this file? I chenk for fonts xfonts-7dpi - are last, than what I am missing? Thanks for help Since a mouse is used with X Windows it would make sense for it to be in x's config. Ie /etc/X11/XF86Config-4 for me. In there you will find lines ie: Option "Device""/dev/psaux" Option "Protocol" "PS/2" Option "Emulate3Buttons" "true" Option "ZAxisMapping" "4 5" as an input device. Furthermore you can configure the accelleration of your mouse movements with the 'xset' command. --K-sPecial [ http://xzziroz.freeshell.org irc://xzziroz.dtdns.net ] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Old HDs missing with PCI RAID controller (Sil680) support.
It seems that whenever I compile my kernel, which is version 2.4.24, with nothing different except support for my PCI ATA-133 RAID controller, that my other HDs are missing. Once compiled and while booting with the the binary that has support, the kernel will find the 30GB that is lying on the PCI card and assign it as hda. The kernel will not display that it's finding the HDs on the motherboard's IDE controller, therefor I get kernel panic because what used to be /dev/hda1 (my root partition) is now the new HD on the new RAID controller. I have tried passing the kernel different root devices starting with hdb and moving to hdh (hoping to land on it), with no luck. I have tried to assign it parameters (that i'm not familiar with) like ide=reverse, with no luck. So the last thing I tried was to add an initrd image that the kernel could use to boot with, hoping it would get far enough to notice the HDs on the motherboard (my root partition), this also did not work, and I had no luck. I'm hoping someone has seen this issue before, and can therefor help me correct it. If it helps any the panic error is that it can't find init. Which it of course can't find if I have no root partition? --K-sPecial -- __ Check out the latest SMS services @ http://www.linuxmail.org This allows you to send and receive SMS through your mailbox. Powered by Outblaze -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]