problem with vim!

2005-11-15 Thread Quintin Riis
I'm having a major issue with vim. I'm using v6.4 I believe. The problem is... with my old version of vim, when I edited .php files it would auto-indent html elements, so that it looked something like... html head title etc. and it would line up all the closing elements automatically.

Re: accessing FreeBSD FS from NT or Windows

2004-03-10 Thread Quintin Riis
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 VMWare. Quintin C. Kukulies wrote: | Anyone knowing a way to access a FreeBSD partition/FS from a booted | NT or other Windows system? | | -- | Chris Christoph P. U. Kukulies kuku_at_physik.rwth-aachen.de |

Re: Cron job without emailing errors to root?

2004-03-10 Thread Quintin Riis
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 See documentation for crontab. ``MAILTO='' should do what you want, or send all output from command to /dev/null, i.e. command /dev/null Quintin [EMAIL PROTECTED] wrote: | A quick question-- | I run MRTG for many boxes on my network at five minute

Re: Recycled cd's

2004-03-10 Thread Quintin Riis
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 That has to be worth millions! Are you giving these away for free? :) Quintin Alexei Khalimov wrote: | | Hello there! | | I can send you 2.2.6 release 4CD box, if you wish =) | ___ [EMAIL PROTECTED]

Re: Recycled cd's

2004-03-10 Thread Quintin Riis
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Aww! If I had more disposable income, I would purchase some. Nifty thing to have. Quintin Mark Ovens wrote: | Quintin Riis wrote: | | -BEGIN PGP SIGNED MESSAGE- | Hash: SHA1 | | That has to be worth millions! | | | | If that's the case

Re: xterm

2004-03-06 Thread Quintin Riis
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 `man xterm' `man xfontsel' :) Quintin Gerald S. Stoller wrote: | I use xterm a lot and I always set the font size to | tiny which requires (to my current knowledge) an additional | action (this action is particularly reprehensible to me

Re: seeking shell scripting resources

2004-03-02 Thread Quintin Riis
, Quintin Riis wrote: | | Are you using bash? | | | I'm new and want to learn scripting to help with running my network. So | I'm completely flexible as I don't know enough to have any preferences. | | Try /usr/ports/shells/bash2/work/bash-2.05b/examples/ for a few examples. | | | Ok, making /usr

Re: rejoin mailing list

2004-03-01 Thread Quintin Riis
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 er, see http://lists.freebsd.org/mailman/listinfo/freebsd-questions Rod Brookes wrote: | Please will you re-admit me to the mailing list | rod brookes | | ___ | [EMAIL PROTECTED] mailing list |

Re: Tar command and OpenOffice 1.1 question

2004-03-01 Thread Quintin Riis
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Try `man tar', then reply if you still have questions. Quintin Stephen Liu wrote: | Hi all folks, | | I have following packages download from OpenOffice site to a folder in 'user' | directory; | | /home/user/download/ | en-ooodict-GB-1.2.tgz |

Re: How to remove a non-empty directory

2004-03-01 Thread Quintin Riis
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 You have the ports tree installed, yes? It contains makefiles for over ten thousand applications. Try # cd /usr/ports/ # make search key=midnight Also, read the manual pages and the handbook before asking questions, please. `man rm' should help you.

Re: problems with FreeBSD 4.9 disk 1 ISO image

2004-02-18 Thread Quintin Riis
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 ...did you check the md5sum ? Chan Fook Sheng wrote: | Hi | | I think there is some problem with the ISO image for disk1 of FBSD4.9, I | burnt two copies, and they both failed during installation. | | Now I'm using FTP to install | | fs | |

Re: Very importand i need help !

2004-02-18 Thread Quintin Riis
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 ~From RFC on netiquette... Mail should have a subject heading which reflects the content of the message. http://www.dtcc.edu/cs/rfc1855.html Maybe FreeBSD CD labels ? would be better subject if you were to ask this again? :) Quintin Constantin

Re: Very importand i need help !

2004-02-18 Thread Quintin Riis
/18/2004, Quintin Riis [EMAIL PROTECTED] wrote: | | |-BEGIN PGP SIGNED MESSAGE- |Hash: SHA1 | |~From RFC on netiquette... Mail should have a subject heading which |reflects the content of the message. | |http://www.dtcc.edu/cs/rfc1855.html | |Maybe FreeBSD CD labels ? would be better subject

Re: Creating mp3

2004-02-13 Thread Quintin Riis
. There are lots of cute little gagdets out there that support mp3 and wma, and not as many that support vorbis. This is changing though. Quintin Benjamin Walkenhorst wrote: Hello, On Thu, 12 Feb 2004 23:51:19 -0600 Quintin Riis [EMAIL PROTECTED] wrote: mp3 is outdated, use vorbis. I wouldn't say so

Re: Problem with ssh

2004-02-12 Thread Quintin Riis
man sshd_config Quintin Dragoncrest wrote: Hi again everyone. Ok, this issue just popped up today on a different machine, but it's still bugging me either way. My home mail server (freebsd 4.8) has SSH available to the internet so I can get into the box from work if need be. That is the

Re: Creating mp3

2004-02-12 Thread Quintin Riis
mp3 is outdated, use vorbis. abcde is nice, as is cdparanoia Quintin Earl wrote: What is a good program to create mp3s with? ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail

Re: Creating mp3

2004-02-12 Thread Quintin Riis
I don't use cdparanoia myself, but data can be written to stdout, yes? So... pipe it through oggenc :P Rob wrote: Quintin Riis wrote: mp3 is outdated, use vorbis. abcde is nice, as is cdparanoia My apologies for hijacking this thread. I'm new to this ripping music stuff on FreeBSD, so I

Re: SCP fails while ssh works...

2004-02-10 Thread Quintin Riis
Are you using bash ? If ~/.bashrc generates ANY output, it WILL break the scp and rcp commands. Quintin twig les wrote: Hey all, I have to identical boxes running 4.6 and all of a sudden one stopped taking SCP even though it still takes ssh connections. The other box is still working fine

Re: Redirect text from stdout to a variable?

2004-01-31 Thread Quintin Riis
In Bourne shell: blah=$(something | something) blah2=`blah -K 2 -z` Quintin W. D. wrote: Hey folks, Is it possible to redirect text from stdout to a variable? I do something like this and get the output on the screen: echo Some Text to be Encrypted | /usr/local/bin/gpg -a --always-trust

Re: One of your employees are very rude.

2004-01-31 Thread Quintin Riis
Guy, we have nothing to do with IRC channels, and if you look at the website, you will notice that they are not an official support avenue. Quintin lorink wrote: To whom it may concern, I just want to let the bsd team know this has been a great OS and it is meeting my needs

Re: Code highlighting

2004-01-28 Thread Quintin Riis
Also copy the example .vimrc file from /usr/local/share/vim/vim62/vimrc_example.vim Quintin Jon-Eirik Pettersen wrote: You can use :syntax on parahat melayev wrote: I am using Vim but it doesn't. Did I miss something? On Wed, 28 Jan 2004 14:52:27 +0100, Massimiliano Stucchi wrote On Wed,

Re: CPU usage goes way up on 5.1 when memory is added

2004-01-24 Thread Quintin Riis
Install GENERIC kernel and see if the problem persists. Quintin Richard G. Roberto wrote: Hi, I've been running 5.1-RELEASE for quite some time on my dual PIII 333Mhz Micron PC with 384MB of RAM and 670MB of swap. Its a little low on memory for what I'm now doing with it though, so I added

Re: VMware 3 crashes 5.2 system

2004-01-22 Thread Quintin Riis
I'm pretty sure that VMware doesn't currently support 5.x in any fashion. Quintin Konrad Heuer wrote: Does anyone successfully run VMware 3 on 5.2-R? After upgrading from 5.1-R to 5.2-R my system crashes shortly after VMware begins to initialize. The modules vmmon etc. have been rebuild after

Re: choice of boot manager

2004-01-15 Thread Quintin Riis
LILO is the best in my opinion. Quintin [EMAIL PROTECTED] wrote: Good morning, FreeBSD enthusiasts. I am planning a multiple operating system installation on a Compaq Proliant 5000. The purpose of the installation is hobbyist and instructional. The computer does not provide network

Re: New installation: Hanging when trying to dial out

2004-01-14 Thread Quintin Riis
See http://speecart.chg.ru/handbook/disks-bios-numbering.html Quintin John Adams wrote: On Tuesday, January 13, 2004, at 06:57 PM, fbsd_user wrote: Try this command to mount the cd drive. First load the 4.6 install cd in cd drive mount /cdrom cd /cdrom ls cd / umount

Re: -HUP 1 command

2004-01-14 Thread Quintin Riis
I believe the common command for this is -SIGHUP. This depends on the software though. Quintin fbsd_user wrote: After making changes to syslog.conf and newsyslog.conf what is the command to enable the changes. Is it Kill -HUP 1 ___ [EMAIL

Re: Information

2004-01-14 Thread Quintin Riis
Berkeley Software Distribution Advanced Micro Devices Scalable Processor ARChitecture Quintin Kevin R. Lee wrote: Hello, I was wondering what BSD stands for? Also what does AMD and Ultra SPARC stand for? Any information would be very helpful. ___

Re: one more

2004-01-14 Thread Quintin Riis
Those are 64bit CPUs developed by Intel and AMD. Quintin Kevin R. Lee wrote: This is the last one! What does IA-64 and AMD64 stand for? ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe,