By simply looking at the benchmarks results, it is quite remarkable:
Method | File Size | Compression | Decompression | |||
---|---|---|---|---|---|---|
uncompressed | 46380 KB | - | - | |||
JLS | 14984 KB | 6.6 s | 7.3 s | |||
PNG | 16256 KB | 42.4 s | 2.4 s | |||
IZ | 15496 KB | 1.2 s | 1.3 s |
All about my activities, thoughts, inspiration, ideas, and everything that happened around me
Method | File Size | Compression | Decompression | |||
---|---|---|---|---|---|---|
uncompressed | 46380 KB | - | - | |||
JLS | 14984 KB | 6.6 s | 7.3 s | |||
PNG | 16256 KB | 42.4 s | 2.4 s | |||
IZ | 15496 KB | 1.2 s | 1.3 s |
bash-4.1$ ./mempodipper =============================== = Mempodipper = = by zx2c4 = = Jan 21, 2012 = =============================== [+] Opening socketpair. [+] Waiting for transferred fd in parent. [+] Executing child from child fork. [+] Opening parent mem /proc/3765/mem in child. [+] Sending fd 5 to parent. [+] Received fd at 5. [+] Assigning fd 5 to stderr. [+] Ptracing su to find next instruction without reading binary. [+] Resolved exit@plt to 0x80499e8. [+] Calculating su padding. [+] Seeking to offset 0x80499dc. [+] Executing su with shellcode. sh-4.1# id uid=0(root) gid=0(root)
Important notice for those who are wishing to get the iPhone 4S unlock, don’t update your device to the latest iOS 5.0.1 because the iPhone DevTeam has announced that they got a exploit for the iPhone 4S unlock. So stay on the iOS 5.0 with the very first buggy baseband. The iOS 5.0.1 Absinthe also works on the iOS 5.0, that means you can jailbreak your device while staying at iOS 5.0.
The main advantages of the new file system include the ability for Windows 8 to detect all forms of disk corruption, data striping support for performance, and an allocate on write model known as copy-on-write. Microsoft has used copy-on-write (COW) concepts in its SQL Server products and Volume Shadow Copy Service previously, enabling quick snapshots of large data sets.
ReFS cannot be used on removable media, nor can it be used to boot an operating system — it's simply for storage right now. Microsoft says the new file system will only be introduced as part of Windows Server 8, but Windows 8 client will be able to access and read ReFS volumes until it's fully supported in client operating systems in the future.I wonder when will this filesystem be available on Linux kernel as well. In the past, Linux communities has managed to work with FAT32 and NTFS very well and they are now considered stable and mature enough to be used in production machines.
/tmp/vmware-root/modules/vmmon-only/linux/iommu.c: In function ‘IOMMU_AdjustMappings’: /tmp/vmware-root/modules/vmmon-only/linux/iommu.c:180:4: error: implicit declaration of function ‘iommu_found’ [-Werror=implicit-function-declaration] /tmp/vmware-root/modules/vmmon-only/linux/iommu.c: In function ‘IOMMU_RegisterDevice’: /tmp/vmware-root/modules/vmmon-only/linux/iommu.c:415:7: error: too few arguments to function ‘iommu_domain_alloc’ include/linux/iommu.h:68:29: note: declared hereThen, you can fix this problem by :
cd /usr/lib/vmware/modules/source tar -xvf vmmon.tar cd vmmon-only/linux/ vi iommu.cadd this in top part of the file
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0) #include <linux/pci.h> #define iommu_found() iommu_present(&pci_bus_type) #define iommu_domain_alloc() iommu_domain_alloc(&pci_bus_type) #endifthen finish it by saving it and then:
cd /usr/lib/vmware/modules/ rm vmmon.tar tar -cvf vmmon.tar vmmon-only/ vmware-modconfig --console --install-allThat's it. You can start your VMWare and voila... it's working again.