Re: how do I fix this?

2012-06-06 Thread Roland Smith
On Tue, Jun 05, 2012 at 03:34:27PM -0700, Gary Kline wrote: On Tue, Jun 05, 2012 at 08:04:35AM +0200, Roland Smith wrote: what I want to do is get as current as possible and then install 7.5. and stay there. 7.5 what? Do you mean Xorg? Please try and be specific.

Re: how do I fix this?

2012-06-05 Thread Roland Smith
On Mon, Jun 04, 2012 at 09:53:11PM -0700, Gary Kline wrote: Subject: Re: how do I fix this? To: FreeBSD freebsd-questions@freebsd.org X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.6; amd64-portbld-freebsd8.3) On Mon, 4 Jun 2012 14:43:08 -0700 Gary Kline articulated: from portupgrade, I

Re: how do I fix this?

2012-06-05 Thread Gary Kline
On Tue, Jun 05, 2012 at 08:04:35AM +0200, Roland Smith wrote: Date: Tue, 5 Jun 2012 08:04:35 +0200 From: Roland Smith rsm...@xs4all.nl Subject: Re: how do I fix this? To: Gary Kline kl...@thought.org Cc: FreeBSD freebsd-questions@freebsd.org On Mon, Jun 04, 2012 at 09:53:11PM -0700, Gary

Re: How to use an external USB3.0 drive with 4k sectors?

2012-06-04 Thread Jens Schweikhardt
On Mon, Jun 04, 2012 at 06:58:07AM +0200, Wojciech Puchar wrote: # # 2. Replace the vendor installed NTFS with a UFS file system. # #$ newfs -U /dev/da1s1 # #(No, I didn't bother to create BSD partitions) # # but why still create msdos partition? I didn't create one, I just left it

how do I fix this?

2012-06-04 Thread Gary Kline
guys, it has taken me almost a month to upgrade 700 ports. somehow, things grew to 1100+ ports. [?] {this is just FWIW.} I've tried portmaster and p'upgrade on security/gnupg I dont see why I should need these on my Server...

Re: how do I fix this?

2012-06-04 Thread Jerry
On Mon, 4 Jun 2012 14:43:08 -0700 Gary Kline articulated: from portupgrade, I just learned this: gmake[1]: Leaving directory `/usr/ports/security/gnupg/work/gnupg-2.0.18' gmake: *** [all] Error 2 *** Error code 1 Stop in /usr/ports/security/gnupg. *** Error code 1 Stop in

Re: how do I fix this?

2012-06-04 Thread Gary Kline
On Mon, Jun 04, 2012 at 06:24:57PM -0400, Jerry wrote: Date: Mon, 4 Jun 2012 18:24:57 -0400 From: Jerry je...@seibercom.net Subject: Re: how do I fix this? To: FreeBSD freebsd-questions@freebsd.org X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.6; amd64-portbld-freebsd8.3) On Mon, 4 Jun 2012 14:43

Re: How to use an external USB3.0 drive with 4k sectors?

2012-06-03 Thread Jens Schweikhardt
I solved it. No kernel or other driver installations necessary beyond those I already had (xhci). 1. Hook up disk to USB 2 Port. - System detects drive and creates device nodes: ugen3.2: Jmicron Corp. at usbus3 umass1: MSC Bulk-Only Transfer on usbus3 da1 at umass-sim1 bus 1

Re: How to use an external USB3.0 drive with 4k sectors?

2012-06-03 Thread Wojciech Puchar
2. Replace the vendor installed NTFS with a UFS file system. $ newfs -U /dev/da1s1 (No, I didn't bother to create BSD partitions) but why still create msdos partition? ___ freebsd-questions@freebsd.org mailing list

Re: How to crontab screen with script inside and a don't run it if it's already running check?

2012-06-02 Thread Dwayne Henderson
this Ruby script 24/7 (records data from this live stream). DH It runs inside a screen though, so it's easy to check in on it DH every once in a while. DH DH But how do I crontab the screen with the script inside it? It has DH to be with a don't run it if it's already running check. DH

Re: How to crontab screen with script inside and a don't run it if it's already running check?

2012-06-02 Thread Jens Jahnke
Hello Dwayne, On Sat, 2 Jun 2012 10:59:09 +0200 Dwayne Henderson its.code.in.h...@gmail.com wrote: DH Nice. But what to do if the machine reboots or whatever. Would you DH crontab your new Irssi alias? I'm not sure. On my remote box I usually start irssi by hand because it only ceases if the

Re: How to crontab screen with script inside and a don't run it if it's already running check?

2012-06-02 Thread Dwayne Henderson
Any comments on this though? */10 * * * * lockf -t 0 /home/anonymous/.myscript.lock /usr/local/bin/screen -dm /home/anonymous/.rvm/rubies/ ruby-1.9.3-p0/bin/ruby /home/anonymous/myscript.rb Thanks for the help! --Dwayne On Sat, Jun 2, 2012 at 12:57 PM, Jens Jahnke jan0...@gmx.net wrote:

Re: How to crontab screen with script inside and a don't run it if it's already running check?

2012-06-02 Thread Jens Jahnke
Hi, On Sat, 2 Jun 2012 14:08:49 +0200 Dwayne Henderson its.code.in.h...@gmail.com wrote: DH Any comments on this though? DH DH */10 * * * * lockf -t 0 /home/anonymous/.myscript.lock DH /usr/local/bin/screen -dm /home/anonymous/.rvm/rubies/ DH ruby-1.9.3-p0/bin/ruby /home/anonymous/myscript.rb

Re: How to use an external USB3.0 drive with 4k sectors?

2012-06-02 Thread Jens Schweikhardt
On Thu, May 31, 2012 at 08:26:21PM +0200, Damien Fleuriot wrote: ... # When I plug it to one of the two USB3.0 ports (using the xhci driver), I # don't get device nodes in /dev created for it, but instead an ever # growing list of # # ugen4.2: Jmicron Corp. at usbus4 # umass2: Jmicron

Re: How to use an external USB3.0 drive with 4k sectors?

2012-06-01 Thread Wojciech Puchar
# mount -t ntfs -o ro /dev/da5s1 /mnt mount_ntfs: /dev/da5s1: Invalid argument ) your dmesg shows drive is properly detected. seems like ntfs driver doesn't work OR MBR is't properly handled. ___ freebsd-questions@freebsd.org mailing list

Re: How to use an external USB3.0 drive with 4k sectors?

2012-06-01 Thread Jens Schweikhardt
On Thu, May 31, 2012 at 06:14:08PM -0400, Thomas Mueller wrote: ... # I think you also need xhci driver in kernel config. xhci is for USB 3.0. It's there. As I said, using a USB 3 *Stick* works fine. It is recogized as 3.0 and the speed is as expected. It's the *Disk* that is not recognized.

Re: How to use an external USB3.0 drive with 4k sectors?

2012-06-01 Thread Wojciech Puchar
I have recompiled the kernel with device ada and put ahci_load=YES in /boot/loader.conf. you don't need ada driver for USB disk. anyway you need it for your SATA disk to make things fast. and mounting it works. Obviously, for the disk the device nodes aren't created... Is there something

Re: How to use an external USB3.0 drive with 4k sectors?

2012-06-01 Thread Jens Schweikhardt
Hi Wojciech et al, On Fri, Jun 01, 2012 at 10:42:53AM +0200, Wojciech Puchar wrote: # # mount -t ntfs -o ro /dev/da5s1 /mnt # mount_ntfs: /dev/da5s1: Invalid argument # ) # your dmesg shows drive is properly detected. Yes, but this was only on a USB2 (two) port, and just an auxiliary

Re: How to indicate source directory in other than /usr/src?

2012-06-01 Thread Peter Vereshagin
Hello. 2012/05/30 17:04:42 +0400 Peter Vereshagin pe...@vereshagin.org = To freebsd-questions@freebsd.org : PV xterm works for me in my mutt under tmux, ask me if you need to tweak locale ( I see his L char with the '/' over it in place, and the cyrilic letters in my other mail, too ) PV PV

Re: How to use an external USB3.0 drive with 4k sectors?

2012-06-01 Thread Gary Aitken
On 06/01/12 04:01, Jens Schweikhardt wrote: My goal is to get it recognized on one of the two USB3 ports I have. All I get there is Jun 1 11:43:45 hal9000 kernel: ugen4.2:Jmicron Corp. at usbus4 Jun 1 11:43:45 hal9000 kernel: umass0:Jmicron Corp. Usb production, class 0/0, rev 3.00/1.00,

How to crontab screen with script inside and a don't run it if it's already running check?

2012-06-01 Thread Dwayne Henderson
I run this Ruby script 24/7 (records data from this live stream). It runs inside a screen though, so it's easy to check in on it every once in a while. But how do I crontab the screen with the script inside it? It has to be with a don't run it if it's already running check. So far I have

Re: How to crontab screen with script inside and a don't run it if it's already running check?

2012-06-01 Thread Jens Jahnke
Hi, On Fri, 1 Jun 2012 20:55:00 +0200 Dwayne Henderson its.code.in.h...@gmail.com wrote: DH I run this Ruby script 24/7 (records data from this live stream). DH It runs inside a screen though, so it's easy to check in on it DH every once in a while. DH DH But how do I crontab the screen

How to use an external USB3.0 drive with 4k sectors?

2012-05-31 Thread Jens Schweikhardt
hello, world\n so I decided to try two HW technology advancements in one go. I have a brand new shiny 1TB USB3.0 external disk, that when plugged to an USB2(two!) reports da5 at umass-sim2 bus 2 scbus6 target 0 lun 0 da5: ST1000LM 024 HN-M101MBB Fixed Direct Access SCSI-2 device

Re: How to use an external USB3.0 drive with 4k sectors?

2012-05-31 Thread Damien Fleuriot
On 31 May 2012, at 17:57, Jens Schweikhardt schwe...@schweikhardt.net wrote: hello, world\n so I decided to try two HW technology advancements in one go. I have a brand new shiny 1TB USB3.0 external disk, that when plugged to an USB2(two!) reports da5 at umass-sim2 bus 2 scbus6

Re: How to use an external USB3.0 drive with 4k sectors?

2012-05-31 Thread Gary Aitken
On 05/31/12 09:57, Jens Schweikhardt wrote: so I decided to try two HW technology advancements in one go. I have a brand new shiny 1TB USB3.0 external disk, that when plugged to an USB2(two!) reports da5 at umass-sim2 bus 2 scbus6 target 0 lun 0 da5:ST1000LM 024 HN-M101MBB

Re: How to use an external USB3.0 drive with 4k sectors?

2012-05-31 Thread Thomas Mueller
On 05/31/12 09:57, Jens Schweikhardt wrote: so I decided to try two HW technology advancements in one go. I have a brand new shiny 1TB USB3.0 external disk, that when plugged to an USB2(two!) reports da5 at umass-sim2 bus 2 scbus6 target 0 lun 0 da5:ST1000LM 024 HN-M101MBB

Re: How to use an external USB3.0 drive with 4k sectors?

2012-05-31 Thread Warren Block
On Thu, 31 May 2012, Jens Schweikhardt wrote: so I decided to try two HW technology advancements in one go. I have a brand new shiny 1TB USB3.0 external disk, that when plugged to an USB2(two!) reports da5 at umass-sim2 bus 2 scbus6 target 0 lun 0 da5: ST1000LM 024 HN-M101MBB Fixed

How Do I Remove Clang

2012-05-29 Thread Thomas D. Dean
uname -a FreeBSD P9X79.tddhome 9.0-STABLE FreeBSD 9.0-STABLE #2: Fri May 11 20:41:54 PDT 2012 tomdean@P9X79.tddhome:/usr/src/sys/GENERIC amd64 I want to remove clang from my system and stick with gcc. I do not want any code I produce to have a non-GPL license. Do I need to regress to

Re: How Do I Remove Clang

2012-05-29 Thread Matthew Seaman
On 29/05/2012 08:27, Thomas D. Dean wrote: uname -a FreeBSD P9X79.tddhome 9.0-STABLE FreeBSD 9.0-STABLE #2: Fri May 11 20:41:54 PDT 2012 tomdean@P9X79.tddhome:/usr/src/sys/GENERIC amd64 Hmmm... normally this sort of question is asked in exactly the opposite sense. I shall trust that it

How to indicate source directory in other than /usr/src?

2012-05-29 Thread Thomas Mueller
How does one indicate a system source directory location when in other than /usr/src? That could be necessary when in another directory, for instance running ndiscvt. Or one could be building FreeBSD for a USB stick and want to do the heavy work on a hard drive; I could also want to build

Re: How to indicate source directory in other than /usr/src?

2012-05-29 Thread uki
Don't know if that will help in Your case, but I just softlink my /usr/local/src-stable to /usr/src - never had any issues. Cheers, Ɓukasz Gruner 2012/5/29 Thomas Mueller muelle...@insightbb.com: How does one indicate a system source directory location when in other than /usr/src

Re: How to indicate source directory in other than /usr/src?

2012-05-29 Thread Lowell Gilbert
Thomas Mueller muelle...@insightbb.com writes: How does one indicate a system source directory location when in other than /usr/src? I'm not sure I understand quite what you're asking, but I'll have a try anyway. That could be necessary when in another directory, for instance running

Re: How to indicate source directory in other than /usr/src?

2012-05-29 Thread Michael Ross
Am 29.05.2012, 12:10 Uhr, schrieb Thomas Mueller muelle...@insightbb.com: How does one indicate a system source directory location when in other than /usr/src? That could be necessary when in another directory, for instance running ndiscvt. Or one could be building FreeBSD for a USB

Re: How Do I Remove Clang

2012-05-29 Thread Thomas D. Dean
On 05/29/12 00:49, Matthew Seaman wrote: Set WITHOUT_CLANG=yes in /etc/src.conf and do a normal buildworld cycle plus 'make delete-old' See src.conf(5) for more details. This breaks normal make: cat /etc/src.conf WITHOUT_CLANG=Yes cat Makefile # Makefile for nanoBSD kld driver CC=gcc

Re: How Do I Remove Clang

2012-05-29 Thread Thomas D. Dean
On 05/29/12 00:27, Thomas D. Dean wrote: Oops, too fast. cat /etc/make.conf PERL_VERSION=5.12.4 MK_CLANG_IS_CC=no Tom Dean ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe,

How to rollback xorg to working tty switch

2012-05-24 Thread Lars Eighner
I need to rollback x.org to a point that tty switching worked. I'm dead in the water when stuck in x.org. How do I do that? I suppose the whole ports tree has to go back since x.org drags in a bunch of stuff without doing anything itself. I'm on 8.3 amd64. PS: the WITHOUT_NOUVEAU switch

Re: How to rollback xorg to working tty switch

2012-05-24 Thread Polytropon
On Thu, 24 May 2012 06:45:06 -0500 (CDT), Lars Eighner wrote: I need to rollback x.org to a point that tty switching worked. I'm dead in the water when stuck in x.org. Maybe putting Option DontVTSwitch false in Section ServerFlags or /etc/X11/xorg.conf helps? -- Polytropon

Re: How to rollback xorg to working tty switch

2012-05-24 Thread Polytropon
On Thu, 24 May 2012 20:11:32 +0200, Polytropon wrote: On Thu, 24 May 2012 06:45:06 -0500 (CDT), Lars Eighner wrote: I need to rollback x.org to a point that tty switching worked. I'm dead in the water when stuck in x.org. Maybe putting OptionDontVTSwitch false in

Re: How to rollback xorg to working tty switch

2012-05-24 Thread Lars Eighner
On Thu, 24 May 2012, Polytropon wrote: On Thu, 24 May 2012 20:11:32 +0200, Polytropon wrote: On Thu, 24 May 2012 06:45:06 -0500 (CDT), Lars Eighner wrote: I need to rollback x.org to a point that tty switching worked. I'm dead in the water when stuck in x.org. Maybe putting

Re: How to rollback xorg to working tty switch

2012-05-24 Thread doug
On Thu, 24 May 2012, Polytropon wrote: On Thu, 24 May 2012 20:11:32 +0200, Polytropon wrote: On Thu, 24 May 2012 06:45:06 -0500 (CDT), Lars Eighner wrote: I need to rollback x.org to a point that tty switching worked. I'm dead in the water when stuck in x.org. Maybe putting

Re: How to rollback xorg to working tty switch

2012-05-24 Thread Warren Block
On Thu, 24 May 2012, d...@safeport.com wrote: On Thu, 24 May 2012, Polytropon wrote: On Thu, 24 May 2012 20:11:32 +0200, Polytropon wrote: On Thu, 24 May 2012 06:45:06 -0500 (CDT), Lars Eighner wrote: And in worst case, use portdowngrade to get an older version of the port (may require

Re: How to rollback xorg to working tty switch

2012-05-24 Thread doug
On Thu, 24 May 2012, Warren Block wrote: On Thu, 24 May 2012, d...@safeport.com wrote: That was such a great idea, I also just tried it. For me at least it is not that alt-ctrl-Fn does not switch, it does. What is does not do is connect to the monitor except for alt-ctrl-F9. So in the

Re: How to rollback xorg to working tty switch

2012-05-24 Thread Lars Eighner
On Thu, 24 May 2012, Warren Block wrote: On Thu, 24 May 2012, d...@safeport.com wrote: On Thu, 24 May 2012, Polytropon wrote: On Thu, 24 May 2012 20:11:32 +0200, Polytropon wrote: On Thu, 24 May 2012 06:45:06 -0500 (CDT), Lars Eighner wrote: And in worst case, use portdowngrade to get

Re: How to rollback xorg to working tty switch

2012-05-24 Thread Warren Block
On Thu, 24 May 2012, d...@safeport.com wrote: The latest xorg switches to and from console with my Radeon 4650. It might be a problem specific to the newer version of the Intel video driver. Thanks for the reply Warren, but nope: Driver radeon VendorName ATI Technologies

Re: how often to update ports?

2012-04-20 Thread David Brodbeck
for months/years without doing so. So I'm curious, how often do you keep your ports update, and what are the reasons for doing so? I may be more lax than most. I update ports when one of three things happens: 1. I upgrade to a new FreeBSD release. 2. portaudit flags a security problem. 3. I

Re: how to add es_MX locale ?

2012-04-19 Thread jbiskofski
it in the response from locale -a. How can I add this locale? You'ld have to generate the appropriate locale data files for es_MX. Look at the equivalents for es_ES in /usr/share/locale/{es_ES.ISO8859-1,es_ES.ISO8859-15,es_ES.UTF-8} -- although as ISO8859-15 is actually identical to ISO8859-1 apart from

How to handle postgresql82-client vulnerability

2012-04-13 Thread Carmel
the program produces this error: === postgresql-client-8.2.23 is forbidden: Vulnerable http://www.postgresql.org/about/news/1377/. *** Error code 1 Stop in /usr/ports/databases/postgresql82-client. I cannot find anything in the UPDATING or MOVED files that details how to deal with this. Would

Re: How to handle postgresql82-client vulnerability

2012-04-13 Thread Matthew Seaman
. It's only still in the ports because no one has realised it's past its expiry date and removed it yet. Given the unfixed security problems, you should upgrade to a newer version ASAP. I cannot find anything in the UPDATING or MOVED files that details how to deal with this. Would something like

Re: How to handle postgresql82-client vulnerability

2012-04-13 Thread Amitabh Kant
in the UPDATING or MOVED files that details how to deal with this. Would something like: portupgrade -o databases/postgresql90-client postgresql82-client be the proper way to handle this problem? Would I then have to rebuild koffice-kde4-2.3.3_7 and postgresql-libpqxx-3.0.2

How to set Password Change Time in FreeBSD

2012-04-12 Thread Jun Li BJ Zhao
Dears, To force local user in FreeBSD system changing their password periodically, I want to set Password Change Time. I tried the following two ways, but both failed. Could you please give me the correct operations? Thanks a lot! Method 1: Added passwordtime=2m to /etc/login.conf, then run the

Re: How to set Password Change Time in FreeBSD

2012-04-12 Thread Matthew Seaman
On 12/04/2012 10:15, Jun Li BJ Zhao wrote: To force local user in FreeBSD system changing their password periodically, I want to set Password Change Time. I tried the following two ways, but both failed. Could you please give me the correct operations? Thanks a lot! Method 1: Added

Re[2]: How to set Password Change Time in FreeBSD

2012-04-12 Thread Jun Li BJ Zhao
Dears, The following is my testing according to the mail Re: How to set Password Change Time in FreeBSD: 1. I added passwordtime=2m to /etc/login.conf, run the command cap_mkdb /etc/login.conf, and then created a new user test. In /etc/master.passwd, field 6 of test was zero. Password of test

How to successfully enable HP LaserJet Professional m1212nf MFP,

2012-04-11 Thread Edwin L. Culp W.
hpcups 3.12.2, requires proprietary plugin that seems to not be available in the HP site. I have tried to get it using hplip-3.12.2 with no success. I have tried with both cups and hplip and can't get it going. Any suggestions appreciated. Maybe the official hplip-3.12.4 might work but hasn't

Re: How to successfully enable HP LaserJet Professional m1212nf MFP,

2012-04-11 Thread Polytropon
assume for a product that HP markets as Pro(fessional)). However, the documentation states that it accepts PDF - so maybe you can try to feed a PDF file to the printer directly? You can use nc (netcat) to do this, I assume you already have the printer networked. I'm not sure how the other

Re: How to successfully enable HP LaserJet Professional m1212nf MFP,

2012-04-11 Thread Da Rock
. I'd try PCL first; the pdf reference I saw was the for the fax function, which allows you to send and receive faxes using pdf over email. The odd man in this equation is an ability to email to print (pdf I'd assume), which is handy and may be how the hpcups thing works, however that means the pdf

Re: how often to update ports?

2012-04-09 Thread Volodymyr Kostyrko
Aleksandr Miroslav wrote: How often do you folks update your ports/packages. I was manging two servers for years for my personal web/email, and I've rarely gone for more than 3 months with any single package being not up to date, usually about once a month I would update all my ports. Recently

Re: how often to update ports?

2012-04-06 Thread Daniel Staal
--As of March 30, 2012 4:31:49 PM -0400, Aleksandr Miroslav is alleged to have said: So I'm curious, how often do you keep your ports update, and what are the reasons for doing so? --As for the rest, it is mine. I do my home server on a monthly schedule, unless I see something come up

how often to update ports?

2012-03-30 Thread Robert Huff
Aleksandr Miroslav writes: How often do you folks update your ports/packages. I was manging two servers for years for my personal web/email, and I've rarely gone for more than 3 months with any single package being not up to date, usually about once a month I would update all my ports

How to suppress PAM/sshd root login warnings?

2012-03-29 Thread Duckbreath
My system has root login via sshd disabled, and it is going to stay disabled. I don't care if the whole of the entire internet tries to login as root, because: Root login is disabled. However, syslog likes to print little warnings on my console, and in my auth.log, everytime some bot tries. I

Re: satisfying package dependencies from installation DVD when building a port -- HOW?

2012-03-15 Thread Robert Urban
On 03/14/2012 05:50 PM, Polytropon wrote: On Wed, 14 Mar 2012 17:11:55 +0100, IMAP List Administration wrote: Hello, I've just installed 9.0-RELEASE (amd64) in a KVM/Qemo VM on debian linux, which is extremely painful because of the abysmal I/O performance, and would like to build the

Re: satisfying package dependencies from installation DVD when building a port -- HOW?

2012-03-15 Thread Matthew Seaman
On 15/03/2012 17:11, Robert Urban wrote: I seem to have found the problem. I read somewhere that PKG_PATH should have the path to the top of the hierarchy, i.e., /cd/packages, and not /cd/packages/something or /cd/packages/All, because pkg_add was capable of adding the hierarchical

satisfying package dependencies from installation DVD when building a port -- HOW?

2012-03-14 Thread IMAP List Administration
be pointless to try to use a (remote) URL in PACKAGEROOT, as the -r flag *must* be give in order for pkg_add to honor the setting, and god knows how the ports system calls pkg_add, if at all. I had a long look in the docs, but this stuff doesn't *seem* to be documented :( Is it possible to get the ports

Re: satisfying package dependencies from installation DVD when building a port -- HOW?

2012-03-14 Thread Polytropon
be pointless to try to use a (remote) URL in PACKAGEROOT, as the -r flag *must* be give in order for pkg_add to honor the setting, and god knows how the ports system calls pkg_add, if at all. The ports do not use pkg_add. However, using a tool like portmaster or portinstall can help you using

Re: oops, now: bsd question: how to record a tv stream?

2012-03-14 Thread Gary Kline
On Wed, Mar 14, 2012 at 02:58:30PM +1000, Da Rock wrote: Date: Wed, 14 Mar 2012 14:58:30 +1000 From: Da Rock freebsd-questi...@herveybayaustralia.com.au Subject: Re: oops, now: bsd question: how to record a tv stream? To: freebsd-questions@freebsd.org On 03/14/12 13:09, Polytropon wrote

Re: oops, now: bsd question: how to record a tv stream?

2012-03-14 Thread Da Rock
On 03/15/12 05:30, Gary Kline wrote: On Wed, Mar 14, 2012 at 02:58:30PM +1000, Da Rock wrote: Date: Wed, 14 Mar 2012 14:58:30 +1000 From: Da Rockfreebsd-questi...@herveybayaustralia.com.au Subject: Re: oops, now: bsd question: how to record a tv stream? To: freebsd-questions@freebsd.org On 03

Re: oops, now: bsd question: how to record a tv stream?

2012-03-14 Thread Polytropon
On Wed, 14 Mar 2012 12:30:08 -0700, Gary Kline wrote: On Wed, Mar 14, 2012 at 02:58:30PM +1000, Da Rock wrote: Date: Wed, 14 Mar 2012 14:58:30 +1000 From: Da Rock freebsd-questi...@herveybayaustralia.com.au Subject: Re: oops, now: bsd question: how to record a tv stream? To: freebsd

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread FBSD UG
doesn't VLC do that too? On 11 mrt 2012, at 21:28, Gary Kline wrote: guys, i made the mistake that conrad did when replying. i could make e excuse liked only getting five hours sleep, etc, bujt i wont. here us a FBSD qauestion how can i capture any tv stream---or radio stream

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread Stas Verberkt
Bernt Hansson schreef op 13-03-2012 12:12: On 2012-03-11 21:28, Gary Kline wrote: or is that illegal, too? Depends on jurisdiction. Indeed, Dutch and Belgium legislation, for example, permit making copies for personal use, which originates from recording the radio with a tape deck, which

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread Gary Kline
On Sun, Mar 11, 2012 at 03:52:36PM -0500, Joshua Isom wrote: Date: Sun, 11 Mar 2012 15:52:36 -0500 From: Joshua Isom jri...@gmail.com Subject: Re: oops, now: bsd question: how to record a tv stream? To: freebsd-questions@freebsd.org On 3/11/2012 3:28 PM, Gary Kline wrote: guys, i made

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread Gary Kline
On Tue, Mar 13, 2012 at 12:39:38PM +1000, Da Rock wrote: Date: Tue, 13 Mar 2012 12:39:38 +1000 From: Da Rock freebsd-questi...@herveybayaustralia.com.au Subject: Re: oops, now: bsd question: how to record a tv stream? To: freebsd-questions@freebsd.org [ ...] Additionally, there may

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread Josh Tolbert
with MythTV, VLC and others for recording. Using VLC, I've recorded some videos of a local band on a morning show that have ended up on YouTube...I can send links if you want to see how it looks, although that station only broadcasts in 480i. For what it's worth, I've successfully used three BT848

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread Gary Kline
On Tue, Mar 13, 2012 at 04:14:52PM -0500, Josh Tolbert wrote: Date: Tue, 13 Mar 2012 16:14:52 -0500 From: Josh Tolbert h...@puresimplicity.net Subject: Re: oops, now: bsd question: how to record a tv stream? To: freebsd-questions@freebsd.org On 3/13/12 4:06 PM, Gary Kline wrote: On Tue

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread Polytropon
On Tue, 13 Mar 2012 13:02:24 -0700, Gary Kline wrote: if it means buying a card, then, nope. i assumed that the bits were streaming thu my cable to firefox and that thedre was some program that could collecte these data and stash them in, say , /tmp. i'm using linux

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread Polytropon
be used (-ovc and -oac need to be adjusted accordingly) to encode to a file. I'm not sure how to handle TV (antenna) input as I've always been using a raw video feed (from VTR or camera). However, there's documentation that may help: http://www.mplayerhq.hu/DOCS/HTML/en/tv-input.html It also

Re: oops, now: bsd question: how to record a tv stream?

2012-03-13 Thread Da Rock
:device=/dev/bktr0 and similarly mencoder can be used (-ovc and -oac need to be adjusted accordingly) to encode to a file. I'm not sure how to handle TV (antenna) input as I've always been using a raw video feed (from VTR or camera). However, there's documentation that may help: http

Re: oops, now: bsd question: how to record a tv stream?

2012-03-12 Thread Shane Ambler
On 12/03/2012 10:16, Da Rock wrote: On 03/12/12 07:19, Polytropon wrote: On Sun, 11 Mar 2012 13:28:19 -0700, Gary Kline wrote: here us a FBSD qauestion how can i capture any tv stream---or radio stream for later replay? I've been using a BrookTree (Haupauge WinTV) PCI card for capturing

Re: oops, now: bsd question: how to record a tv stream?

2012-03-12 Thread Da Rock
On 03/13/12 12:27, Shane Ambler wrote: On 12/03/2012 10:16, Da Rock wrote: On 03/12/12 07:19, Polytropon wrote: On Sun, 11 Mar 2012 13:28:19 -0700, Gary Kline wrote: here us a FBSD qauestion how can i capture any tv stream---or radio stream for later replay? I've been using a BrookTree

oops, now: bsd question: how to record a tv stream?

2012-03-11 Thread Gary Kline
guys, i made the mistake that conrad did when replying. i could make e excuse liked only getting five hours sleep, etc, bujt i wont. here us a FBSD qauestion how can i capture any tv stream---or radio stream for later replay? or is that illegal, too? gray -- Gary Kline kl

Re: oops, now: bsd question: how to record a tv stream?

2012-03-11 Thread Joshua Isom
On 3/11/2012 3:28 PM, Gary Kline wrote: guys, i made the mistake that conrad did when replying. i could make e excuse liked only getting five hours sleep, etc, bujt i wont. here us a FBSD qauestion how can i capture any tv stream---or radio stream for later replay? or is that illegal

Re: oops, now: bsd question: how to record a tv stream?

2012-03-11 Thread Al Plant
Gary Kline wrote: guys, i made the mistake that conrad did when replying. i could make e excuse liked only getting five hours sleep, etc, bujt i wont. here us a FBSD qauestion how can i capture any tv stream---or radio stream for later replay? or is that illegal, too? gray Aloha

Re: oops, now: bsd question: how to record a tv stream?

2012-03-11 Thread Polytropon
On Sun, 11 Mar 2012 13:28:19 -0700, Gary Kline wrote: here us a FBSD qauestion how can i capture any tv stream---or radio stream for later replay? I've been using a BrookTree (Haupauge WinTV) PCI card for capturing from TV which worked very good using the standard programs mplayer

Re: oops, now: bsd question: how to record a tv stream?

2012-03-11 Thread Da Rock
On 03/12/12 07:19, Polytropon wrote: On Sun, 11 Mar 2012 13:28:19 -0700, Gary Kline wrote: here us a FBSD qauestion how can i capture any tv stream---or radio stream for later replay? I've been using a BrookTree (Haupauge WinTV) PCI card for capturing from TV which worked very good using

Re: XFCE - how to edit menu ?

2012-03-07 Thread Shane Ambler
Rename Terminal Thunar File Manager - Applications Menu - Help How can I edit the menus ? Also, how to rename Applications Menu to e.g. just Menu as it would better reflect applications and system (utilities) components ? I started looking at this a while ago

Re: XFCE - how to edit menu ?

2012-03-07 Thread Da Rock
- Office - Orage Globaltime - System - Bulk Rename Terminal Thunar File Manager - Applications Menu - Help How can I edit the menus ? Also, how to rename Applications Menu to e.g. just Menu as it would better reflect applications and system (utilities) components ? I

Re: XFCE - how to edit menu ?

2012-03-07 Thread jb
Da Rock freebsd-questions at herveybayaustralia.com.au writes: ... What I found is you start by right clicking on the application menu and show properties where you can change from default to custom file menu - ~/.config/menus/xfce-applications.menu matches the default and is an xml

Re: XFCE - how to edit menu ?

2012-03-04 Thread perryh
jb jb.1234a...@gmail.com wrote: How can I edit the menus ? Also, how to rename Applications Menu to e.g. just Menu as it would better reflect applications and system (utilities) components ? FB9-release, XFCE 4.8 Dunno how FreeBSD's XFCE port does this since I don't use XFCE, but it could

XFCE - how to edit menu ?

2012-03-03 Thread jb
Thunar File Manager - Applications Menu - Help How can I edit the menus ? Also, how to rename Applications Menu to e.g. just Menu as it would better reflect applications and system (utilities) components ? FB9-release, XFCE 4.8 jb ___ freebsd

How much space do I need on / for a 7.4 to 8 stable upgrade?

2012-02-22 Thread Joe Moore
I need to upgrade a server from 7.4 stable to 8.x stable. I running buildworld as I write this, and plan to build a GENERIC kernel. The root disk partition is 248 MB which was probably the auto default size when the server was originally built. I remember having to do some scrambling during

Re: How much space do I need on / for a 7.4 to 8 stable upgrade?

2012-02-22 Thread Adam Vande More
On Wed, Feb 22, 2012 at 11:47 AM, Joe Moore joe.mo...@holidaycompanies.comwrote: I have 65MB of free space on /. Is that going to be enough? I've already moved tftpboot to /usr, cleaned out /root, /boot/kernel.old, and /tmp. What else could I clean out if I need more space? I'm thinking some

RE: How much space do I need on / for a 7.4 to 8 stable upgrade?

2012-02-22 Thread Joe Moore
From: Adam Vande More [mailto:amvandem...@gmail.com] Sent: Wednesday, February 22, 2012 12:16 PM To: Joe Moore Cc: freebsd-questions@freebsd.org Subject: Re: How much space do I need on / for a 7.4 to 8 stable upgrade? On Wed, Feb 22, 2012 at 11:47 AM, Joe Moore joe.mo...@holidaycompanies.com

Re: How much space do I need on / for a 7.4 to 8 stable upgrade?

2012-02-22 Thread Lowell Gilbert
Joe Moore joe.mo...@holidaycompanies.com writes: What else could I clean out if I need more space? I'm thinking some executables in /rescue. ls -l shows most of them being 4MB each but that can't be right. Since they are all links to the same executable, you won't save anything unless you

Re: How much space do I need on / for a 7.4 to 8 stable upgrade?

2012-02-22 Thread Dan Nelson
In the last episode (Feb 22), Joe Moore said: I need to upgrade a server from 7.4 stable to 8.x stable. I running buildworld as I write this, and plan to build a GENERIC kernel. The root disk partition is 248 MB which was probably the auto default size when the server was originally built.

RE: How much space do I need on / for a 7.4 to 8 stable upgrade?

2012-02-22 Thread Joe Moore
-Original Message- From: Dan Nelson [mailto:dnel...@allantgroup.com] Sent: Wednesday, February 22, 2012 12:33 PM To: Joe Moore Cc: freebsd-questions@freebsd.org Subject: Re: How much space do I need on / for a 7.4 to 8 stable upgrade? In the last episode (Feb 22), Joe Moore said: I

Re: How much space do I need on / for a 7.4 to 8 stable upgrade?

2012-02-22 Thread Michael Powell
Adam Vande More wrote: On Wed, Feb 22, 2012 at 11:47 AM, Joe Moore joe.mo...@holidaycompanies.comwrote: I have 65MB of free space on /. Is that going to be enough? I've already moved tftpboot to /usr, cleaned out /root, /boot/kernel.old, and /tmp. What else could I clean out if I need

Re: CUPS 1.5.2 not working, like to test 1.4.x, how?

2012-02-21 Thread Christopher J. Ruwe
On Tue, 21 Feb 2012 00:23:19 +0100 Polytropon free...@edvax.de wrote: On Mon, 20 Feb 2012 23:46:52 +0100, Christopher J. Ruwe wrote: Is there any documentation available on how to retrieve old ports from the cvs-attic? I just don't know how, so that I could test my assumption that CUPS 1.4

Re: How to prevent gam_server from running?

2012-02-20 Thread Herbert J. Skuhra
gam_server, which is just a real CPU hog, and once this thing is started, there's no stopping it. PolicyKit is like that too. :) I've looked and looked and still can't figure out how to disable it. I can't even figure out where exactly it's being started from. Whether it's GNOME or XFCE

Re: How to prevent gam_server from running?

2012-02-20 Thread Herbert J. Skuhra
gam_server, which is just a real CPU hog, and once this thing is started, there's no stopping it. PolicyKit is like that too. :) I've looked and looked and still can't figure out how to disable it. I can't even figure out where exactly it's being started from. Whether it's GNOME or XFCE

Re: How to prevent gam_server from running?

2012-02-20 Thread Herbert J. Skuhra
gam_server, which is just a real CPU hog, and once this thing is started, there's no stopping it. PolicyKit is like that too. :) I've looked and looked and still can't figure out how to disable it. I can't even figure out where exactly it's being started from. Whether it's GNOME or XFCE

CUPS 1.5.2 not working, like to test 1.4.x, how?

2012-02-20 Thread Christopher J. Ruwe
documentation available on how to retrieve old ports from the cvs-attic? I just don't know how, so that I could test my assumption that CUPS 1.4.x should be working for my setup. Thanks and cheers, -- Christopher TZ GMT + 1h signature.asc Description: PGP signature

Re: CUPS 1.5.2 not working, like to test 1.4.x, how?

2012-02-20 Thread Polytropon
On Mon, 20 Feb 2012 23:46:52 +0100, Christopher J. Ruwe wrote: Is there any documentation available on how to retrieve old ports from the cvs-attic? I just don't know how, so that I could test my assumption that CUPS 1.4.x should be working for my setup. There's a port to do so: portdowngrade

<    1   2   3   4   5   6   7   8   9   10   >