Help in recaliming space

I have deteletd the tablespace from oracle enterprise manager. But the free space of the d drive is still the same. Its not released.
Do i have to delete the .dbf files maually from the folder oradata? should they have not been deleted when i deleted it from OEM?
Thanks for the help

855457 wrote:
yes there are tud_data01.dbf, tud_data02.dbf related to the tablespace tud_data.
select tablespace_name
from dba_tablespaces
where tablespace_name = 'TUD_DATA';
select file_name,
         tablespace_name
from dba_data_files
where tablespace_name = 'TUD_DATA';
select owner,
         segment_name
from dba_segments
where tablespace_name = 'TUD_DATA';

Similar Messages

  • Help with disk space!

    i need some serious help with disk space... so im on itunes today and it says i am running out of disk space and need to delete some files... i deleted every song in my itunes library and it stills gives me this message. i cannot download anything... i dont know what to do to clear up a large amount of disk space... please help. thanks!

    Just some obvious questions first ...did you delete the song from itunes or from a playlist? Did you empty the trash yet ..as deleted files will go to your trash but still take up space until their actually deleted from here.
    Doing a simple 'Get Info' (control + click) on certain files and folders will let you know how much space they are using. This app. also works nice in letting you know where all your space is being used...
    http://grandperspectiv.sourceforge.net/

  • HELP: missing HDD Space on my Mac Mini... where'd they go?

    I have a mac mini 1.42ghz, 512 RAM and 80GB HDD (so that's 74.5GB of useful space). recent;y, my mac's been saying that it has only 1.72gig left of free space BUT when i got the info on all the main folders, here's what i got:
    applications: 5.99GB
    Library: 5.57GB
    System: 1.49GB
    USers: 42.93
    totalling that, it's only 55.98 GB, plus my 1.72GB of free space, 57.7... my question is, where did my 16 or so GBs of space get to and why is it unaccounted for?!?! how did this happen? i also queried my macintosh HD, and true enough, it says 72.69 used, 1.72 free space on disc, but that doesn't equal all of its parts...
    i've emptied my recycle bin, run OnyX already, and still the problem remains... any help please? thanks~!

    hi bgreg, i did what you suggested and got omnidisksweeper, and it came up with the same results as i did:
    Macintosh HD - 57.1GB
    it didn't come up with anything more useful, other than telling me that my HD has 57.1GB worth of files. it didn't tell me where the remaining 14+GB went to. i checked my hardware stats as well, and it says capacity: 74.53 (so 74.53 - 57.1 = 14GB, but my finder keeps saying i only have 1.8GB free space)...
    if you have anymore suggestions, i'd be glad to try them; otherwise, i may have to reformat my HDD, which is something i don't want to do as much as possible, since i don't have most of my installer discs with me at present, plus i'd need to go through the whole process of updating everything again.
    i have this paranoid notion that my computer might have developed bad sectors (but 17GB worth, and considering this is still a relatively new comp?) that's why it's not showing up. i hope not though.
    thanks for the help everyone!

  • Help needed: Disk space does not free up even after deleting files.

    Background information for this problem: I have my iPhoto library on an external HD, and was importing files from that same drive into iPhoto, and began receiving messages that I was very low on disk space on my internal HD. From here, it seemed like iPhoto was using my boot drive for some kind of cache. Regardless of the actual reason, I began moving files from my internal HD to fix this problem temporarily (while I was importing).
    At this point, I started fiddling with my files and found that no matter how many files I would delete from my HD, the available space in the finder would not free up. *At this point, I have less than 20GB on my HD, yet it says I have 1.23 GB available out of 108 GB.*
    Here is what I have already tried to fix the problem, to no avail:
    a) Original user was using Filevault. I backed up all the files, created a new user without Filevault, and restored the files.
    b) Booted from CD and used Disk Utility to erase free space.
    c) Verified and fixed permissions
    d) Deleted all app and system caches (via CacheOut X)
    e) Fixed/Repaired all user/system preferences (via Preferential Treatment)
    *Does anyone have any idea what's going on?*
    -

    Thanks for the suggestion.
    I ran WhatSize and here is the result. Oddly, it says there is 40.2 GB used (in the top-left) which conflicts with the information directly below it: "Capacity 108 GB, Used 103GB, Available 4.27 GB". Not so helpful.
    Disk Inventory X solved the problem, however. Much thanks! I wasted most of my weekend troubleshooting this sad issue. Anyway, Disk Inventory X revealed a bug where my external hard drive for photos was still appearing as a mounted volume, even though the HD was no longer connected. Freaky.
    After moving it to the trash and deleting it, I've recovered the space.
    Again, thanks! Contact me if you're curious about the details, as this might help you diagnose similar problems in the future.
    - Mike

  • Need Help with Java Space Invaders Game!

    Hi, im new to these forums so forgive if i dont follow the right way on laying things out. Im trying to create space invaders game but im stuck when im trying to create multiple aliens/ invaders. I have a class called Aliens (which is the invaders), and i can create an instance of an Alien. But when I try to create multiple instances they are not showing up on screen. I am not getting any error message though (which im hoping is a good sign, lol).
    GamePanel is where all the action is and Alien is the alien (invaders) class.
    Here is the code:
    import java.awt.; import javax.swing.; import java.awt.Image; import java.awt.event.KeyListener; import java.awt.event.KeyEvent;
    public class GamePanel extends JComponent implements KeyListener { SpaceInvaders game; static Player player1; Aliens alien1; static public Image spaceship2R; static public Image spaceship2L;
    public GamePanel(SpaceInvaders game)
         this.game = game;
         player1 = new Player(this);
         player1.start();
                   ///// trying to create multiple instances of aliens here
         for(int i=0; i<4; i++)
              alien1 = new Aliens(this);
              alien1.setX(i*100);
              alien1.start();
        this.setFocusable(true);
        this.addKeyListener(this);
    public void paintComponent(Graphics g)
         Image pic1 = player1.getImage();
         Image pic2 = alien1.getImage();
         super.paintComponent(g);
         g.drawImage(pic1, player1.getX(), player1.getY(), 50, 50,this);
         g.drawImage(pic2, alien1.getX(), alien1.getY(), 50, 50,this);
    }//end class
    import java.awt.Image; import java.awt.*;
    class Aliens extends Thread { //variables GamePanel parent; private boolean isRunning; private int xPos = 0, yPos = 0; Thread thread; static char direction = 'r'; Aliens alien; static public Image alien1; static public Image alien2;
    public Aliens(GamePanel parent)
         this.parent = parent;
         isRunning = true;
    public void run()
         while(isRunning)
              Toolkit kit = Toolkit.getDefaultToolkit();
              alien1 = kit.getImage("alien1.gif");
              alien2 = kit.getImage("alien2.gif");
              try
                      thread.sleep(100);
                 catch(InterruptedException e)
                      System.err.println(e);
                 updateAliens();
                 parent.repaint();
    public static Image getImage()
         Image alienImage = alien1;
        switch(direction){
             case('l'):
                  alienImage = alien1;
                  break;
             case('r'):
                  alienImage = alien1;
                  break;
        return alienImage;     
    public void updateAliens()
         if(direction=='r')
              xPos+=20;
              if(xPos >= SpaceInvaders.WIDTH-50||xPos < 0)
                   yPos+=50;
                   xPos-=20;
                   direction='l';
         else
              xPos-=20;
              if(xPos >= SpaceInvaders.WIDTH-50||xPos < 0)
                   yPos+=50;
                   xPos+=20;
                   direction='r';
    public void setDirection(char c){ direction = c; }
    public void setX(int x){ xPos = x; }
    public void setY(int y){ yPos = y; }
    public int getX(){ return xPos; }
    public int getY(){ return yPos; }
    }//end classEdited by: deathwings on Oct 19, 2009 9:47 AM
    Edited by: deathwings on Oct 19, 2009 9:53 AM

    Maybe the array I have created is not being used in the paint method, or Im working with 2 different objects as you put it? Sorry, Im just learning and I appreciate your time and help. Here is my GamePanel Class and my Aliens class:
    import java.awt.*;
    import javax.swing.*;
    import java.awt.Image;
    import java.awt.event.KeyListener;
    import java.awt.event.KeyEvent;
    import java.awt.image.BufferStrategy;
    public class GamePanel extends JComponent implements KeyListener
         SpaceInvaders game;
         static Player player1;
         static Bullets bullet;
         //static public Image spaceship2R;
         //static public Image spaceship2L;
         private BufferStrategy strategy;
         static int alienNum =0;
         static Aliens[] aliens;
         public GamePanel(SpaceInvaders game)
              this.game = game;
              player1 = new Player(this);
              player1.start();
              Aliens[] aliens = new Aliens[10];
              for(int i=0; i<4; i++)
                   aliens[i] = new Aliens(this);
                   aliens.setX(i*100);
                   aliens[i].start();
                   alienNum++;
              initialiseGame();
              this.setFocusable(true);
    this.addKeyListener(this);
         public void paintComponent(Graphics g)
              Image pic1 = player1.getImage();
              Image pic2 = aliens[0].getImage();
              Image bulletPic = bullet.getImage();
              super.paintComponent(g);
              g.drawImage(pic1, player1.getX(), player1.getY(), 50, 50,this);
              for ( int i = 0; i < alienNum; i++ )
                   g.drawImage(pic1, aliens[0].getX(), aliens[0].getY(), 50, 50,this);
              //if (bullet.fired==true){
              //     g.drawImage(bulletPic, bullet.getX(), bullet.getY(), 20, 20,this);
         public void keyPressed(KeyEvent k)
              switch (k.getKeyCode()) {
              case (KeyEvent.VK_KP_DOWN):
              case (KeyEvent.VK_DOWN):
                   player1.setDirection('d');
                   break;
              case (KeyEvent.VK_KP_UP):
              case (KeyEvent.VK_UP):
                   player1.setDirection('u');
              break;
              case (KeyEvent.VK_KP_RIGHT):
              case (KeyEvent.VK_RIGHT):
                   player1.setDirection('r');
              break;
              case (KeyEvent.VK_KP_LEFT):
              case (KeyEvent.VK_LEFT):
                   player1.setDirection('l');
              break;
              case (KeyEvent.VK_SPACE):
                   fireBullet();
              break;
         public void keyTyped(KeyEvent k) {}//empty
         public void keyReleased(KeyEvent k)
              player1.setDirection('n');
         public void initialiseGame()
         public static void checkCollision()
              Rectangle playerRec = new Rectangle(player1.getBoundingBox());
              for(int i=0; i<alienNum; i++)
                   //if(playerRec.intersects(aliens[i].getBoundingBox()))
                        //collisionDetected();
         public static void collisionDetected()
              System.out.println("COLLISION");
         public void fireBullet()
              Bullets bullet = new Bullets(player1.getX(),player1.getY());
              bullet.fired=true;
    }//end GamePanelimport java.awt.Image;
    import java.awt.*;
    class Aliens extends Thread
         //variables
         GamePanel parent;
         private boolean isRunning;
         private int xPos = 0, yPos = 0;
         Thread thread;
         static char direction = 'r';
         Aliens alien;
         static public Image alien1;
         static public Image alien2;
         public Aliens(GamePanel parent)
              this.parent = parent;
              isRunning = true;
         public void run()
              while(isRunning)
                   Toolkit kit = Toolkit.getDefaultToolkit();
                   alien1 = kit.getImage("alien1.gif");
                   //alien2 = kit.getImage("alien2.gif");
                   try
              thread.sleep(100);
         catch(InterruptedException e)
              System.err.println(e);
              updateAliens();
              parent.repaint();
         public static Image getImage()
              Image alienImage = alien1;
         switch(direction){
              case('l'):
                   alienImage = alien1;
                   break;
              case('r'):
                   alienImage = alien1;
                   break;
         return alienImage;     
         public void updateAliens()
              if(direction=='r')
                   xPos+=20;
                   if(xPos >= SpaceInvaders.WIDTH-50||xPos < 0)
                        yPos+=50;
                        xPos-=20;
                        direction='l';
              else
                   xPos-=20;
                   if(xPos >= SpaceInvaders.WIDTH-50||xPos < 0)
                        yPos+=50;
                        xPos+=20;
                        direction='r';
         public Rectangle getBoundingBox()
              return new Rectangle((int)xPos, (int)yPos, 50, 50);
         public void setDirection(char c){ direction = c; }
         public void setX(int x){ xPos = x; }
         public void setY(int y){ yPos = y; }
         public int getX(){ return xPos; }
         public int getY(){ return yPos; }
    }//end class                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Help deleting free space

    alright so i accidentally erased my hard drive by using boot camp because i partitioned it but didnt see it on the windows thing so i just went with it. after restoring my computer (thank god for time machine!) i still have 32 gb of free space that i cant erase and i cant merge the two partitions together because free space doesnt show up as one. i need help!

    come on i really need help

  • 2 GB Ipod Nano HELP with OTHER SPACE

    I have 694 mb of audio/song space used on my ipod. The "other" space takes up over 680mb of this space. I only have 185 songs on my ipod of the possible 500 yet there is not enough free space to put that many songs on it. Could somebody please tell me what the Other Space is and how to get rid of it? It cant be just the settings...
    Help pleaseeeeeeeeeeeeeeee

    Try Restoring the iPod.
    Check these out:
    5Rs
    5Rs Tutorials
    Restoring iPod to Factory Settings
    I hope this helps!

  • Can you help me delete space from the Category Other its taking up way to much space and i dont even know what it is or whats in it

    In my ipod the Category Other is taking up way too much space and i dont know what it is or whats in it! please help!

    See this post on Others by tt2. which gives a good explanation on OTHERS segment
    To delete and recover your space, Restore  the iPod to Factory settings, hopefully your iPod Hardisk is still in good Condition to be restored.

  • HELP: No enough space to install app error

    Hi,
    am facing this problem from two days. when am trying to install app from amazon or BB app world, my phone is showing "No enough space to install app, please delete some apps"  error. i have almost 8 GB free space left in my mobile. Please help.
    Solved!
    Go to Solution.

    On your Classic, do a reboot or restart and try the install again:
    Restart: With the BlackBerry device POWERED ON, press and hold the upper edge power button about 20-30 seconds, ignore the 3-2-1 timer and hold until the screen goes black and you see the red LED.
    or
    Reboot: With the BlackBerry device POWERED ON, using the side edge volume keys, press and hold down both of the Up and Down volume keys for about 20 seconds, ignoring the initial screenshot message... the screen will go black and reboot.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Need help freeing up space

    I recently purchased time capsule as I need to free up space on my disc. I connected it as the instructions says. I have backed my information up but just recently I tried using Photoshop and a message came up saying I didnt have enough disc space. I thought that time capsule would help with this problem. Have I set up my time capsule wrong? Is there a way I can put everything from my existing internal hard drive onto my time capsule so I can have more space?

    mhle wrote:
    Is there a way I can put everything from my existing internal hard drive onto my time capsule so I can have more space?
    If you mean you want to remove things from your internal HD, and depend on Time Machine keeping copies of it all on your Time Capsule, don't! Time Machine will delete it's copies of anything that's no longer on your system, sooner or later. See #20 in the Frequently Asked Questions *User Tip,* also at the top of the +Time Machine+ forum.
    Time Machine is a backup app, not an archiving app. They may sound similar, but they are very different.
    You can, however, copy/move things from your internal HD to your Time Capsule, but not via Time Machine. That will, however, give you two problems:
    Wireless access is much, much slower, so anything using the data on the TC will be considerably slower.
    Your data is still not backed-up. When your internal or Time Capsule HD fails (and they all do, sooner or later), you risk losing everything.
    Your best bet is probably getting a larger internal HD, with room for everything.
    Second best is an external HD you can connect directly to your Mac for some things that won't fit inside. FireWire 800 is fastest, FireWire 400 next, and USB is slowest.
    Then let Time Machine back up everything to your Time Capsule.

  • Program Help, working with spaces and only letters

    I'm writing a program that takes an input string and gets the length and/or gets the number of vowels and consonants in the string. I've gotten it working except for consideration of spaces (which are allowed) and error checking for input other than letters. Here is what I've got so far. ANY suggestions would be greatly appreciated. Thank You
    import java.io.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class LetterStringManip extends JFrame
    {//declaring variables
         private JLabel stringOfLettersL, lengthL, lengthRL, vowelsL, vowelsRL, consonantsL, consonantsRL;
           private JTextField stringOfLettersTF;
           private JButton lengthB,vowelB, quitB;
           private LengthButtonHandler lbHandler;
           private VowelButtonHandler vbHandler;
           private QuitButtonHandler qbHandler;
           private static final int WIDTH = 750;
           private static final int HEIGHT = 150;
           public LetterStringManip()
           {// setting up GUI window with buttons
               stringOfLettersL = new JLabel("Enter a String of Letters", SwingConstants.CENTER);
                   lengthL = new JLabel("Length of String: ", SwingConstants.CENTER);
                   lengthRL = new JLabel("", SwingConstants.LEFT);
                   vowelsL = new JLabel("Number of Vowels: ", SwingConstants.CENTER);
                   vowelsRL = new JLabel("", SwingConstants.LEFT);
                   consonantsL = new JLabel("Number of Consonats: ", SwingConstants.CENTER);
                   consonantsRL = new JLabel("", SwingConstants.LEFT);
                   stringOfLettersTF = new JTextField(15);
                   lengthB = new JButton("Length");
                   lbHandler = new LengthButtonHandler();
                   lengthB.addActionListener(lbHandler);
                   vowelB = new JButton("Vowels");
                   vbHandler = new VowelButtonHandler();
                   vowelB.addActionListener(vbHandler);
                   quitB = new JButton("Quit");
                   qbHandler = new QuitButtonHandler();
                   quitB.addActionListener(qbHandler);
                   setTitle("String Of Letters");//Window title
                   Container pane = getContentPane();
                   pane.setLayout(new GridLayout(3,4)); //Window layout
                   pane.add(stringOfLettersL);
                   pane.add(stringOfLettersTF);
                   pane.add(lengthL);
                   pane.add(lengthRL);
                   pane.add(vowelsL);
                   pane.add(vowelsRL);
                   pane.add(consonantsL);
                   pane.add(consonantsRL);
                   pane.add(lengthB);
                   pane.add(vowelB);
                   pane.add(quitB);
                   setSize(WIDTH, HEIGHT);
                   setVisible(true);
                   setDefaultCloseOperation(EXIT_ON_CLOSE);
           }//closes public LetterStringManip()
           private class LengthButtonHandler implements ActionListener
               public void actionPerformed(ActionEvent e)//Length Button is clicked, getLength() method is performed
                      getLength();
                   }//closes public void actionPerformed(ActionEvent e)
           }//closes private class LengthButtonHandler implements ActionListener
           private class VowelButtonHandler implements ActionListener
               public void actionPerformed(ActionEvent e)//Vowels Button is clicked, getVowels() method is performed
                      getVowels();
                   }//closes public void actionPerformed(ActionEvent e)
           }//closes private class VowelButtonHandler implements ActionListener
           private class QuitButtonHandler implements ActionListener//Quit Buttton is pressed
               public void actionPerformed(ActionEvent e)
                       System.exit(0);
                   }//closes public void actionPerformed(ActionEvent e)
           }//closes private class QuitButtonHandler implements ActionListener
                     public void getLength()//gets the length of the string
                       String letString = (stringOfLettersTF.getText());
                       String lengthString;
                 int length;
                         length = letString.length();
                         lengthString = Integer.toString(length);
                         lengthRL.setText(lengthString);
                    }//closes public void getLength()
                     public void getVowels()//gets the number of vowels in the string
                 String letString = (stringOfLettersTF.getText());
                       String vowString;
                         String conString;
                 int countVow = 0;
                         int countCon = 0;
                         int i;
                         int length = letString.length();
                         char[] letter = new char[length];
                 for (i = 0; i < letString.length(); i++)
                     letter[i] = letString.charAt(i);
                     if (letter=='a' || letter[i]=='e' || letter[i]=='i' || letter[i]=='o' || letter[i]=='u')
    countVow++;
                        }//closes for
                        countCon = letString.length() - countVow;
    vowString = Integer.toString(countVow);
                        conString = Integer.toString(countCon);
                        vowelsRL.setText(vowString);
                        consonantsRL.setText(conString);
                   }//closes public void getVowels()
         public static void main(String[] args)
         LetterStringManip stringObject = new LetterStringManip();
         }// closes public static void main(String[] args)
    }//closes public class LetterStringManip extends JFrame

    OK, per the instructions above: I will re-post my code that I have now. I have dealt with the space not being counted now, I only need to figure out how to validate my input so that only letters are allowed. If anyone has any suggestions, or can help me out in any way, it'd be great. The suggestions with creating word and sentence objects is still a little beyond what we have gone over thus far in my Java course, I feel like I can almost grasp it to code it, but end up getting really confused. anyways, hear is my 'crude' code so far:
                     public void getLength()
                       String letString = (stringOfLettersTF.getText());
                       String lengthString;
                          int finalLength;
                          int countSpace = 0;
                                int length = letString.length();
                       char[] letter = new char[length];
                        int i;
                                 for (i = 0; i < letString.length(); i++)
                                    letter[i] = letString.charAt(i);
                                    if (letter==' ')
    countSpace++;
              finalLength = length - countSpace;
                   lengthString = Integer.toString(finalLength);
                   lengthRL.setText(lengthString);
                   public void getVowels()
    String letString = (stringOfLettersTF.getText());
                   String vowString;
                   String conString;
    int countVow = 0;
                   int countCon = 0;
                   int countSpace = 0;
                   int i;
                   int length = letString.length();
                   char[] letter = new char[length];
    for (i = 0; i < letString.length(); i++)
    letter[i] = letString.charAt(i);
    if (letter[i]=='a' || letter[i]=='e' || letter[i]=='i' || letter[i]=='o' || letter[i]=='u')
    countVow++;
                   if (letter[i]==' ')
    countSpace++;
                   countCon = (letString.length() - countVow) - countSpace;
    vowString = Integer.toString(countVow);
                   conString = Integer.toString(countCon);
                   vowelsRL.setText(vowString);
                   consonantsRL.setText(conString);

  • Need Help With Disk Space Issue

    I am trying to free up some disk space on my MacBook Pro. Here is what I have in terms of usage of personal files:
    Music: 24.7 gb
    Pictures: 9.92 gb
    Documents: .379 gb
    Applications: 9.25 gb
    This totals 44.249 gb
    My capacity is listed as 111.47 gb. The problem is that I am showing only 11.96 gb available. I don't understand why there is so much gab between what is listed above and the capacity. I realize the System files, Application Support, etc. use a fair amount, but it still seems like I should have more space. I have run Onyx to clear caches, optimize, etc., and that has helped, but only marginally. Are there large files somewhere I am not aware of? I have an iDisk, but I have iDisk Synching off, so there should not be a copy of it on my computer, unless tere is an old oe lurking somewhere. Thanks a lot for any suggestions.

    I'll give a very plain answer :P
    My Movies folder has a 10 gb size, my Library folder has 5.83 gb, my root Library has 10.89 gb, my System folder has 4.2 gb. I believe there is much more than the basic folders that eats your HDD away.
    I don't know if my folders size are normal, but I do know that adding only your basic folders won't give you the real amount of disk used. In my case I have 20.92 gb of space. I would also look the size of the Downloads folder and the Mail folder (in your home/Library/Mail I have 3.5 GB in one account only!)
    Hope this helps!
    One last thing, not so long ago I saw a post about someone who found a file that was huge, the file was because he let the computer working overnight testing if it ran correctly by letting chess computer vs computer play all night. The game created an enormous file (I believe it was the nbook.db file in username/Library/Application Support/Chess/)
    OR... use what Matt Clifton recommends jajaja... seems like a better idea :P
    Message was edited by: Ehych

  • Can anyone help with clearing space on my Mac Mini, it says the hard drive is full and runs slowly.

    Please help, we got the Mac Mini from a family member so it may have his stuff on it but no longer required, we have only put a smal amount of data on it so don't believe we have over filled it. I backed up to a hard drive all photos etc as I thought it may be them filling it, now I cannot even scan a document to it. Is there any way to Defrag it as you can normally do to a windows system as well as either declutter it or restore the whole thing.
    Best Regards
    Smithy

    The first thing to do with a second-hand computer is to erase the internal drive and install a clean copy of OS X. You — not the previous owner — must do that. How you do it depends on the model, and on whether you already own another Mac. If you're not sure of the model, enter the serial number on this page. Then find the model on this page to see what OS version was originally installed.
    1. You don't own another Mac.
    If the machine shipped with OS X 10.4 or 10.5, you need a boxed and shrink-wrapped retail Snow Leopard (OS X 10.6) installation disc from the Apple Store or a reputable reseller — not from eBay or anything of the kind. If the machine has less than 1 GB of memory, you'll need to add more in order to install 10.6. Preferably, install as much memory as it can take, according to the technical specifications.
    If the machine shipped with OS X 10.6, you need the installation media that came with it: gray installation discs, or a USB flash drive for some MacBook Air models. For early MBA models, you may need a USB optical drive or Remote Disc. You should have received the media from the previous owner, but if you didn't, order replacements from Apple. A retail disc, or the gray discs from another model, will not work.
    To boot from an optical disc or a flash drive, insert it, then reboot and hold down the C key at the startup chime. Release the key when you see the gray Apple logo on the screen.
    If the machine shipped with OS X 10.7 or later, you don't need media. It should boot into Internet Recovery mode when you hold down the key combination option-command-R at the startup chime. Release the keys when you see a spinning globe.
    2. You do own another Mac.
    If you already own another Mac that was upgraded in the App Store to the version of OS X that you want to install, and if the new Mac is compatible with it, then you can install it. Use Recovery Disk Assistant to create a bootable USB device and boot the new Mac from it by holding down the C key at the startup chime. Alternatively, if you have a Time Machine backup of OS X 10.7.3 or later on an external hard drive (not a Time Capsule or other network device), you can boot from that by holding down the option key and selecting it from the row of icons that appears. Note that if your other Mac was never upgraded in the App Store, you can't use this method.
    Once booted in Recovery, launch Disk Utility and select the icon of the internal drive — not any of the volume icons nested beneath it. In the Partition tab, select the default options: a GUID partition table with one data volume in Mac OS Extended (Journaled) format. This operation will permanently remove all existing data on the drive.
    After partitioning, quit Disk Utility and run the OS X Installer. You will need the Apple ID and password that you used to upgrade. When the installation is done, the system will automatically reboot into the Setup Assistant, which will prompt you to transfer the data from another Mac, its backups, or from a Windows computer. If you have any data to transfer, this is usually the best time to do it.
    Then run Software Update and install all available system updates from Apple. To upgrade to a major version of OS X newer than 10.6, get it from the Mac App Store. Note that you can't keep an upgraded version that was installed by the previous owner. He or she can't legally transfer it to you, and without the Apple ID you won't be able to update it in Software Update or reinstall, if that becomes necessary. The same goes for any App Store products that the previous owner installed — you have to repurchase them.
    If the previous owner "accepted" the bundled iLife applications (iPhoto, iMovie, and Garage Band) in the App Store so that he or she could update them, then they're linked to that Apple ID and you won't be able to download them without buying them. Reportedly, Mac App Store Customer Service has sometimes issued redemption codes for these apps to second owners who asked.
    If the previous owner didn't deauthorize the computer in the iTunes Store under his Apple ID, you wont be able to  authorize it immediately under your ID. In that case, you'll either have to wait up to 90 days or contact iTunes Support.

  • Newbie Needs Helps With Storage Space

    I just recently recieved an ipod for Christmas. My biggest problem is I have an old computer without a lot of space. How do I upload my CD collection without completely maxing out what left of my hard drive?? I don't have any nifty USB portable hard drives or anything. I guess the same question goes for all my downloaded music..
    How can I just keep music on the ipod and not on my computer??

    You need to manually manage your songs.
    Here's how:
    http://docs.info.apple.com/article.html?artnum=61148
    VERY IMPORTANT:: Make sure your music is backed up to some other external media. CD, DVD, external HD, something! Especially your purchased music, if any.
    Having your music only on your iPod is VERY RISKY. There may come a time when your iPod has trouble and will need to be restored. It may also get lost, stolen, dropped, etc. If you only have your music on your iPod and something happens to it... your music is gone.

  • Please help: Extra Line Space after bolded word

    I am in the process of editing a book manuscript in MS Word 2010, and there is an annoying problem that I cannot solve. I have tampered with all the line spacing options, but I'm at a loss.
    When I bold a word, it introduces an extra little line space before the proceeding line. When I unbold the word, the space goes away. Has anyone encountered a similar issue? And is there an easy fix?
    Thanks very much,
    Jon

    Are you saying that the line spacing changes when you apply bold formatting? Try a different font. Or you could specify a fixed value for line spacing (choose the "Exactly" option in the Paragraph dialog box).
    Stefan Blom, Microsoft Word MVP

Maybe you are looking for

  • About AT SELECTION SCREEN

    Hi guys, I need help about AT SELECTION SCREEN ON VALUE REQUEST FOR a. Actually, I need this to be ON VALUE REQUEST FOR a and b, because I need to update both parameter with this single search help. Can anybody show me how to do this? Thanks before.

  • How to make changes to stdandard web Dynpro applications used in ESS

    Hi all       I have uploaded the standard ESS Business Package, now the requirement is to change some features in the web dynpro application in it.How do I go about it? Regards Mansoor

  • MPC 1000 - Alesis FW Multimix 8 - Logic Pro 8

    I am trying to sync my mpc 1000 into logic pro 8 using an Alesis FW 8. Do I need any additional connections to make this a successful connection?

  • Troubles with digital download from Warner Bros.

    I purchased the Inception Combo Pack (DVD+Bluray+Digital Copy) and neglected to download the digital copy in time. Then, Warner Bros. extended the time of all their digital downloads (still cannot believe that!) and so I attempted to do the download

  • No Audio, No Sequence Presets!!!

    I recently updated to CS6 Master Collection.I have two major problems, 1: No audio when i import clip to the timeline.(importing with full folder structure) 2: There is no Presets on the premiere seq menue..... iam using MASTER COLLECTION CS6 I also