similar to: NTFS File Compression (PR#18351)

Displaying 20 results from an estimated 4000 matches similar to: "NTFS File Compression (PR#18351)"

1999 Apr 16
1
Microsoft Certified Professional Magazine publishes Samba art icle.
I got mcp mag a day or two ago, Great writeup!! I was a little surprised that they ran such a glowing review of samba, with some of the negative implications on NT. It is very nice to see Microsoft show an interest in interoperability. -Steve Roylance > -----Original Message----- > From: Jeremy Allison [SMTP:jallison@cthulhu.engr.sgi.com] > Sent: Thursday, April 15, 1999 6:41 PM >
1999 Jan 11
0
SAMBA digest 1937
TO THE SAMBA TEAM: MAY YOUR TRIBE BE HERE FOREVER! YOU' SIMPLY GREAT BUT i CAN'T AFFORD TO BUY YOU A PIZZA BUT OUR NATIVE PIE "BUKO (YOUNG COCONUT) PIE" IS BETTER! i HAVE BEEN USING SAMBA 1.9.16P9 AND STILL ALRIGHT. PERHAPS I'LL DO CHANGE TO SAMBA 2.0 AND THIS IS A LONG WAY! i DID TRIED SAMBA SINCE MY OFFICE CAN'T AFFORD TO BUY NFS TO SERVE AT LEAST 20 PCs AND
2006 Mar 01
0
Possible bug in ActionMailer (with patch)
I wanted to write the following code, with emphasis on adding my own headers to the second part with the :headers parameter. class ArticleMailer < ActionMailer::Base def test_message subject ''This is a test'' recipients ''elan@bluemandrill.com'' from ''Exemplary Products <info@example.com>''
2010 Oct 08
2
Weird stalling of playback on IAX2 channels on 1.8 svn
I've hit an odd issue in a test 1.8 deployment, playback() stalls mid file. The call stays up, but asterisk stops sending packets. It doesn't always happen - but on demo-congrats it happens about half the time. It only happens in IAX calls. Anyone else experienced it ? (I filed an issue just in case it isn't just me) T. Tim Panton - Web/VoIP consultant and implementor
2006 Jan 27
2
Forms and one-to-one association
My models are: class Event < ActiveRecord::Base belongs_to :location class Location < ActiveRecord::Base has_one :event The view: ... <%= datetime_select ''event'', ''meet_at'', :start_year => 2006 %></p> <%= collection_select(:event, :location, @locations, :id, :name) %> .. The problem is that in the controller, when I
2004 Oct 05
3
[LLVMdev] help with llvm.
I am interested in implementing a compiler very much like llvm but with very very modest goals. I just want to have a intermediate format(machine independent) which can be used as input/output by different passes.( much like the bytecode of llvm). The only thing is I want it to be much simpler compared LLVM, say only a very few basic optimizations. Other optimizations could be written and
2015 May 18
4
[LLVMdev] RFC: New EH representation for MSVC compatibility
We already have something like what you describe in the form of mingw support. It runs on Windows and handles exceptions using a DWARF-style personality function and (I think) an LLVM-provided implementation of the libc++abi library. What this doesn't do is provide interoperability with MSVC-compiled objects. For instance, you can't throw an exception from MSVC-compiled code and catch
2004 May 24
4
[LLVMdev] Accurate garbage collection support
I recently added initial support for accurate GC to LLVM, as described in this document: http://llvm.cs.uiuc.edu/docs/GarbageCollection.html I've started implementing a trivial copying collector as a testcase for it, but it is not done yet. All code generators support identification of roots on the stack though. If you're interested in such things, I would really appreciate feedback on
2008 Jul 14
3
[BUG] boot failure since syslinux-3.00
Hi, This AMD Elan board seems to be very problematic: http://www.embeddedarm.com/products/board-detail.php?product=TS-5500 I'm having various issues with booting recent Linux kernels with syslinux. syslinux-2.13 was the last version that worked and since syslinux-3.00 it doesn't work. When it doesn't work all I get is "Boot failed" from the bootsector. Since the obvious
2006 May 23
11
New "made with Rails" site launched: www.invitika.com
We''ve finally finished up work on our application and are now beginning our beta. The site (SMS+mobile blogging+event planning+LBS+photos) is built using 100% Ruby on Rails. Many thanks to all the people who answered questions over the months on this list. Our experience with Rails was overwhelmingly positive! We''d love to hear any feedback you might have:
2006 Jan 26
1
Simple question about :list method in scaffolds
The automatically generated scaffolds made code like this: def list @address_pages, @addresses = paginate :addresses, :per_page => 10 end which was fine, but I only want to return the logged-in user''s addresses. So I changed it to: def list @address_pages, @addresses = paginate :addresses, :per_page => 10, :conditions => [''user_id = ?'',
2005 Jul 01
2
Whither Goest Wine?
It seems that fewer and fewer favorite programs run with wine. Stuff that ran 100% on older builds crashes out on the newer ones with elan. There needs to be (more) regression testing. However, damage has already been done and propagated and needs correction simply to get back to the previous level of operability.
2002 Jun 27
4
Minimum cpu requirements
Hello folks Anyone know if this would be enough to decode oggs? AMD Elan SC520 133 MHz If not, what seems to be the lower limit required for decoding oggs? Many thanks, Kerry. <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only
2009 May 09
5
Rusting Snoms?
This is a bit off topic, because I 'think' it isn't an Asterisk problem. However I'm not sure and anyhow I'm hoping someone may recognize the symptom. We moved offices a month ago. Our trusty SNOM190s (all between 3 and 5 years old) were packed up for the move, then unpacked a couple of weeks later. On unpacking them and connecting them to the new network, several of
2010 Aug 23
1
can't build resODBC on SUSE 11.3
What is menuselect actually looking for when it blocks me from selecting res_odbc ? I've got unixOdbc installed and working. I also have /usr/lib64/libltdl.so.3 - so I'm confused as it is claiming these are the pre-requisites ? How can I best track down what it _thinks_ is missing ? (This is on asterisk 1.8 svn trunk - but I don't think that is important, I think it is a package
2011 Jan 22
4
Crossover cable for E1 ?
I'm looking to connect a BMC 450 to an asterisk with a Digium Quad E1 card. Am I right in thinking that I'll need a special 'crossover-E1' RJ45 cable? If so, any clues where I might buy one in the UK? The Digium card sellers don't seem to stock such a thing. Thanks. Tim. Tim Panton - Web/VoIP consultant and implementor www.westhawk.co.uk
2004 May 25
0
[LLVMdev] Accurate garbage collection support
By the way, it would be nice to have a small example in the documentation how to compile code to use the GC. A small code example and the flags to llvm to compile it. Thanks, Tobias On Mon, 24 May 2004, Chris Lattner wrote: > > I recently added initial support for accurate GC to LLVM, as described in > this document: > > http://llvm.cs.uiuc.edu/docs/GarbageCollection.html >
2016 Jun 13
0
Re: libguestfs-tools and NTFS compression attribute
[Please follow up on libguestfs@redhat.com, there is no need to subscribe] On Mon, Jun 13, 2016 at 04:03:20PM +0200, Vlastimil Burián wrote: > Hello Richard, > > I need a little help with libguestfs-tools > > I used it as follows: > > |sudo guestmount -a thevirtualdisk.vhdx -i /mnt/anydirectory | > > > But so far I have no clue as to if it is possible and if
2020 Jan 29
1
[PATCH] appliance: Add ntfs-3g-system-compression (RHBZ#1703463).
This package in Fedora enables optional support for Windows 10 "CompactOS" (file-level compression), read-only, which is sufficient for inspecting Windows guests and doing certain types of modifications to them. Virt-v2v appears to work, but it may be that anything that involves modifying a compressed file might not work. I couldn't find the equivalent package in Debian or SUSE.
2005 Mar 30
1
utmp update for bsd systems
re this is a patch against samba-2.2.12p0 and adds support for updating utmp on bsds. code similarly ripped from openbsd's ftpd (; cu -- paranoic mickey (my employers have changed but, the name has remained) --- utmp.c Thu Aug 12 14:24:20 2004 +++ /home/mickey/utmp.c Wed Mar 30 15:51:40 2005 @@ -261,6 +261,7 @@ } #ifndef HAVE_PUTUTLINE +#include <ttyent.h>