Map of RDM file size?

So I I've attached some LUN to a virtual machine that is in a 180 GB data store.

LUNS was 558 GB in size... and it has created a map file and stored with the virtual machine on the data store.

When I browse the data store, he says he is a size 558 GB... vmdk file that is larger than the actual data store?

What a mistake... or not the actual vmdk file mapping size?

Probably it is just a file that indicates the size of the lun it points to...?   which makes sense because I do not understand any delete what space released if a vmdk file mapping in the data store.

How much space the actual mapping files themselves take in the data store?

Advice appreciated.

Using RDM with a virtual machine, you will see a just big VMDK file such as size of the LUN on the VMFS datastore (in the vSphere client), but it is not allocated to the VMFS data bank.

Logging to the console, you will see two files when mounted with RDM;

VirtualDisk - rdmp.vmdk size 0 bytes
VirtualDisk.vmdk size 64 bytes

Tags: VMware

Similar Questions

  • Simple mapping of RDM vs file several mapping of RDM files?

    Hello

    When you configure Microsoft Cluster nodes in a scenario of cluster-across-boxes (stream clustering) (two ESXi hosts, two-node cluster MSCS, with a bow on each ESXi host), I realize that using physical RDM Mode (pass-through RDM) is the way to go.  I also usually have to locate the C: drive (zero eager thick) for each cluster node on another volume VMFS to ensure two distinct areas of failure.  So, for example the C: drive of node of Cluster 1 (VM1) could be the Datastore1 and the C: drive of Cluster 2 node (VM2) might be on Datastore2.  Similarly, I always created RDM mapping files for each virtual computer as well, pointing to the same raw LUN.  For example, I would put the mapping of RDM for the quorum shared LUN on Datastore1 for VM1 and file a new mapping file RDM pointing to the same conditions of quorum LUN on Datastore2 for VM2.  In this way, the failure of Datastore1 will affect only VM1 and VM2affect only the failure of Datastore2 .  I did this for years (probably since ESX 2.5) and MSCS works very well in this configuration.

    However, I was re-reading of the official documentation of "configuration of Failover Clustering and the Microsoft Cluster Service" VMware and noticed that specific VMware at several locations as "a map file of RDM single and shared for each clustered disk is necessary."  In other words, they call for me to select 'existing hard drive' VM2, and then tap the RDM mapping file that I created on VM1, rather than creating a new fresh RDM for VM2 mapping file.  This seems to be "less safe" because the failure of Datastore1, or RDM 1 mapping file corruption, would result in the failure of VM2.  A separate mapping RDM for VM2, on a separate data store file would provide two distinct areas fault to two virtual machines.

    Does anyone know why VMware requires a shared single RDM mapping file?  Are there specific problems, caused by the presence of two separate files RDM mapping?

    Thank you

    Bill

    It seems that VMware has posted a KB that explicitly indicates that a pointer/mapping "single" RDM file must be used on all nodes of the cluster.  So I guess this settles my question!

    Several files of RDM pointer after the migration of storage (2131011)

    http://KB.VMware.com/kb/2131011

    Bill

  • New hard disc RDM - selection of the mapping of rdm file creation

    Hi all

    I am trying to automate the creation of new RDM disks for virtual machines.

    Watch us row map separately files on a data store named, here is the sequence of orders.

    1. because I can't find the PoweCLI method to create the mapping of RDM file, I use vmkfs as below:

    vmkfstools - z/vfms/devices/disks/naa. XXXX01 /vmfs/volumes/clustername/SharedDisk/hostname/disk1.vmdk

    2. now, we have the mapping of rdm file, I would like to create a new physical disk RDM.

    New-harddisk - Contorller $controller DiskType - RawPhysical - DeviceName ' / vfms, devices, disks, naa.» XXXX01"- vm $vm

    However, this creates a new mapping file. I don't see how I can use the one I created above.

    Am I missing something? The operation of fixing using the existing mapping of RDM file is insignificant in the GUI.

    No, not missing anything.

    This scenario is not possible with the cmdlet New-hard drive I'm afraid.

    You can use a script that uses the ReconfigVM method.

    Through the Device.Backing property, you can specify the location of the VMDK file

  • RDM to delete and recreate the mapping of RDM file and fix

    Hello

    I wrote the following script, but it works fine except it does not create the mapping of RDM file.

    If I comment out the following lines, it works fine.

    $fileMgr.DeleteDatastoreFile_Task ($name, $datacenter)

    $spec.deviceChange [0] .fileOperation = "crΘer".

    Here is the code below

    Replace-VM-RDM function {}

    Param ($scsiid, $rdmname, $vmname, $filename)

    < #.

    Convert SCSI address in Vmware format

    # >

    $scsicontroller = $null

    $scsiid_split = $null

    $scsiid_split = $scsiid.split(":")

    $scsicontroller =($scsiid_split[0])

    # SCSI VMware in the GUI controller ID is a number greater than the real controller id

    $scsicontroller = [int] $scsicontroller + 1

    # Vmware waiting conntroller with 4-character id

    $scsicontroller =($scsicontroller.) (ToString()) + "000".

    $scsicontroller

    # SCSI LOGICAL UNIT NUMBER

    $scsilun = $null

    # VMware SCSI LUN ID in the GUI is a higher number than the id real lun

    $scsilun = [int]($scsiid_split[1]) #+ 1

    ###

    $vm = get-VM-name '$vmname ' | Get-View

    IF (!) (($filename))) {}

    $RDMFile = $rdmname.split("") [0] + "_RDM.vmdk"

    $filename = (($vm.)) (Config.Files.VmPathName). Replace("$vmname.vmx","$RDMFile"))

    }

    $esx is get-view $vm. Runtime.Host

    < #.

    Download CanonicalName RDM Lun

    # >

    $rdmCanonicalName = $null

    $rdmCanonicalName = (($esx.)) Config.StorageDevice.ScsiLun | where {$_.} DisplayName - eq $rdmname}). CanonicalName)

    $rdmDevicePath = (($esx.)) Config.StorageDevice.ScsiLun | where {$_.} DisplayName - eq $rdmname}). DevicePath)

    foreach ($dev in $vm. Config.Hardware.Device) {}

    If (($dev.)) GetType()). {Name - eq "VirtualDisk")}

    If (($dev.Backing.CompatibilityMode-eq "physicalMode") - or)

    ($dev.Backing.CompatibilityMode-eq "virtualMode")) {}

    If (($dev.)) ControllerKey - eq "$scsicontroller") - and ($dev. UnitNumber - eq "$scsilun")) {}

    # Remove the hard drive

    $hd = get-disk hard $vm.name | where {$_.} Filename - eq $dev. Backing.FileName}

    $hd | Remove-hard drive - confirm: $false

    Write-Host "file name:" $dev.backing.fileName "

    Write-Host "Disk Mode:" $dev.backing.diskMode

    $dev.backing.deviceName

    $dev.backing.lunUuid

    $DevKey = $dev.key

    $CapacityInKB = $ dev. CapacityInKB

    $fileMgr = get-View (view Get ServiceInstance). Content.fileManager

    $datacenter = (get-View (Get - VM $VMname |)) Get-Datacenter) USER.USER) .get_MoRef)

    foreach ($disk in $vm. LayoutEx.Disk) {}

    if($Disk.) Key - eq $dev. Key) {}

    foreach ($chain in $disk. {String)

    foreach ($file in $chain.) FileKey) {}

    $name = $vm. LayoutEx.File [$file]. Name

    $fileMgr.DeleteDatastoreFile_Task ($name, $datacenter)

    }

    }

    continue

    }

    }

    }

    }

    Else if (($dev.)) ControllerKey - eq "$scsicontroller") - and ($dev. UnitNumber - eq "$scsilun")) {Write-Host "Selected SCSI address [$scsiid] is not a RDM"}

    }

    }

    #$hd1 = New-disk hard - VM $vmname - DeviceName $rdmDevicePath - DiskType RawPhysical # this line works

    $spec = $null

    $spec = new-Object VMware.Vim.VirtualMachineConfigSpec

    $spec.deviceChange = @)

    $spec.deviceChange += new-Object VMware.Vim.VirtualDeviceConfigSpec

    $spec.deviceChange [0] = new-Object VMware.Vim.VirtualDisk .device

    $spec.devicechange [0].device.capacityInKB = $CapacityInKB

    $spec.deviceChange [0].device.backing = new-Object VMware.Vim.VirtualDiskRawDiskMappingVer1BackingInfo

    $spec.deviceChange [0].device.backing.fileName = $filename

    $spec.deviceChange [0].device.backing.compatibilityMode = "physicalMode".

    $spec.deviceChange [0].device.backing.diskMode = «»

    $spec.deviceChange [0].device.backing.lunUuid = (($esx.)) Config.StorageDevice.ScsiLun | where {$_.} DisplayName - eq $rdmname}). UUID)

    $spec.deviceChange [0].device.connectable = new-Object VMware.Vim.VirtualDeviceConnectInfo

    $spec.deviceChange [0].device.connectable.startConnected = $true

    $spec.deviceChange [0].device.connectable.allowGuestControl = $false

    $spec.deviceChange [0].device.connectable.connected = $true

    # Take the next unused volume for HD key

    $spec.deviceChange [0].device.key = $DevKey + 1

    # 7 SCSIID UnitNUmber is reserved for the controller - then go to 8.

    If ($scsilun - eq 6) {$scsilun = $scsilun + 1}

    # Take the next unit for the HD number

    $spec.deviceChange [0].device.unitnumber = $scsilun

    # Key device for the SCSI controller

    $spec.deviceChange [0].device.controllerKey = $scsicontroller

    # Create vmdk file

    $spec.deviceChange [0] .fileOperation = "crΘer".

    $spec.deviceChange [0] .operation = 'Add '.

    $vm = get - View (Get - VM $VMname) USER.USER

    $vm. ReconfigVM_Task ($spec)

    }

    Replace-VM-RDM $vmname $scsiid $rdmname $filename

    I am working, it just need to reorganization and then the Devicename was wrong.

    Here's the script working.

    Replace-VM-RDM function {}

    Param ($scsiid, $rdmname, $vmname, $filename)

    <>

    Convert SCSI address in Vmware format

    #>

    $scsicontroller = $null

    $scsiid_split = $null

    $scsiid_split = $scsiid.split(":")

    $scsicontroller =($scsiid_split[0])

    # SCSI VMware in the GUI controller ID is a number greater than the real controller id

    $scsicontroller = [int] $scsicontroller + 1

    # Vmware waiting conntroller with 4-character id

    $scsicontroller =($scsicontroller.) (ToString()) + "000".

    $scsicontroller

    # SCSI LOGICAL UNIT NUMBER

    $scsilun = $null

    # VMware SCSI LUN ID in the GUI is a higher number than the id real lun

    $scsilun = [int]($scsiid_split[1]) #+ 1

    ###

    $vm = get-VM-name '$vmname ' | Get-View

    IF (!) (($filename))) {}

    $RDMFile = $rdmname.split("") [0] + "_RDM.vmdk"

    $filename = (($vm.)) (Config.Files.VmPathName). Replace("$vmname.vmx","$RDMFile"))

    }

    $esx is get-view $vm. Runtime.Host

    <>

    Download CanonicalName RDM Lun

    #>

    $rdmCanonicalName = $null

    $rdmCanonicalName = (($esx.)) Config.StorageDevice.ScsiLun | where {$_.} DisplayName - eq $rdmname}). CanonicalName)

    $rdmDevicePath = (($esx.)) Config.StorageDevice.ScsiLun | where {$_.} DisplayName - eq $rdmname}). DevicePath)

    foreach ($dev in $vm. Config.Hardware.Device) {}

    If (($dev.)) GetType()). {Name - eq "VirtualDisk")}

    If (($dev.Backing.CompatibilityMode-eq "physicalMode") - or)

    ($dev.Backing.CompatibilityMode-eq "virtualMode")) {}

    If (($dev.)) ControllerKey - eq "$scsicontroller") - and ($dev. UnitNumber - eq "$scsilun")) {}

    # Remove the hard drive

    $hd = get-disk hard $vm.name | where {$_.} Filename - eq $dev. Backing.FileName}

    $hd | Remove-hard drive - confirm: $false - DeletePermanently

    Write-Host "file name:" $dev.backing.fileName "

    Write-Host "Disk Mode:" $dev.backing.diskMode

    $dev.backing.deviceName

    $dev.backing.lunUuid

    $DevKey = $dev.key

    $CapacityInKB = $ dev. CapacityInKB

    <#$fileMgr =="" get-view="" (get-view="">

    $datacenter = (get-View (Get - VM $VMname |)) Get-Datacenter) USER.USER) .get_MoRef)

    foreach ($disk in $vm. LayoutEx.Disk) {}

    if($Disk.) Key - eq $dev. Key) {}

    foreach ($chain in $disk. {String)

    foreach ($file in $chain.) FileKey) {}

    $name = $vm. LayoutEx.File [$file]. Name

    $fileMgr.DeleteDatastoreFile_Task ($name, $datacenter)

    }

    }

    continue

    }

    }#>

    }

    }

    Else if (($dev.)) ControllerKey - eq "$scsicontroller") - and ($dev. UnitNumber - eq "$scsilun")) {Write-Host "Selected SCSI address [$scsiid] is not a RDM"}

    }

    }

    #$hd1 = New-disk hard - VM $vmname - DeviceName $rdmDevicePath - DiskType RawPhysical # this line works

    $spec = $null

    $spec = new-Object VMware.Vim.VirtualMachineConfigSpec

    $spec.deviceChange = new-Object VMware.Vim.VirtualDeviceConfigSpec [] (1)

    $spec.deviceChange [0] = new-Object VMware.Vim.VirtualDeviceConfigSpec

    # Create vmdk file

    $spec.deviceChange [0] .fileOperation = "crΘer".

    $spec.deviceChange [0] .operation = 'Add '.

    $spec.deviceChange = new-Object VMware.Vim.VirtualDeviceConfigSpec [] (1)

    $spec.deviceChange [0] = new-Object VMware.Vim.VirtualDeviceConfigSpec

    $spec.deviceChange [0] .operation = 'Add '.

    $spec.deviceChange [0] .fileOperation = "crΘer".

    $spec.deviceChange [0] = new-Object VMware.Vim.VirtualDisk .device

    $spec.deviceChange [0].device.key = - 100

    $spec.deviceChange [0].device.backing = new-Object VMware.Vim.VirtualDiskRawDiskMappingVer1BackingInfo

    $spec.deviceChange [0].device.backing.fileName = "$filename".

    $spec.deviceChange [0].device.backing.deviceName = (($esx.)) Config.StorageDevice.ScsiLun | where {$_.} DisplayName - eq $rdmname}). DevicePath)

    $spec.deviceChange [0].device.backing.compatibilityMode = "physicalMode".

    $spec.deviceChange [0].device.backing.diskMode = «»

    $spec.deviceChange [0].device.connectable = new-Object VMware.Vim.VirtualDeviceConnectInfo

    $spec.deviceChange [0].device.connectable.startConnected = $true

    $spec.deviceChange [0].device.connectable.allowGuestControl = $false

    $spec.deviceChange [0].device.connectable.connected = $true

    # Key device for the SCSI controller

    $spec.deviceChange [0].device.controllerKey = [int] $scsicontroller

    # 7 SCSIID UnitNUmber is reserved for the controller - then go to 8.

    If ($scsilun - eq 6) {$scsilun = $scsilun + 1}

    # Take the next unit for the HD number

    $spec.deviceChange [0].device.unitnumber = [int] $scsilun

    $spec.deviceChange [0].device.capacityInKB = [int] $CapacityInKB

    $vm = get - View (Get - VM $VMname) USER.USER

    $vm. ReconfigVM ($spec)

    }

    Replace-VM-RDM $vmname $scsiid $rdmname $filename

  • Clean map of RDM files

    I just want to get clarification.  I removed some RDM tonight a virtual machine, but instead of removing and deleting, I just went with the removal of the RDM.  I now find myself with some of the mapping files and was curious to know if its ok just to remove @ this point?

    http://monosnap.com/image/Hc4AzgXHXET9PBy79UYUZmaRn.png

    Hello

    The withdrawal of RDM mapping files will not cause any problem. When you add RDM back it will create again. It's so safe.

    Concerning

    Mohammed

  • Virtual RDM: mapping in the vm, VMFS folder file size

    Hello

    I just migrated an iscsi LUN previously managed the MS iscsi initiator (running inside a machine virtual w2k03) to ESX iscsi sw, preserving the data.

    I used RDM (raw device mapping) and I had to use 'virtual' because 'physical' hanged the VM at startup of the operating system.

    The iscsi LUN is 1 TB, with about 60GB used.

    I noticed that on the volume VMFS file mapping for the virtual machine is about 2 GB: happen when on the iscsi LUN more space will be used? And if it goes, is there a rule to calculate how much?

    I'm worried I might risk running out of space on the VMFS volume because of the mapping of RDM file...

    Thank you

    Guido

    It's just a pointer to the original disc of RDM.   I have a few MS Cluster in my setup. For 18 GB RDM Lun he creates about 100 MB.

    Thank you

  • Consequently on Max file size limit BB device.

    What is the maximum file size limit that we may store on the device of BB, excluding the SD and inclusive SD Card map, how can I get the specifications for the memory of a device?

    I got the info required... thankU all

    These links solved the problem.

    http://supportforums.BlackBerry.com/T5/BlackBerry-storm-BlackBerry-9500/memory-in-the-9350-this-one-...

    http://supportforums.BlackBerry.com/T5/BlackBerry-bold-9700-Smartphone/micro-SD-memory-storage-card-...

  • OK to remove the mapping of RDM?

    I need to cold migrate some virtual machines with virtual RDM mode on new servers. I'll introduce the RDM with different numbers of LUNS on the target hosts. My co worker suggests that when you remove the ROW before the migration of the cold, you can not delete the mapping file, otherwise this will cause data corruption, so it selects the removal of the option of vm (not remove and delete).

    My understanding is the file ROW is just a mapping file and is safe to delete. My thought is that delete saves space and accelerates the migration time.

    RDM files can simply be removed without data corruption?, most vmware articles suggest they can and they're just mapping files.

    When the virtual machine allows you new hosts, a new virtual RDM will be added when the lun is presented to the new hosts.

    Yes, you can delete the ROW with removal of the VM disk option before the migration of the cold.

    It won't cause any data corruption that all data is on LUN storage.

    RDM file contain only for the LUN mapping information.

    Once you have completed the migration of VM, you can add RDM LUN to VM, just make sure that you attach Correct RDM LUN to VM.

    See this KB for more information-

    VMware KB: Switching between physical and virtual compatibility modes in ESX/ESXi, a mapping of raw data

  • Hi, my places.sqlite file size is 30 720 KB I reached the maximum size, is there a maximum size for this. Visited links are is more changing color.

    Hello
    My places.sqlite file size is 30 720 KB I reached the maximum size, is there a maximum size for this.
    Suddenly the visited links don't change is no longer the font color, that I prepare for an exam, I need visited issues to change color, to follow up on issues that I ended. But if I delete a few days of history, then again once, most visited links change color and then it stops, it seems that something is getting full and not able to accommodate more? Why my visited links don't change color after a number of visits? I would like to make a back up of the file places.sqlite. So I tried everything to remove the profile, uninstalling reinstalling, creating a new profile, and then copy paste places.sqlite etc, but as mentioned after a few visits, visited links is no longer change color, if I delete a few days in history and then a few visits is again change color and then stop again, so what should I increase so that my quota of visited links is increased , I also tried tweaking about: config and there has been no result. Although I was not really convinced that _pages growing brower.history_max (don't remember the name, but I'm sure you get the idea) will help.
    Seems that while my visited links change color, quota is met and only if I delete the history of a few days will I get some links most visited to change color. Can someone enlighten us? As mentioned that my places.sqlite file size is 30 720 KB so I think maybe this has something to do with it? Would be very grateful if someone could help me. Thank you.

    Sorry it is not looking good.

    1. Unlike bookmarks history is not saved in Firefox.
    2. There is a possibility using Windows.
    3. Sync is not expected to back up things until the synchronization server
    4. If places.sqlite does not sort itself you may have to re-create remove it. You will lose your history, but can still access indirectly IF you have saved a copy of the appropriate
    5. Different databases to try to create new profiles
    1. History
      is rather less robust than bookmarks, you should deliberately somehow return it upward, but it's too late now
    2. Earlier versions of Windows
      This is really the last chance. Make sure you have some places.sqlite you saved. Always before and after any attempt to restore the backup. Windows must be able to provide a previous version. One of these versions may be usable as is; or can be used after a repair with housekeeping. Of course, this is not the latest version but it should help.
    3. Sync is not a server backup service.
      Sync is intended to save on another device, no backup is the fact that the second device then contains synchronized information. IIRC Sync development ceased, and the replacement when available may include a server backup option.
    4. Recreate the database of bookmarks (including history)
      Unfortunately, recess can only use saved bookmarks, there is no saved history to use. Once the database is re-created, it will continue to store the history but it loses the existing history. This time take steps to save on a regular basis.
    5. Use the new profiles for database testing.

    To simplify comparison of the results of the database different files create one or more new additional profiles. Then try to smash the places.sqlite file into the test profile with any other places.sqlite, you want to try. Allows you to directly compare the databases, without seeking to use sync and without changing the Firefox profile work unnecessarily. You can keep a reference profile of studies with the best of the profiles of any shows results of history; According to the best recreated or corrupted database is.
    • Use the Profile Manager to create and delete profiles Firefox
    • CARE, do not rename or delete profiles created once or use anything other than empty folders when they are created. Don't nest in the other profiles. (At least until you know exactly how it behaves - post back if you never consider such actions)
  • for the iBooks file size question

    Hello..

    With a view to monitoring of storage space on a MacBook Air without 85 GB of available space, someone knows on what an iBook, file size can be?

    Thanks in advance!

    Carolyn

    Hi there is Carolyn!

    Looks like you are looking to see what type of file sizes to wait for iBooks. This article seems to answer this question directly:

    On iBooks

    Size of files

    The typical book is about 2 MB. The books that contain improved, audio or video, features vary in size depending on the content. Enhanced books could take longer to download than a standard book.

    The iBook Store also offers manuals that might be larger than 1 to 2 GB of file size. You need a Wi - Fi download them on an iOS device. Time to download textbooks vary depending on your Internet connection.

    Thank you for using communities of Apple Support.

  • Designjet T120: Can't trace file size D (T120)-specific PDF drawing

    Hi all

    Having problems trying to draw a PDF specific drawing D-size (SolidWorks saves) on our plotter T120.  It plots just fine in the sizes A, B and C, but when I try D, it just hangs, then times out with an error.  I tried to update drivers, run the HP diagnostic utility, run the utility from Microsoft, etc. but nothing seems to work.  I traced several other designs in the past in D format without any problem (tried a while ago with a different design of PDF and it worked fine).  Looking for ideas...

    In which case it is important:

    * Wireless printing

    * The PDF file size is 1.30 MB (spools up quickly to 13.4MB/15.7MB then crashes)

    Thanks, Jeff

    Hi Jeff,

    Thanks for your reply. Maybe you are not understood my message. First update you the firmware from the link below: Driver and Firmware through EWS and follow the instructions.

    Latest Firmware: Version - AXP2CN1623AR; Date - August 1, 2016; Size of the file - 24.7 MB

    Please share your firmware version. who is now in your printer.

    The printer settings printer Goto and information on the internal use print printer page them you can find the firmware information, or also through printer EWS.

    Firmware can not uninstalled process.

    Thank you
    Rashed

    I'm not an employee of HP, but I am an engineer @ HP Partner and I share my knowledge of my own time.

    If your problem is resolved please click the button "accept as a Solution.

    If my answer was helpful, please click the 'Thumbs Up' to say 'thank you '.

  • What is the best file size to create an animated logo

    I'm trying to animate a corporate lodge for a chart of the opening of a video. Can you recommend what size of files and the resolution is the best? If I can get a JPEG will apply the same specifications of file size.

    I consider opening the file in Photoshop, selecting and separating logo in layers by using the layers separately to move together as the logo of the motion.

    All your ideas and suggestions are greatly appreciated.

    Thanks in advance for your help.

    tplynchy wrote:

    … I consider opening the file in Photoshop, selecting and separating logo in layers by using the layers separately to move together as the logo of the motion.

    That's exactly how I would do it (too).

    Applications of paint have wonderful tools to bump-out parts of an image, or to 'flatten' areas (cleaning/denoising artifact jpg)...

    size/resolution: depends on the 'action', if you do not zoom in, 1920 x 1080 video hires, is good enough, if you do some z axis fun (fly Thru), a much higher res is needed.

    suggestion: If the logo contains the fonts/text or simple forms, I re - who would enact in movement. because it acts as a 'vector' = resolution independently, as in this example:

    https://youtu.be/abHlSK3QnAI

  • Reduction in file size of scanned documents

    ISSA. I analyze the statements of income, statements etc. with several banking pages in pdf format, then want to send them an email with several pdf files attached to a single email. My file sizes are 3 MB, 8 MB, 12MB, etc. even if I scan only about 15 pages in each pdf usually.

    I got PDFs page 82 to others by e-mail and the file size is less than 1 MB.

    How can I reduce the file size for easier transmission through e-mail?

    Thank you!

    Hi Zohami,

    After you change the settings, the settings will be will be, to only do once

    Try several times, scan to see what works better settings for you.

    After you change the settings in the desktop shortcut, the settings will apply for digitization of the all-in-one touch pad with the same shortcut name.

    I hope this helps answer your question.

  • Why the same photo's file size different in Photos and in the Finder?

    I have a photo size 4608 x 3456. When I open the file information in the Apple's Photos app, it says that the file is 7.8 MB. When I open the same photo in the Finder and look at the news file, it is said that it is 3.1 MB on the disk. Why does this happen? All other metadata is the same in the pictures, Finder, Lightroom or Photoshop, but I can't understand why the file size seems to have changed since I dragged photo pictures to the Finder.

    Thank you.

    How you view the photo in the finder (you shouldn't be messing around inside the photo library)?

    If you export or drag / drop you create a new file with a different compression - using export allows you to control what

    LN

  • / etc/sudoers, 1242 but file size expected 2299

    Computer crashes often with many different applications, iMovie and Autocad running under parallels W / windows XP, constantly and safari and numbers occasionally. I went as far as backup, wipe my hard drive and reinstall the original operating system then restore time machine and then upgrading back to El capitan. What did I miss?

    Any ideas what to try next? Back to Snow Leopard and never forget the upgrade? Surely we can do better than that!

    Here is my info EtreCheck

    EtreCheck version: 2.6.6 (226)

    Report generated on 29/12/15 21:15

    Time 03:09

    Download EtreCheck from http://etrecheck.com

    Click on the links [click for support] to help with non-Apple products.

    Click on the links [click for more details] for more information on this line.

    Hardware Information: (Does that mean?)

    MacBook Pro Intel Core i5, Intel Core i7 (mid-2010)

    [Click for plug technique]

    [Click here for the User Guide]

    MacBook Pro - model: MacBookPro6, 2

    1 2.66 GHz Intel Core i7 CPU: 2 strands

    8 GB of RAM expandable

    [Click here for upgrade instructions]

    BANK 0/DIMM0

    OK 4 GB DDR3 1067 MHz

    BANK 1/DIMM0

    OK 4 GB DDR3 1067 MHz

    Bluetooth: Old - transfer/Airdrop2 not supported

    Wireless: en1: 802.11 a/b/g/n

    Battery: Health = Normal - Cycle count = 829 - SN = W0052P48EBX0A

    Video information: (Does that mean?)

    Intel HD Graphics

    NVIDIA GeForce GT 330M - VRAM: 512 MB

    Color LCD 1680 x 1050

    Software: (Does that mean?)

    OS X El Capitan 10.11.2 15 c (50) - since startup time: less than an hour

    Disc information: (Does that mean?)

    TOSHIBA MK5055GSXF disk0: (500,11 GB) (rotation)

    EFI (disk0s1) : 210 MB

    HD (disk0s3) [recovery] recovery: 650 MB

    Untitled (disk1) /: 498,88 (Go 122,34 free)

    Storage of carrots: disk0s2 499.25 GB Online

    MATSHITADVD-R UJ-898)

    USB information: (Does that mean?)

    Computer, Inc. Apple IR receiver.

    Built-in ISight from Apple Inc..

    Card reader Apple

    Apple Inc. Apple keyboard / Trackpad

    Apple Inc. BRCM2070 hub.

    Apple Inc. Bluetooth USB host controller.

    Configuration files: (Does that mean?)

    / etc/sudoers, 1242 but file size expected 2299

    Guardian: (Does that mean?)

    Mac App Store and identified developers

    Kernel extensions: (Does that mean?)

    / Applications/Parallels Desktop.app

    com.parallels.kext.hypervisor [no charge] (11.1.0 32202 - 10.9 SDK) [click for support]

    com.parallels.kext.NetBridge [no charge] (11.1.0 32202 - 10.9 SDK) [click for support]

    com.parallels.kext.usbconnect [no charge] (11.1.0 32202 - 10.9 SDK) [click for support]

    com.parallels.kext.vnic [no charge] (11.1.0 32202 - 10.9 SDK) [click for support]

    / System/Library/Extensions

    com.novatelwireless.kext.WWAN [no charge] (3.0.24) [click for support]

    /System/Library/Extensions/NovatelWirelessWWAN.kext/contents/plugins

    com [no charge]. NovatelWireless.driver.NovatelWirelessUSBCDCECMControl (3.0.24) [click for support]

    com [no charge]. NovatelWireless.driver.NovatelWirelessUSBCDCECMData (3.0.24) [click for support]

    com.novatelwireless.driver.3G [no charge] (3.0.24) [click for support]

    com.novatelwireless.driver.3GData [no charge] (3.0.24) [click for support]

    com.novatelwireless.driver.DisableAutoInstall [no charge] (3.0.24) [click for support]

    com.novatelwireless.driver.NWVBE [no charge] (3.0.24) [click for support]

    Launch demons: (Does that mean?)

    [loading] com.adobe.fpsaud.plist [click to support]

    [loading] com.gopro.stereomodestatus.plist [click to support]

    Items in user login: (Does that mean?)

    None

    Other applications: (Does that mean?)

    [ongoing] com.etresoft.EtreCheck.110112

    Plug-ins Internet: (Does that mean?)

    FlashPlayer - 10.6: Version: 20.0.0.267 - 10.6 SDK [click for support]

    QuickTime Plugin: Version: 7.7.3

    Flash Player: Version: 20.0.0.267 - 10.6 SDK can't contact Adobe

    Web of Google Earth plugin: Version: 6.0 [click for support]

    iPhotoPhotocast: Version: 7.0 - 10.7 SDK

    Default browser: Version: 601 - SDK 10.11

    Safari extensions: (Does that mean?)

    Open in Internet Explorer

    3rd party preference panes: (Does that mean?)

    Flash Player [click for support]

    MacFUSE [click for support]

    Time Machine: (Does that mean?)

    Skip system files: No.

    Mobile backups: OFF

    Automatic backup: NON - automatic backup disabled

    Volumes to back up:

    Untitled: disc size: 498,88 GB disc used: 376,54 GB

    Destinations:

    Time Machine [Local] backups

    Total size: 4,00 TB

    Total number of backups: 12

    An older backup: 18/11/14, 23:27

    Last backup: 26/11/15, 11:38

    Size of backup drive: Excellent

    Size of backup TB 4.00 > (disk size 498,88 GB X 3)

    Top of page process CPU: (Does that mean?)

    3% WindowServer

    kernel_task 2%

    1% mds_stores

    1% mdworker (8)

    1% fontd

    Top of page process of memory: (Does that mean?)

    519 MB kernel_task

    Mdworker (8) 303 MB

    WindowServer 106 MB

    UserEventAgent (2) 106 MB

    Mds_stores 98 MB

    Virtual memory information: (Does that mean?)

    3.60 GB of free RAM

    used 4.40 GB RAM (1.17 GB being cached)

    Used Swap 0 B

    Diagnostic information: (Does that mean?)

    December 29, 2015, 21:10:43 Self test - passed

    December 29, 2015, 12:11:57 /Library/Logs/DiagnosticReports/Kernel_2015-12-29-121157_[redacted].panic [click for more information]

    December 22, 2015, 22:17:44 /Library/Logs/DiagnosticReports/Kernel_2015-12-22-221744_[redacted].panic [click for more information]

    December 22, 2015, 21:40:26 /Library/Logs/DiagnosticReports/Kernel_2015-12-22-214026_[redacted].panic [click for more information]

    December 22, 2015, 19:20:46 /Library/Logs/DiagnosticReports/Kernel_2015-12-22-192046_[redacted].panic [click for more information]

    18 December 2015, 13:42:34 /Library/Logs/DiagnosticReports/Kernel_2015-12-18-134234_[redacted].panic [click for more information]

    December 14, 2015, 14:54:50 /Library/Logs/DiagnosticReports/Kernel_2015-12-14-145450_[redacted].panic [click for more information]

    December 12, 2015, 17:45:31 /Library/Logs/DiagnosticReports/Kernel_2015-12-12-174531_[redacted].panic [click for more information]

    10 December 2015, 15:28:31 /Library/Logs/DiagnosticReports/Kernel_2015-12-10-152831_[redacted].panic [click for more information]

    December 10, 2015 11:38:34 /Library/Logs/DiagnosticReports/Kernel_2015-12-10-113834_[redacted].panic [click for more information]

    December 9, 2015, 16:30:51 /Library/Logs/DiagnosticReports/Kernel_2015-12-09-163051_[redacted].panic [click for more information]

    8 December 2015, 19:14:29 /Library/Logs/DiagnosticReports/Kernel_2015-12-08-191429_[redacted].panic [click for more information]

    December 4, 2015, 20:08:38 /Library/Logs/DiagnosticReports/Kernel_2015-12-04-200838_[redacted].panic [click for more information]

    December 4, 2015, 19:20:53 /Library/Logs/DiagnosticReports/Kernel_2015-12-04-192053_[redacted].panic [click for more information]

    These must be run as administrator. If you have only one user account, you are the administrator.

    Please launch the Console application in one of the following ways:

    ☞ Enter the first letters of his name in a Spotlight search. Select from the results (it should be at the top).

    ☞ In the Finder, select go utilities ▹ of menu bar or press the combination of keys shift-command-U. The application is in the folder that opens.

    ☞ Open LaunchPad and start typing the name.

    In the Console window, select

    DIAGNOSIS AND diagnostic USE information reports ▹ System

    (not diagnose them and use Messages) in the list of logs on the left. If you don't see this list, select

    List of newspapers seen ▹ display

    in the menu bar.

    There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points downwards. You will see a list of reports. A report of panic has a name that begins with "Kernel" and ends with ".panic." Select the most recent. The content of the report is displayed at right. Allows you to copy and paste to validate all of the content, text, not a screenshot.

    If you don't see any report, but you know, there was a panic, you have chosen diagnostic and using the list of Log Messages. INFORMATION on the USE of DIAGNOSTIC AND choose instead.

    In the interest of privacy, I suggest that, before posting, you change the UUID ' anonymous, ' a long string of letters, numbers and dashes in the header of the report, if it is present (it cannot be). "

    Please do not post other types of diagnostic report.

    I know that the report is long, perhaps several hundred lines. Please report all this anyway.

    When you post the report, an error message may appear on the web page: "you have included content in your post that is not allowed", or "the message contains invalid characters." It's a bug in the forum software. Thanks for posting the text on Pastebin, then post here a link to the page you created.

    If you have an account on Pastebin, please do not select private in exposure menu to paste on the page, because no one else that you will be able to see it.

Maybe you are looking for

  • Satellite L670 cpu fan noise

    As I sit in front of my new laptop L670, from the left end of the keyboard comes up and down a whirring frequent sound that I'm pretty sure is the CPU fan(not HD).What is too much? I find it disturbing. There is no sound from my old Toshiba 1 year. T

  • First song in the list of reading/album on repeat and appears about 20 times in 'To the TOP NEXT'

    On iOS when I hit play button to playback of a playlist or album, only the first song is played. If I hit then it starts the same song from the beginning. The search in the list IN FOLLOWING the same song is about 20 times in there. This isn't the be

  • Problem installing printer, can't seem to get the driver for my printer HP Officejet 4500 G510n-z

    Can't seem to get the driver for my printer HP Officejet 4500 G510n-z... error message is displayed when using the floppy... same error message when trying to install it directly from the HP website for downloads but will not be installed, then unins

  • HP Pavilion a1700n

    I remember running into a video here about a week or two ago on how to remove the hard drive to a desktop PC Pavilion a1700n... I find the video said and found no I was wondering if anyone knows where I can find the video or even walking through the

  • Oracle AP - one payment is possible without an invoice

    Hello In Oracle Apps AP, a payment may be made without invoice?Or, for a given payment, an invoice ' ' will always exist? Payments can be made by mistake without invoices? If so, what table lets us know that a payment is a bill the code to him. I che