Deleting sparsebundle (a little help please)

i am trying to figure out which of the Great Pondini articles applies to my situation and i seem to be a little low blood sugar or something.
i have a Time Capsule that i am currently using to backup my MacBookPro LAPTOP using Wifi. this TC is connnected via ethernet to my Mac Pro.
when i get into the Data folder on this device i see:
My's Mac Pro.sparsebundle and
My's MacBook Pro's.sparsebundle
can anyone tell me the best way to delete the MAC PRO sparsebundle? should i simply open this by doing a show contents from Finder on my MAC PRO and delete the files in there 100 or 200 at a time?
TIA

When you select erase in the airport utility there are several options.
Never do anything but quick erase or a single pass zero out.. the former takes about 1min on any size hard disk.. the single pass zero out took 4-5hours on a 1TB disk I just did .. because I wanted to test and make sure the disk was really ok. The 35-pass options would take months.. I understand if you use a TC to store nuclear launch codes that you might need to zero the drive 20-50 times.. but putting an ax through the drive would work better.
i see there is a red circular "1" next to the TC in Airport Utility and i guess i can find this error message somewhere if i click in the right spot.
but as importantly, do i just click on the TC (all the buttons are green) then click on Edit when the dialog comes up - then click on DISKS and then click on the ERASE button?
Yes, wave the mouse pointer over the dot and the errors should list.
Yes, open the edit and go to the disk page.. then erase button.
Bob has done the screen shots in one of his posts for v6 utility.
To his usual excellent standard.
https://discussions.apple.com/thread/4865906?tstart=0

Similar Messages

  • Little help please with forwarding traffic to proxy server!

    hi all, little help please with this error message
    i got this when i ran my code and requested only the home page of the google at my client side !!
    GET / HTTP/1.1
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-shockwave-flash, */*
    Accept-Language: en-us
    UA-CPU: x86
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727)
    Host: www.google.com
    Connection: Keep-Alive
    Cookie: PREF=ID=a21457942a93fc67:TB=2:TM=1212883502:LM=1213187620:GM=1:S=H1BYeDQt9622ONKF
    HTTP/1.0 200 OK
    Cache-Control: private, max-age=0
    Date: Fri, 20 Jun 2008 22:43:15 GMT
    Expires: -1
    Content-Type: text/html; charset=UTF-8
    Content-Encoding: gzip
    Server: gws
    Content-Length: 2649
    X-Cache: MISS from linux-e6p8
    X-Cache-Lookup: MISS from linux-e6p8:3128
    Via: 1.0
    Connection: keep-alive
    GET /8SE/11?MI=32d919696b43409cb90ec369fe7aab75&LV=3.1.0.146&AG=T14050&IS=0000&TE=1&TV=tmen-us%7Cts20080620224324%7Crf0%7Csq38%7Cwi133526%7Ceuhttp%3A%2F%2Fwww.google.com%2F HTTP/1.1
    User-Agent: MSN_SL/3.1 Microsoft-Windows/5.1
    Host: g.ceipmsn.com
    HTTP/1.0 403 Forbidden
    Server: squid/2.6.STABLE5
    Date: Sat, 21 Jun 2008 01:46:26 GMT
    Content-Type: text/html
    Content-Length: 1066
    Expires: Sat, 21 Jun 2008 01:46:26 GMT
    X-Squid-Error: ERR_ACCESS_DENIED 0
    X-Cache: MISS from linux-e6p8
    X-Cache-Lookup: NONE from linux-e6p8:3128
    Via: 1.0
    Connection: close
    java.net.SocketException: Broken pipe // this is the error message
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:115)
    at java.io.DataOutputStream.writeBytes(DataOutputStream.java:259)
    at SimpleHttpHandler.run(Test77.java:61)
    at java.lang.Thread.run(Thread.java:595)
    at Test77.main(Test77.java:13)

    please could just tell me what is wrong with my code ! this is the last idea in my G.p and am havin difficulties with that cuz this is the first time dealin with java :( the purpose of my code to forward the http traffic from client to Squid server ( proxy server ) then forward the response from squid server to the clients !
    thanx a lot,
    this is my code :
    import java.io.*;
    import java.net.*;
    public class Test7 {
    public static void main(String[] args) {
    try {
    ServerSocket serverSocket = new ServerSocket(1416);
    while(true){
    System.out.println("Waiting for request");
    Socket socket = serverSocket.accept();
    new Thread(new SimpleHttpHandler(socket)).run();
    socket.close();
    catch (Exception e) {
    e.printStackTrace();
    class SimpleHttpHandler implements Runnable{
    private final static String CLRF = "\r\n";
    private Socket client;
    private DataOutputStream writer;
    private DataOutputStream writer2;
    private BufferedReader reader;
    private BufferedReader reader2;
    public SimpleHttpHandler(Socket client){
    this.client = client;
    public void run(){
    try{
    this.reader = new BufferedReader(
    new InputStreamReader(
    this.client.getInputStream()
    InetAddress ipp=InetAddress.getByName("192.168.6.29"); \\ my squid server
    System.out.println(ipp);
    StringBuffer buffer = new StringBuffer();
    Socket ss=new Socket(ipp,3128);
    this.writer= new DataOutputStream(ss.getOutputStream());
    writer.writeBytes(this.read());
    this.reader2 = new BufferedReader(
    new InputStreamReader(
    ss.getInputStream()
    this.writer2= new DataOutputStream(this.client.getOutputStream());
    writer2.writeBytes(this.read2());
    this.writer2.close();
    this.writer.close();
    this.reader.close();
    this.reader2.close();
    this.client.close();
    catch(Exception e){
    e.printStackTrace();
    private String read() throws IOException{
    String in = "";
    StringBuffer buffer = new StringBuffer();
    while(!(in = this.reader.readLine()).trim().equals("")){
    buffer.append(in + "\n");
    buffer.append(in + "\n");
    System.out.println(buffer.toString());
    return buffer.toString();
    private String read2() throws IOException{
    String in = "";
    StringBuffer buffer = new StringBuffer();
    while(!(in = this.reader2.readLine()).trim().equals("")){
    buffer.append(in + "\n");
    System.out.println(buffer.toString());
    return buffer.toString();
    Edited by: Tareq85 on Jun 20, 2008 5:22 PM

  • Need a little help please    Airport Express

    Need a little help please.
    I am trying to set up a wireless network at my home using Airport Express.
    I have a regular phone line running in to I assume the modem. From there, there is an Ethernet cable running from that box to the back of the PC. My question is, I think, which of those do I unplug and plug into the Airport Express, the one on the back of the PC or the one that is in the back of the modem, or is this totally wrong.
    Any help would be appreciated…
    Thanks
    In advance…
    PS I have the manual but to me it is not very clear…

    Your connection sequence would look like this:
    Internet > Modem > AirPort Express >>>wireless to your computers.
    This means that you would unplug the cable that is now connected at the back of your PC and move that connection to the AirPort Express.
    Open Macintosh HD > Applications > Utilities > AirPort Utility
    Click Continue to follow the guided setup. On the third page, you will choose the option to "Create a wireless network" and continue the setup.

  • Guys, a little help please ???

    Guys, a little help please before i launch my new toys out of my pram   I've got the new apple TV, Ipad2, and IOS5 update. I'm trying to set up mirrorring , however, when i double click the home page and swipe, the only options it gives me are Ipad or Apple TV. The video shows that i should be able to simply click on mirrorring and whazam it appears on my TV... I can't get this option.... I've rebooted them (router, ipad 2 and Apple Tv) numerous times but still can't get it.......Can someone tell me what I'm doing wrong?
    Thanks

    Sounds as though the options you're getting are the standard Airplay output icons.
    Check current AppleTV software version in Settings>General>About
    Latest is 4.4.2 - there's a sticky at the top of the page about updating - if you're on 4.3 or lower just update from Settings.
    Maybe someone can confirm the video you mention is actually the correct way to invoke mirroring - link?
    (Yn anfodus heb iPad2 does dim syniad 'da fi os ydi'r Mirroring yn gweithio fel yn y fideo - oes linc i'r fideo, rhag ofn bod y fideo'n anghywir?)
    AC

  • I have iPhone 4.I uprage it to IOS 5.1.1 and i can't go into it because i have no service.A  little help,please ? :/, I have iPhone 4.I uprage it to IOS 5.1.1 and i can't go into it because i have no service.A  little help,please ? :/

    I have iPhone 4.I uprage it to IOS 5.1.1 and i can't go into it because i have no service.A  little help,please ? :/, I have iPhone 4.I uprage it to IOS 5.1.1 and i can't go into it because i have no service.A  little help,please ? :/

    Your phone is carrier locked to a carrier other than the one you are trying to use.
    It was apparently hacked to unlock it prior to your attempt to update. Updating has re-locked it to the original carrier.
    Contact them and find out what their policy is.

  • Little help please regarding deleting files and folders...

    My wife has a MBP and has accumulated some old items in her documents folder that she'd like to delete. She has a USB mouse but the "right click" doesn't appear to work. She's running 10.4.11 and can't reveal the files in icon mode to facilitate dragging to trash. Certainly there is a sequence of keystroke commands that will allow these files to be effectively trashed, but our "control/delete", or "apple/delete", or "option/delete" doesn't do the trick after highlighting the subject file. Help please! TIA!

    To delete a file or folder, high light it then using the keyboard type Command Delete and that will delete it. If you have multiple files and/or folders the same keyboard commands apply.
    Regards,
    Roger

  • Database don't delete prom the table, help please !!

    there is my code :
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
    Connection con=DriverManager.getConnection(jdbc:odbc:Medic);
    con.setReadOnly(false);
    try{
    Statement st=con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
    int res=st.executeUpdate("DELETE FROM PATIENT WHERE PATIEN_ID="+id+";");
    System.out.println(String.valueOf(res)+" rows deleted");
    st.close();
    }catch(Exception exc){
    System.out.print(exc+"\n");
    the code execute with no error or exception , the message that i recieve is "1 rows deleted" and i want delete just one row, it's ok until the moment but whene i read the table i see that the row is not deleted.
    I use dBase database, help please !!!
    Thanks

    Don't trust the return value.
    Because you got no exception it means that the SQL executed. SQL can execute without deleting anything however if the where clause does not match.
    As posted your code is not valid java so anything else is meaningless.

  • HT1918 a little help please...

    Hello!I have a question!I upgraded my iTunes today and now I have Itunes 5.1.1.Before that I just had to give a password and nothing else in order to download an app from iTunes.Now I am a little complicated.I'm trying to create a new account and I don't have a credit card.But there is no ''none'' option!I only download free apps and I'm not interested in buying anything.I tried to change the country option and the ''none'' option appeared!But now I don't know what this '' to redeem a code or gift certificate'' is.And I don't know what to do in order to continue...Could you please help me?

    Again sad, no replies -

  • Switching from external Email server to Exchange, Understanding Dis-Joint, and a little help please

    I'm pretty new at installing exchange myself and have never done Exchange 2013
    While going through the install help online I came across disjointed domains. I think I'm over thinking this but here is what I have and what I want to do. Any other tips would be great as well. 
    Customer currently has a domain, internal dns and email through GoDaddy. Lets call it smallschool.com 
    Internally they have a new Active Directory (2012) and the domain is in.smallschool.com. There is no external DNS except GoDaddy. I plan to use that (if that's ok). 
    I have built a Hyper-V for Exchange 2013 and have installed pre-requisites. 
    My Current Question are...
    Do I need to set up dis-joint dns suffix and modify the msds-allowdnssuffix attribute? I have the instructions, I just don't know if this is a must or not with the domain names like they are.
    Am I going to run into any trouble switching GoDaddy's email to Exchange Server? Any Tips?
    Thank You, 
    fixitrod

    Hi fixitrod,
    Agree with Ed Crowley. If your original used domain is smallschool.com in GoDaddy, I suppose your email address would be
    [email protected]
    If that is the case, when you deployed a new AD domain with in.smallschool.com, we can create an accepted domain for smallschool.com in Exchange 2013. If you want to still use Godaddy for external message sending and receiving, you can create an external
    relay domain. For more information about configuring external relay fomain, please refer to:
    http://technet.microsoft.com/en-us/library/jj657491(v=exchg.150).aspx
    Regards,
    Winnie Liang
    TechNet Community Support

  • IMovie 09 deleting a project? Help please

    I am running iMovie 09 and am new to it. I created a movie using photos and videos. I first put it onto my flash drive when it was finished. I am planning on burning it to DVD's for my friends, so I have the file in a folder on my desktop. However, now when I open iMovie, my project is completely gone. And it still shows up in the folder and when I search my computer, but it will not let me open it or drag it back into iMovie. I'm terrified of putting my flash drive back in because it's the only thing I have of it right now (and the one DVD I tested putting it on).
    Can anyone please help me get my movie back?
    Thank you so much, it is greatly appreciated.
    A new and confused Mac user.

    In the Finder, go to Movies/iMovie Projects. Do you see your project there?
    Your project file has the extension .rcproject.
    If not, move it back there and restart iMovie.
    Message was edited by: AppleMan1958

  • Can't use google. Little help please

    For some reason I cannot use Google as a search engine or access its website. Would really like to resolve this. Any help is really appreciated.
    Things I have tried:
    1.) Ping google and it was successful
    The address it is using is 173.194.117.242
    To make things weird, if I use this numerical address in the search cue I in fact get access to the google website
    2.) I flushed the DNS in "Terminal"
    Not sure if that did anything. I read somewhere to try it
    Important background information
    When I enter google in my search function, I am directed to this page strangely http://122.132.196.148/33407BMULZ/dsawfffs.php?64198
    I do live in South Korea so that's why its in Korean. Basically it tells me I need to update google chrome (which I am not even using) or download some binary patch that really only is meant for Microsoft users so it doesn't work on my computer anyway.
    So...Why is it that I can reach 173.194.117.242 (google) but then am directed to that strange web page in korean when I use google as a search engine in my browser (firefox,safari)
    Thanks!

    Please review the options below to determine which method is best to remove the Adware installed on your computer.
    The Easy, safe, effective method:
    http://www.adwaremedic.com/index.php
    If you are comfortable doing manual file removals use the somewhat more difficult method:
    http://support.apple.com/en-us/HT203987
    Also read the articles below to be more prepared for the next time there is an issue on your computer.
    https://discussions.apple.com/docs/DOC-7471
    https://discussions.apple.com/docs/DOC-8071
    http://www.thesafemac.com/tech-support-scam-pop-ups/

  • Video deleted from iPad mini - help, please

    I took a video on an iPad mini, which was then deleted by accident.  It was not backed up on the Cloud or iTunes.  My understanding is that only a data recovery software will help me retrieve that video...but which one do I trust?  Is there one that does not cost an arm and a leg?  I appreciate any help.

    adepew1975 wrote:
    Really?  I was under the impression a third party recovery software would be an option.  If not, I am so, so sad.
    Thanks for your reply.
    You're thinking of computers, not iPads.

  • A little help please. Switch statement?

    Well hey there,
    I have some code and I would like to know why it keeps skipping to a certain part.
    I have made code for a cinema booking system and ticket prices are;
    Adult £5
    Student £4
    Child £3
    But no matter which I choose the price is £5?
                                            if ((input1 != null) && (input1.length() > 0)){
                                                char choice;
                                                choice = input1.toLowerCase().charAt(0);
                                                int selectedprice;
                                                switch(choice){
                                                    case 'a':
                                                        selectedprice = 5;
                                                    case 's':
                                                        selectedprice = 4;
                                                    case 'c':
                                                        selectedprice = 3;
                                                    default: selectedprice = 5;I know I have a default price of £5 but how can I make it so there is no default and it goes on what the user chooses? Thanks.

    if ((string2 != null) && (string1.length() > 0)){
                            Object[] possibilities3 = {"Adult", "Student", "Child"};
                                    String input1 = (String)JOptionPane.showInputDialog(
                                            frame, "Please Select Ticket Type: ",
                                            "Ticket Booking", JOptionPane.PLAIN_MESSAGE, null, possibilities3, "" );
                                            if ((input1 != null) && (input1.length() > 0)){
                                                char choice;
                                                choice = input1.toLowerCase().charAt(0);
                                                int selectedprice;
                                                switch(choice){
                                                    case 'A':
                                                        selectedprice = 5; 
                                                        break;
                                                    case 'S':
                                                        selectedprice = 4;
                                                        break;
                                                    case 'C':
                                                        selectedprice = 3;
                                                        break;
                                                    default: selectedprice = 0;
                                                 String input2 = JOptionPane.showInputDialog(frame, "Please Enter Number of Tickets: ");
                                                 Integer quantity = Integer.parseInt(input2);
                                                 TicketPrice total = new TicketPrice(selectedprice, quantity);
                                                 if ((input2 != null) && (quantity <= screen1.getCapacity()) ){
                                                     JOptionPane.showMessageDialog(frame, "Booking Confirmed! Payment of £" + total.getTotal() + " Transacted");
                                                 else if ((input2 != null) && (quantity > screen1.getCapacity()) ){
                                                     JOptionPane.showMessageDialog(frame, "Booking Not Possible");
                                                 else if ((input2 != null) && (quantity > screen3.getCapacity()) ){
                                                     JOptionPane.showMessageDialog(frame, "Booking Not Possible!");This is most of the code, it always says the price is £5 for any ticket? Please help.
    Edited by: sabertoothed.tiger on Dec 10, 2008 4:56 PM

  • ACR/Bridge deleting wrong pictures. Help please!

    Usually my workflow to post process as fast as possible around 600 - 800 pictures I shot on the same day/same subject, was to select batches of 100 pictures and open them in ACR. Then adjust brightness / contrast, cropping, etc. and deleting the undesired ones.
    After making these changes on ACR, click the done button, choose the next 100 pictures, and repeat this process 8 times and I was done.
    Now with CS3, I've found that if I do this too fast (clicking on done after working 100 images and selecting 100 more) the photos I deleted still there and what is worst, the ones I wanted to keep are being deleted. I´m not sure about this, but I think that even the changes made to one picture were applied not to that one, but to the next one (can this really be happening?) It seems that the sidecar XMP files info is being applied to the wrong photo.
    Is anyone else having the same problem?
    What can I do to prevent it?
    Running on Win XP, 1Gb RAM.
    TIA for your help.

    Have not seen that mentioned, but that does not mean you are the only one. One caveat when running Bridge is to not make any changes until the flies are loaded, as it can cause freezes, crashes and other problems. That is the spinning arrow at bottom left corner, wait until it stops. If working fast that may be a factor in your case. Worth taking a look at.
    Another thing to look at is the cache size in ACR. Go to Edit>Camera Raw Prefenences and look at cache size. Default is 1 gig, but some users have jumped this to 10 gigs to solve problems.

  • HT201407 LITTLE HELP PLEASE

    tried to update my ipad 2 16gb with itunes's latest sftware now my ipad has crashed
    i am now trying to restore with itunes my brothers laptop and it says:
    'the ipad "ipad" could not be restored. this device isnt eligible for the requested build'
    please help quite frustrating

    Make sure iTunes is at its latest version.

Maybe you are looking for