Piping find into tar...

2011-05-04 Thread Modulok
List, I've been playing with the find command lately. Is there a way I can pipe the putput list of files from find, into the tar command to create an archive which contains the files which find lists? I tried the following, but it didn't work (obviously). find -E . '.*\.txt$' -print | tar -cjf

Re: Piping find into tar...

2011-05-04 Thread Peter Vereshagin
Wake me up when September ends, freebsd-questions! 2011/05/04 01:25:39 -0600 Modulok modu...@gmail.com = To FreeBSD Questions : M find -E . '.*\.txt$' -print | tar -cjf result.tgz xargs(1) ? 73! Peter pgp: A0E26627 (4A42 6841 2871 5EA7 52AB 12F8 0CE1 4AAC A0E2 6627) -- http://vereshagin.org

Re: Piping find into tar...

2011-05-04 Thread David Demelier
On 04/05/2011 09:25, Modulok wrote: List, I've been playing with the find command lately. Is there a way I can pipe the putput list of files from find, into the tar command to create an archive which contains the files which find lists? I tried the following, but it didn't work (obviously).

Re: Piping find into tar...

2011-05-04 Thread b. f.
I've been playing with the find command lately. Is there a way I can pipe the putput list of files from find, into the tar command to create an archive which contains the files which find lists? I tried the following, but it didn't work (obviously). find -E . '.*\.txt$' -print | tar -cjf

Re: Piping find into tar...

2011-05-04 Thread Chris Rees
On 4 May 2011 08:44, b. f. bf1...@googlemail.com wrote: I've been playing with the find command lately. Is there a way I can pipe the putput list of files from find, into the tar command to create an archive which contains the files which find lists? I tried the following, but it didn't

Re: Piping find into tar...

2011-05-04 Thread b. f.
On 5/4/11, Chris Rees utis...@gmail.com wrote: On 4 May 2011 08:44, b. f. bf1...@googlemail.com wrote: I've been playing with the find command lately. Is there a way I can pipe the putput list of files from find, into the tar command to create an archive which contains the files which find

Re: Piping find into tar...

2011-05-04 Thread Modulok
By the way, in reference to the commands above the -j option is for bzip2, so the extension should be .tbz o_O Thanks everyone! I went with the following, because it works regardless of space characters in filenames. (Thanks for the correction on the extenion. It should indeed be 'tbz' when

Re: Piping find into tar...

2011-05-04 Thread b. f.
On 5/4/11, Modulok modu...@gmail.com wrote: As for pax, I thought tar could create pax archives too, via the --format pax option? Yes, although I haven't tested it thoroughly. pax(1) should also be able to create a number of different archive formats via the -x flag. I prefer tar(1)

Limitting SSH access

2011-05-04 Thread Jack Raats
I have a question concerning SSH op a FreeBSD 7.4-STABLE server. Is it possible to limit the SSH access? I want t o restrict a user to his own home directory. So that if he connects to the server with SSH he only can go to his own home dir. Also the same for sftp... Thanks for your time Jack

Re: Limitting SSH access

2011-05-04 Thread Matthew Seaman
On 04/05/2011 10:08, Jack Raats wrote: I have a question concerning SSH op a FreeBSD 7.4-STABLE server. Is it possible to limit the SSH access? I want t o restrict a user to his own home directory. So that if he connects to the server with SSH he only can go to his own home dir. Also

Re: Piping find into tar...

2011-05-04 Thread Chris Rees
On 4 May 2011 10:42, Modulok modu...@gmail.com wrote: By the way, in reference to the commands above the -j option is for bzip2, so the extension should be .tbz o_O Thanks everyone! I went with the following, because it works regardless of space characters in filenames. (Thanks for the

Re: Piping find into tar...

2011-05-04 Thread kron24
Dne 4.5.2011 11:42, Modulok napsal(a): By the way, in reference to the commands above the -j option is for bzip2, so the extension should be .tbz o_O Thanks everyone! I went with the following, because it works regardless of space characters in filenames. (Thanks for the correction on the

Re: Limitting SSH access

2011-05-04 Thread Balázs Mátéffy
On 4 May 2011 13:35, Matthew Seaman m.sea...@infracaninophile.co.uk wrote: On 04/05/2011 10:08, Jack Raats wrote: I have a question concerning SSH op a FreeBSD 7.4-STABLE server. Is it possible to limit the SSH access? I want t o restrict a user to his own home directory. So that if he

Re: Limitting SSH access

2011-05-04 Thread Eric Masson
Jack Raats j...@jarasoft.net writes: Hello, I have a question concerning SSH op a FreeBSD 7.4-STABLE server. Don't know sshd version in 7.4-STABLE, but if higher or equal to 4.8, the following link could help : http://www.debian-administration.org/articles/590 Regards Éric Masson -- C'est

Re: Piping find into tar...

2011-05-04 Thread b. f.
Dne 4.5.2011 11:42, Modulok napsal(a): By the way, in reference to the commands above the -j option is for bzip2, so the extension should be .tbz o_O Thanks everyone! I went with the following, because it works regardless of space characters in filenames. (Thanks for the correction on

Seeking full-cups/lpd compilant printer

2011-05-04 Thread David Demelier
Hello, I'm searching a printer that works with cups only (I mean no hplip needed no specific vendor driver). I would like a simple desktop printer with scanner built-in for simple copies. http://www.epson.co.uk/Printers-and-All-In-Ones/Inkjet/Epson-Stylus-SX125 I like this one but the

Re: Piping find into tar...

2011-05-04 Thread Robert Bonomi
From owner-freebsd-questi...@freebsd.org Wed May 4 02:26:32 2011 Date: Wed, 4 May 2011 01:25:39 -0600 From: Modulok modu...@gmail.com To: FreeBSD Questions freebsd-questions@freebsd.org Subject: Piping find into tar... List, I've been playing with the find command lately. Is there a way

Re: Piping find into tar...

2011-05-04 Thread kron24
Dne 4.5.2011 14:37, b. f. napsal(a): Dne 4.5.2011 11:42, Modulok napsal(a): ... find -E . -regex '.*\.txt$' -print0 | xargs -0 tar -cjf result.tbz When the amount of files is huge then tar will be invoked twice or more. Thus result.tbz will contain just files from the last invocation. I

Re: Piping find into tar...

2011-05-04 Thread Lowell Gilbert
kron24 kro...@gmail.com writes: Dne 4.5.2011 11:42, Modulok napsal(a): By the way, in reference to the commands above the -j option is for bzip2, so the extension should be .tbz o_O Thanks everyone! I went with the following, because it works regardless of space characters in filenames.

Re: FreeBSD 9.0-RELEASE

2011-05-04 Thread Jerry McAllister
On Tue, May 03, 2011 at 08:48:55PM -0400, Daniel Staal wrote: --As of May 3, 2011 5:33:23 PM -0400, Jerry McAllister is alleged to have said: I don't remember seeing that. Anyway, go to the FreeBSD Release Engineering web site for information.

Re: Piping find into tar...

2011-05-04 Thread Chris Rees
On 4 May 2011 14:25, Lowell Gilbert freebsd-questions-lo...@be-well.ilk.org wrote: kron24 kro...@gmail.com writes: Dne 4.5.2011 11:42, Modulok napsal(a): By the way, in reference to the commands above the -j option is for bzip2, so the extension should be .tbz o_O Thanks everyone! I

Re: Seeking full-cups/lpd compilant printer

2011-05-04 Thread Chris Rees
On 4 May 2011 13:58, David Demelier demelier.da...@gmail.com wrote: Hello, I'm searching a printer that works with cups only (I mean no hplip needed no specific vendor driver). I would like a simple desktop printer with scanner built-in for simple copies.

Re: Can I bridge the same subnet across a VPN?

2011-05-04 Thread krad
On 3 May 2011 20:44, Kevin Wilcox kevin.wil...@gmail.com wrote: On Tue, May 3, 2011 at 15:19, Geoff Roberts ge...@apro.com.au wrote: Is it possible to join two sites with the same subnet across a VPN? Yes. I have two sites that have the same subnet/mask. I need these two separated

Re: Limitting SSH access

2011-05-04 Thread krad
On 4 May 2011 12:47, Balázs Mátéffy repcs...@gmail.com wrote: On 4 May 2011 13:35, Matthew Seaman m.sea...@infracaninophile.co.uk wrote: On 04/05/2011 10:08, Jack Raats wrote: I have a question concerning SSH op a FreeBSD 7.4-STABLE server. Is it possible to limit the SSH access?

Re: Limitting SSH access

2011-05-04 Thread Chris Rees
On 4 May 2011 16:27, krad kra...@gmail.com wrote: On 4 May 2011 12:47, Balázs Mátéffy repcs...@gmail.com wrote: On 4 May 2011 13:35, Matthew Seaman m.sea...@infracaninophile.co.uk wrote: On 04/05/2011 10:08, Jack Raats wrote: I have a question concerning SSH op a FreeBSD 7.4-STABLE

Re: Limitting SSH access

2011-05-04 Thread Peter Vereshagin
Wake me up when September ends, freebsd-questions! 2011/05/04 16:47:33 +0100 Chris Rees utis...@gmail.com = To krad : CR Is it possible to limit the SSH access? CR Regarding ssh login, I usually use rbash from the ports, that CR restricts CR Or you could have a special /bin-restricted that

Re: Limitting SSH access

2011-05-04 Thread Chris Rees
2011/5/4 Peter Vereshagin pe...@vereshagin.org: Wake me up when September ends, freebsd-questions! 2011/05/04 16:47:33 +0100 Chris Rees utis...@gmail.com = To krad : CR Is it possible to limit the SSH access? CR Regarding ssh login, I usually use rbash from the ports, that CR restricts

Re: Seeking full-cups/lpd compilant printer

2011-05-04 Thread Roland Smith
On Wed, May 04, 2011 at 02:49:04PM +0200, David Demelier wrote: Hello, I'm searching a printer that works with cups only (I mean no hplip needed no specific vendor driver). If you buy a printer that understands PostScript, you won't need any extra drivers. But; I would like a simple

Re: Seeking full-cups/lpd compilant printer

2011-05-04 Thread Polytropon
On Wed, 04 May 2011 14:49:04 +0200, David Demelier demelier.da...@gmail.com wrote: Hello, I'm searching a printer that works with cups only (I mean no hplip needed no specific vendor driver). One word: Postscript. :-) I would like a simple desktop printer with scanner built-in for

Re: A possibly odd upgrade question

2011-05-04 Thread andrew clarke
On Wed 2011-05-04 12:50:05 UTC-0400, Chris Brennan (xa...@xaerolimit.net) wrote: I have an old PIII running FreeBSD7.3 currently, ports is all kinds of screwed up, when I did my first cross-version upgrade from 6.x to 7.x, I didn't know I had to rebuild ports, I subsequently upgrades though

Re: A possibly odd upgrade question

2011-05-04 Thread Jerry
On Wed, 4 May 2011 12:50:05 -0400 Chris Brennan xa...@xaerolimit.net articulated: I have an old PIII running FreeBSD7.3 currently, ports is all kinds of screwed up, when I did my first cross-version upgrade from 6.x to 7.x, I didn't know I had to rebuild ports, I subsequently upgrades though

Re: A possibly odd upgrade question

2011-05-04 Thread ill...@gmail.com
On 4 May 2011 12:50, Chris Brennan xa...@xaerolimit.net wrote: is it safe to nuke /usr/local (excluding  /usr/local/home), rebuild world/kernel for 8.2 and start with a fresh ports tree? Yes, though pkg_delete -af will probably suffice for removing the ports ( /var/db/pkg/ as well). -- --

PowerMath Newsletter

2011-05-04 Thread PowerMath
PowerMath Newsletter Mathematics Made Easy May 2011 Animated Lesson-Shows : Courses in Arithmetic, Algebra, Geometry, Trigonometry, Pre-Calculus, Calculus, Probability and Statistics covering Middle-School, High-School and University level Mathematics, for Students and

Re: A possibly odd upgrade question

2011-05-04 Thread Chris Brennan
On Wed, May 4, 2011 at 2:26 PM, Jerry je...@seibercom.net wrote: Chris, when I have had to do major rebuilds, I have found portmanager to be the best tool. It just seems to work. In any case, if it were me, I would clean out the /usr/ports/distfiles directory, update your ports tree, and then

Re: A possibly odd upgrade question

2011-05-04 Thread Chris Brennan
On Wed, May 4, 2011 at 2:40 PM, ill...@gmail.com ill...@gmail.com wrote: On 4 May 2011 12:50, Chris Brennan xa...@xaerolimit.net wrote: is it safe to nuke /usr/local (excluding /usr/local/home), rebuild world/kernel for 8.2 and start with a fresh ports tree? Yes, though pkg_delete -af

Re: A possibly odd upgrade question

2011-05-04 Thread ill...@gmail.com
On 4 May 2011 15:54, Chris Brennan xa...@xaerolimit.net wrote: On Wed, May 4, 2011 at 2:40 PM, ill...@gmail.com ill...@gmail.com wrote: On 4 May 2011 12:50, Chris Brennan xa...@xaerolimit.net wrote:  is it safe to nuke /usr/local (excluding  /usr/local/home), rebuild world/kernel for 8.2

rox-fm

2011-05-04 Thread pwnedomina
after installation of rox-filler i noticed i cant select menu item from fluxbox? is there anyway to circumvent this? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any

Re: rox-fm

2011-05-04 Thread Daniel C. Dowse
On Wed, 04 May 2011 21:01:28 +, pwnedomina pwnedom...@gmail.com wrote: after installation of rox-filler i noticed i cant select menu item from fluxbox? is there anyway to circumvent this? ___ freebsd-questions@freebsd.org mailing list

Re: Can I bridge the same subnet across a VPN?

2011-05-04 Thread David Brodbeck
On Wed, May 4, 2011 at 8:19 AM, krad kra...@gmail.com wrote: you can do this with a combination of openvpn (using tap, not tun) and if_bridge both ends. However I have found it to be flakey and not really worth the effort. Better to go with a routed solution. The problem I've always found with

Re: A possibly odd upgrade question

2011-05-04 Thread Chris Whitehouse
On 04/05/2011 20:53, Chris Brennan wrote: On Wed, May 4, 2011 at 2:26 PM, Jerryje...@seibercom.net wrote: Chris, when I have had to do major rebuilds, I have found portmanager to be the best tool. It just seems to work. In any case, if it were me, I would clean out the /usr/ports/distfiles

Re: A possibly odd upgrade question

2011-05-04 Thread Jerry
On Wed, 04 May 2011 22:51:05 +0100 Chris Whitehouse cwhi...@onetel.com articulated: I second Jerry, portmanager is indeed a very effective tool, it's simple and thorough and probably has as good a chance of fixing ports issues as anything. Or used to, I've been trying out tinderbox so haven't

Laptop Multi-HD partitioning advice (ZFS)

2011-05-04 Thread Daniel Staal
I just got notified my new Thinkpad X220 is on it's way, and I'm thinking about the best way to use it. ;) Obviously, FreeBSD with ZFS is on top of the list. (De-dup and compression on my space-limited laptop? Yes, please.) Some relevant vitals (after a couple of upgrades that are also

Re: Can I bridge the same subnet across a VPN?

2011-05-04 Thread Geoff Roberts
Hi David and others, Thanks for the feedback. On Thu, 5 May 2011 07:24:13 am David Brodbeck wrote: The problem I've always found with bridged solutions is they don't cope well under heavy traffic loads when the VPN link is slower than the LANs they're bridging between. And the VPN link is

Re: rox-fm

2011-05-04 Thread Daniel C. Dowse
On Wed, 04 May 2011 23:33:18 +, pwnedomina pwnedom...@gmail.com wrote: Em 04-05-2011 20:49, Daniel C. Dowse escreveu: On Wed, 04 May 2011 21:01:28 +, pwnedominapwnedom...@gmail.com wrote: after installation of rox-filler i noticed i cant select menu item from fluxbox? is there anyway

Re: rox-fm

2011-05-04 Thread Alejandro Imass
On Wed, May 4, 2011 at 7:45 PM, Daniel C. Dowse dcdo...@gmx.net wrote: On  Wed, 04 May 2011 23:33:18 +, pwnedomina pwnedom...@gmail.com wrote: Em 04-05-2011 20:49, Daniel C. Dowse escreveu: [...] please always check that the recipient is the mailing list and not the one that answered