How to free up space on my mac

hi all,
i've a macbbok air with 128gb flash storage{2013}.i needed to free up space, so i made a backup on a seagate harddrive connected to my airport extreme. after the backup was successfully done, I moved a previously downloaded large file{45gb} to trash,and then emptied trash.

See here for answer about “OTHER” taking up space and how to free up unwanted space being taken up:
http://pondini.org/TM/30.html
and here:
http://pondini.org/OSX/DiskSpace.html  

Similar Messages

  • How do you export your iphoto library from a mac air to an external hard drive to free up space on the mac air

    how do you export your iphoto library from a mac air to an external hard drive to free up space on the mac air

    Go to Pictures folder and copy the library to the external drive. Then, open iPhoto holding Option key and select the library in your external disk. Finally, delete the library on Pictures

  • How do i move my tv shows, movies and books from my mac to my time capsule to free up space on my mac?

    how do i move my tv shows, movies and books from my mac to my time capsule to free up space on my mac?

    Probably the easiest way is to drag the files from the iTunes window to the external drive.  Make sure they have copied.  Delete them from iTunes.  Hold down the option key and drag the copied files back to iTunes.  This will add them back but mapped to their new location and the option/alt key will stop the files from being copied to your Media folder on the internal drive.
    In future if you are adding a batch of files in one go you can set preferences temporarily to store media on the external drive, then change back again.  See also:  iTunes 12 for Mac: Change where your iTunes files are stored - http://support.apple.com/kb/PH19507

  • How do I move files from my mac to icloud drive to free up space on my mac

    How do I move files from my mac to icloud drive to free up space on my mac?
    I moved one file; then when I went to delete it from the Mac it said i was deleting it from the iCloud drive. How do I leave it in iCloud drive, but get rid of it on my Mac?

    Welcome to the Apple Community.
    Are these videos in your camera roll or purchases made from iTunes.

  • HT201250 If time machine puts all of my photos onto my external hard drive using time machine, can I then delete the photos from my computer put view them again from the external hard drive? Basically, can I free up space on my mac but not lose years of p

    If time machine puts all of my photos onto my external hard drive using time machine, can I then delete the photos from my computer but view them again from the external hard drive? Basically, can I free up space on my mac but not lose years of photos?

    To add to Niel's comment bear in mind that if you have a backup copy on an external HD and later delete the orignals on your Mac HD you will then only have one copy - so no backup.
    If the pictures are precious you should have at least two copies, and ideally another copy kept off site,

  • How can free + used space tbs size, can someone explain

    Hi Gurus
    Can someone explain this, How can free + used space in a tablespace can be greater than size of a tablespace. What am I missing here . Thanks a lot .
    I am on 10.2.0.1, HP-UX
    14:38:52 SQL> select owner,sum(bytes), sum(BYTES) /1024/1024 "MB" from dba_segments where tablespace
    name='USERDB1ADATA' group by owner;
    OWNER SUM(BYTES) MB
    USERDB1A 839680000 800.78125
    1 row selected.
    14:40:42 SQL> select bytes, BYTES /1024/1024 "MB" from dba_data_files where tablespace_name='USERDB1
    A_DATA';
    BYTES MB
    3758096384 3584
    1 row selected.
    14:40:42 SQL> select sum(bytes) , sum(BYTES) /1024/1024 "MB"from dba_free_space where tablespace_nam
    e='USERDB1A_DATA';
    SUM(BYTES) MB
    3067412480 2925.3125
    1 row selected.
    14:40:43 SQL> select 839680000 + 3067412480 "used + free space" from dual;
    used + free space
    3907092480
    1 row selected.
    New DBA

    Good point, Howard, about the recycle bin. So I cleaned up, recreated the table, filled it, dropped it but did not purge it, and ...
    SQL> create table test.x tablespace test as select * from dba_objects where 1=2;
    Table created.
    SQL> insert into test.x select * from dba_objects;
    12617 rows created.
    SQL> commit;
    Commit complete.
    SQL> drop table test.x;
    Table dropped.
    SQL> with
      2  dbf_size as (select sum(bytes) size_
      3                 from dba_data_files where tablespace_name='TEST'),
      4  dbf_free as (select sum(bytes) free_
      5                 from dba_free_space where tablespace_name='TEST'),
      6  dbf_used as (select sum(bytes) used_
      7                 from dba_segments where tablespace_name='TEST')
      8  select size_, free_, used_, (size_ - free_ - used_) left_
      9         from dbf_size, dbf_free, dbf_used
    10  /
         SIZE_      FREE_      USED_      LEFT_
       5242880    5177344    2162688   -2097152
    SQL>and then I played around with my SQL and came up with
    WITH
    dbf_size AS (SELECT SUM(bytes) size_
                   FROM dba_data_files
                  WHERE tablespace_name='TEST'),
    dbf_free AS (SELECT SUM(bytes) free_
                   FROM dba_free_space
                  WHERE tablespace_name='TEST'),
    dbf_used AS (SELECT SUM(bytes) used_
                   FROM dba_segments
                  WHERE tablespace_name='TEST'),
    dbf_fbin AS (SELECT SUM(bytes) fbin_
                   FROM dba_segments
                  INNER JOIN
                        dba_recyclebin
                     ON (tablespace_name=ts_name
                         AND segment_name=object_name)
                  WHERE tablespace_name='TEST')
    SELECT      size_, -- tablespace size
         free_, -- free space reported
         used_, -- segment space used
         fbin_, -- segment space in recycle bin
         (size_ - free_ - used_ + fbin_) left_ -- 64K overhead per data file
      FROM      dbf_size, dbf_free, dbf_used, dbf_fbin
    /which does
    SQL> WITH
      2  dbf_size AS (SELECT SUM(bytes) size_
      3                 FROM dba_data_files
      4                WHERE tablespace_name='TEST'),
      5  dbf_free AS (SELECT SUM(bytes) free_
      6                 FROM dba_free_space
      7                WHERE tablespace_name='TEST'),
      8  dbf_used AS (SELECT SUM(bytes) used_
      9                 FROM dba_segments
    10                WHERE tablespace_name='TEST'),
    11  dbf_fbin AS (SELECT SUM(bytes) fbin_
    12                 FROM dba_segments
    13                INNER JOIN
    14                      dba_recyclebin
    15                   ON (tablespace_name=ts_name
    16                       AND segment_name=object_name)
    17                WHERE tablespace_name='TEST')
    18  SELECT     size_,
    19     free_,
    20     used_,
    21     fbin_,
    22     (size_ - free_ - used_ + fbin_) left_
    23    FROM     dbf_size, dbf_free, dbf_used, dbf_fbin
    24  /
         SIZE_      FREE_      USED_      FBIN_      LEFT_
       5242880    5177344    2162688    2162688      65536
    SQL> alter tablespace test add datafile 'C:\ORACLE\ORADATA\XE\TEST2.DBF' size 5m;
    Tablespace altered.
    SQL> WITH
      2  dbf_size AS (SELECT SUM(bytes) size_
      3                 FROM dba_data_files
      4                WHERE tablespace_name='TEST'),
      5  dbf_free AS (SELECT SUM(bytes) free_
      6                 FROM dba_free_space
      7                WHERE tablespace_name='TEST'),
      8  dbf_used AS (SELECT SUM(bytes) used_
      9                 FROM dba_segments
    10                WHERE tablespace_name='TEST'),
    11  dbf_fbin AS (SELECT SUM(bytes) fbin_
    12                 FROM dba_segments
    13                INNER JOIN
    14                      dba_recyclebin
    15                   ON (tablespace_name=ts_name
    16                       AND segment_name=object_name)
    17                WHERE tablespace_name='TEST')
    18  SELECT     size_, -- tablespace size
    19     free_, -- free space reported
    20     used_, -- segment space used
    21     fbin_, -- segment space used in recycle bin
    22     (size_ - free_ - used_ + fbin_) left_
    23    FROM     dbf_size, dbf_free, dbf_used, dbf_fbin
    24  /
         SIZE_      FREE_      USED_      FBIN_      LEFT_
      10485760   10354688    2162688    2162688     131072Message was edited by:
    Hans Forbrich
    Cleaned up the script and tested with second data file added to verify LMT overhead.

  • How many free disk space after install OS X lion (10.7) ?

    Hi,
    I would like to know that how many free disk space after install OS X lion (10.7) on MBA i5.
    Many Thanks,
    Eric

    I want to buy MBA i5, I would like to free disk space of MBA 13" i5, Could anyone tell it to me? Thanks
    As you're buing a new MacBook Air, it will come pre-installed with Lion.  The actual installation will be somewhat larger than a "clean" Lion install as it will come with iLife preinstalled.  Obviously, with an Air's limited storage space, you want to be sure that you have enough room for any applications and data that you'll want to keep on the SSD as well.  It is fairly easy to upgrade the SSD on an Air:
    http://eshop.macsales.com/shop/SSD/OWC/Aura_Pro_Express
    The amount of RAM you have installed is probably more important.  Fortunately, the newest 13" MacBook Airs all come with 4GB standard now.

  • Ikeep getting a message that my start up disc is full and i don't know how to free up space..  also when i o to download some files i am told there is no space left to download     i bought this macbook pro used an receiver no discs..  what can i do??   t

    ikeep getting a message that my start up disc is full and i don't know how to free up space..  also when i o to download some files i am told there is no space left to download     i bought this macbook pro used an receiver no discs..  what can i do??  

    You need to purchase an external drive and start moving some files to it or you can try trashing some files that you no longer need.
    Download OmniDiskSweeper and see where your larger files are... you can move them to an external drive or trash them: it's up to you.
    I would also begin, since it's obviously don't have backups, a backup scheme or two. See Most commonly used backup methods.
    Good luck,
    Clinton

  • Does this also serve as an external hard-drive so I can free up space on my macs by transferring songs/pictures?

    Does this also serve as an external hard-drive so I can free up space on my macs by transferring songs/pictures?

    https://discussions.apple.com/message/15470135#15470135

  • How to free up space on Mac Pro "other" Storage Category

    Shows 25.73GB free out of 150.18GB -- with 98GB in unknown "other" category. How do I locate those files and access them to try to clear up more space?
    Mac Pro 13, 10.9.5 IOS, 2.26 GHz Intel Core 2 Duo, Memor 8GB 1067 MHz DDR3, 8GB memory installed.

    If you are running Yosemite then this is a bug. If you need to know this information then select the Desktop icon for your drive. Press COMMAND-I to open the Get Info window. The information is displayed in the top  panel as: Capacity, Available, and Used.
    Freeing Up Space on The Hard Drive
      1. See Lion/Mountain Lion/Mavericks' Storage Display.
      2. You can remove data from your Home folder except for the /Home/Library/ folder.
      3. Visit The XLab FAQs and read the FAQ on freeing up space on your hard drive.
      4. Also see Freeing space on your Mac OS X startup disk.
      5. See Where did my Disk Space go?.
      6. See The Storage Display.
    You must Empty the Trash in order to recover the space they occupied on the hard drive.
    You should consider replacing the drive with a larger one. Check out OWC for drives, tutorials, and toolkits.
    Try using OmniDiskSweeper 1.8 or GrandPerspective to search your drive for large files and where they are located.

  • How to free up space on internal hard drive

    How do I free up space on my internal hard disc?
    I have only about 40 gig of information on my macbook however it says I don't have space while I'm working on photoshop. I have deleted a lot of files on my mac that are already saved in my external hard disc but when I check my memory it says I have  only 1.3gig space available out of a 120gig memory. This data is distributed between audio, apps, movies, pictures and other. I don't understand what 'other' is and it says I have about 76gig worth of data in the other part. Please I would need help on how to delete files from this 'other'. Cheers!

    All Mac operating systems use any free space on your hard drive as virtual memory, and this virtual memory plays a part in how well your computer performs. Because of this, the more data you have on your hard drive, the less virtual memory becomes available. Therefore, in order to help increase your Mac boot time, and keep your computer running smoothly, periodically cleaning your hard drive is necessary. To clean it up you want to get rid of any old or unnecessary files. You can do this manually by removing unused applications, emptying your trash etc.,

  • HOW TO GET MORE SPACE ON MY MAC

    Anybody have an idea how to free space of my mac.i bought new external hard drive and move most of my folder with music films and document in it.after moving i deleted them from my laptop then emtpy the trash,but after doing this,i still dont get free space.after deleting more than 20gb folder,i still dont have the space free of my laptop.anyhow out there for HELP.

    {quote:title=Thomas A Reed wrote:}
    Take a look at this page for just a few examples:
    Unfortunately, as is pointed out there, there doesn't seem to be a comprehensive list of applications that Monolingual breaks. I had also heard that MS Office cannot be updated after running Monolingual on it, and that is verified by the [Monolingual FAQ|http://monolingual.sourceforge.net/faq.php].
    Actually, I'm talking about the main localizations for X.
    Applications/Application.app/Contents/Resources/English.lproj
    So, if you speak English, you would safely trash all the “.lproj” files within your apps except for the “English.lproj” one (if you are semi-intelligent) and your app would be unharmed.
    I hadn't heard of or run into the Office 2008 problem as the system I'm running never had language localizations installed. But if the problem is updating you can remove the checksum verification from the updater or reinstall Office to apply the update and that should take care of that. But I see your point and should post fuller instructions when it comes to that app.
    {quote:title=Thomas A Reed wrote:}
    I think that recommending a program like Monolingual to the average user is akin to handing a loaded firearm to a child.
    You do????
    -mj

  • How much free disk space after setup

    I am just about to purchase a macbook and I am trying to find out how much disk space I can expect to have free.
    I was thinking of getting the 80gb model but I also have a 40gb ipod which is two thirds full.
    How much free space can I expect or should I go for the 120gb HD model?

    To give you an indication, my System and Library folders add up to around 12GB and my Applications folder is around 10GB.
    While these aren't small they are rather typical as it includes the standard Mac OS X installation, full iLife 06, Adobe CS2, Microsoft Office v.X, Macromedia Studio MX plus a few other things. So you can realistically count on anything from 20 to 30GB for the OS and software. Yes you can obviously get less than that by optimising your installations. From there it's just how much data you have and what sort of data you use.
    For most average users 60GB is plenty. If you do anything with video, have a large music library (mine is 10GB) and play games then obviously these will afftect your drive choice.
    If price is not an issue then go for a 120GB drive, Apple or 3rd party. For cost effectiveness the best choice is an Apple upgrade to 80GB.

  • Apple TV (1st gen): how to free up space?

    how do i delete some of the content to free up space for new content?, Apple TV (1st gen) : how do i delete some of the content to free up space for new content?

    If you want more space or take certain things off then just manualy select what you want on it. I just check the shows I want on it the when I want them off I uncheck them and then resync he ATv to get them off etc.. Easy as pie....pi !
    As for the purchased items not going away, scroll down to make sure that playlist is not checked on the computer under movies or shows etc...

  • I've just upgraded to Lion and finder no longer shows how much free disk space I have left

    Hi I've just upgraded to Lion and when im now in finder i can no longer see how much free or used hard disk space i have. anyone know how to turn this back on?

    Hi Alan,
    I think you are looking for this:
    From the Finder, select View > Show Status Bar and like magic, your info is revealed like how it was with snow leopard at the bottom of the finder window.
    If you have the finder window at the bottom of your screen then it might be below the screen, just move the window up. That happened for me when I revealed it.
    Hope this helps.
    /svenskdod

Maybe you are looking for

  • WEBI Report Scheduling based on event.

    Hello All, We have a requirement to schedule a webi report based on event generated by ETL loads. Scheduling works fine based on events.My requirement is If event is not generated we want to schedule the report at specific time.Lets assume event will

  • Muvo V100 Won't Connect - How do I install the driver alone? Where on the disk is

    First of all, I've read through the FAQ, etc., the Creative Knowledge Base, searched the forum, and read the manual, etc. and I cannot find an answer. In short, all I want to do now is try installing the Muvo V00 driver alone to see if that fixes my

  • File Upload JSP Portlet

    Hi, I want to upload files in a JSP portlet. I have java servlet and I can upload files successfully out of portal. How can I use these servlet in a JSP portlet to upload file? Thanks Ali Erkan

  • Reports 6i Server - Other Databases

    Hi Can Reports 6i server be connected to any database other than Oracle. I heard Oracle 9iAS supports all types of databases but is there any limitation with server6i in this regard. Rgds Ravi

  • VERY Disappointing

    I was just on the phone to Adobe "Customer Services" to complain that the CS5 Design Premium package I just purchased does not include the latest version of Acrobat and he hung up on me!