System Image over a network

OS X Leopard Server 10.5.6
has anyone been able to create an image of a mac over a network. My process is this:
netboot the source mac
share the hard drive of the source mac with the xserver. (not the netboot drive)
open the system image utility, it recognizes the mounted source drive.
kick it off system image, everything works fine. However, very slow
i kicked it off yesterday, and noticed it failed sometime lastnight.
if it fails again, i'll post up the log.
eventually our xserver will be in a network rack away from our office and i won't have the benefit of firewire to make an image. Is this the correct way of creating an image remotely?
thanks,
patrick

You can download and install the 'System Admin Tools' to any compatible Mac client (not server). Therefore you can use another Mac to create the image on and not the server. Especially if you have a production server that provides services other than NetBoot, this will reduce it's available resources. Create the image from another Mac (with Firewire or other) using System Image Utility.

Similar Messages

  • System Image Recovery from Network Drive - not found

    Hello all!
    I have been routinely backuping my OS and important files using Windows 7 backup on a NAS. It just so happened that I needed to re-image my OS drive and I got into the Windows 8 recovery boot sequence.
    I booted from a windows 8 USB stick and Under the Advanced tools I selected the System Image Recovery and tried to look for the system image on the network path. Although the prompt said it was connecting to the network , the network share was
    not found. the command prompt couldn't ping google.com and netsh wlan <SSID> command did not work in hopes of connecting to my local wifi.
    Is there a way to connect to the wifi network where my NAS is connected to in order to re-image from the system image found on the NAS? Luckily , there was an older image on a separate local HDD that I could re-image from but I would prefer if
    I could connect to the NAS during the recovery process.
    Any help is greatly appreciated.

    Hi,
    First, I have to say that in WinRE, http and wifi is not supported, that's why you cannot ping google and connect to wifi.
    To access NAS, we have to make sure that your network connection is wired, and try to manually location the NAS via
    \\IP address\...
    I will check if the Windows 7 image backup can be restored in WinRE of Windows 8, and update your soon.
    Edit:
    I have tried this, and it appeared that to restore Windows 7 image backup on this computer from Windows 8 winRE is not supported.
    see following error:
    Kate Li
    TechNet Community Support

  • Labeling images over a network in Bridge

    I was thinking of using Adobe Brige CS5 over a network. Mainly it would be just to see images all stored in one location on a server. Most people only have reading rights to this server. So when they open Bridge on their computer they can only view the images which is perfect. Is it possible to just have them be able to labe images on their computer fro there own use? Cant give them the writing rights. Is this possible to do.?

    Bridge is not particularily well suited for use over a network.  What you are asking would be difficult to do as it would need some kind of an interface one would have to write to act as a go between. 

  • Restore system image over windos 8.1 restore

    Hi all new poster so sorry if in wrong place move if needed.
    What I would like to know if I have a disk image of my 8.1 system as I like to have it set up IE my antivirus and documents etc.
    Can I use toshiba recovery to restore back to factory settings then us my disk image on dvd to restore system to how I like it to be.
    In other words how I would of had the restore partition if I have been able to make the restore system on the "D" drive without all the rubbish that is installed by the factory.
    dpick1947

    Yes, you can use Windows 8.1 to create an image of your current disk. Better to put it on an external USB drive rather than DVDs.
       Control Panel > File History > System Image Backup (at the lower left)
    I made a shortcut to sdclt.exe to go there. But it must run elevated as follows:
       Right-click the shortcut > Properties > Shortcut tab > Advanced button > Run as administrator
    You can restore it after installing or restoring Windows if you like. But it's easier to boot Windows 8 recovery media and restore directly.
    We create an image every night and retain the most recent ten for backup.
    -Jerry

  • Sending a image over a network

    Hi all,
    Here is the problem. I want to send an Image from 1 computer to another computer over the internet using java... 1 computer is a server... that loads a image from harddisk or other resource (internet) and sends this to the other pc (client applet)
    How do I send and read it to create an image... ObjectStream is not an options because that does not support Image objects (or am I wrong here?)
    Please help
    Greetingz
    David

    Here is one way to to do it. Read the image file as a stream of bytes, send it to the client. On the client-side, create the image from the bytes received.
    Here is an example using RMI:
    Loading images ad bytes on the server side:
    public synchronized byte[] loadImageAsBytes(String filename)throws java.rmi.RemoteException {
          try {
            FileInputStream bis = new FileInputStream(filename);
            byte[] imageBuf = new byte[1024];
            ByteArrayOutputStream boutstream = new ByteArrayOutputStream();
            for(;;){
              int bytesread = bis.read(imageBuf);
              if (bytesread <0) {break;}
              boutstream.write(imageBuf,0,bytesread);
            byte[] pixmap =boutstream.toByteArray();
            return pixmap;
          } catch (Exception e) {return null;}
       }In this example, loadImageAsBytes() is a remote method.
    Here is how you can the image on the client side:
    byte[] buffer = loader.loadImageAsBytes(filename);
    Image img = Toolkit.getDefaultToolkit().createImage(buffer);The loader object was created using this statement:
    loader = (ImageLoader)Naming.lookup("SimpleImageServer");Note that ImageLoader is the interface that specifies the loadImageAsBytes() method.

  • How can i taransfer an image over network through Sockets

    If any one have the exsperience for tranfering the image over the network by using socket plz help me immediatly

    You have to write a Server application and a Client application.
    And connect the Client to the Server.
    Then you can send whatever you want in either direction.

  • How do I send an Image over a socket ?

    I'm trying to get the output from my webcam and send that data out to a socket. Now the output from the webcam is running I'm just not sure how to send it out over the socket.
    Server.java
    import java.io.*;
    import java.net.*;
    public class Server {
       public static void main(String args[]) {
         ServerSocket serverSocket = null;
         boolean listening = true;
         try {
         serverSocket = new ServerSocket(1354);
         System.out.println("Listening for Connections...");
         } catch (IOException drr) {
         System.out.println("Error Listening :" + drr);
         System.exit(-1);
         try {
         while(listening)
         new ServerThread(serverSocket.accept()).start();
         } catch (IOException er) {
         System.out.println("Error Creating connection:" + er);
         try {
           serverSocket.close();
         } catch (IOException err) {
         System.out.println("Error Closing:" + err);
    }When a connection is made it will start the webcam and send the image.
    ServerThread.java
    import java.net.*;
    import java.io.*;
    import java.awt.*;
    import java.awt.image.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.io.*;
    import javax.media.*;
    import javax.media.format.*;
    import javax.media.util.*;
    import javax.media.control.*;
    import javax.media.protocol.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import com.sun.image.codec.jpeg.*;
    public class ServerThread extends Thread {
        public static Player player = null;
        public CaptureDeviceInfo di = null;
        public MediaLocator ml = null;
        public JButton capture = null;
        public Buffer buf = null;
        public Image img = null;
        public VideoFormat vf = null;
        public BufferToImage btoi = null;
        public ImagePanel imgpanel = null;
        private Socket socket = null;
        Image blah;
        PrintWriter out = null;
        public ServerThread(Socket socket) {
         super("ServerThread");
         this.socket = socket;
        public void run() {
         try {
             out = new PrintWriter(socket.getOutputStream(), true);        
             imgpanel = new ImagePanel();
                 String str1 = "vfw:CompUSA PC Camera:0";
                 String str2 = "vfw:Microsoft WDM Image Capture (Win32):0";
                 di = CaptureDeviceManager.getDevice(str2);
             ml = new MediaLocator("vfw://0");
                try {
               player = Manager.createRealizedPlayer(ml);
                 } catch (Exception npe) {
               System.out.println("Player Exception:" + npe);
                player.start();
             Component comp;
             if ((comp = player.getVisualComponent()) != null) {
               // Grab a frame
               FrameGrabbingControl fgc = (FrameGrabbingControl) player.getControl("javax.media.control.FrameGrabbingControl");
               buf = fgc.grabFrame();
               btoi = new BufferToImage((VideoFormat) buf.getFormat());
               //Send the image over the socket
               out.println(btoi);
         } catch (IOException e) {
             System.out.println("It bombed:" + e);
        public static void playerclose() {
           player.close();
           player.deallocate();
      class ImagePanel extends Panel {
        public Image myimg = null;
        public ImagePanel() {
        public void setImage(Image img) {
          this.myimg = img;
          repaint();
        public void paint(Graphics g) {
          if (myimg != null) {
            g.drawImage(myimg, 0, 0, this);
      }The output I get from running the server is this:
    BufferedImage@c9131c: type = 1 DirectColorModel: rmask=ff0000 gmask=ff00 bmask=ff amask=0 IntegerInterleavedRaster: width = 320 height = 240 #Bands = 3 xOff = 0 yOff = 0 dataOffset[0] 0
    Now how can I turn this into an image If this output is correct?

    HUH?
    I got the one to send the images over the network. I'm now trying to get the exact feed of the webcam and sending that over the network. This is alot more difficult to accomplish but I did see where I messed up my process of sending the images was just having to save the file then open it up put it in a byte array then send that over the network to the client. Once it was at the client i was able to re-construct it and throw it up in the frame. The only problem was lag. So this tells me it would be much more faster if instead of saving the file to send the client and having to reconstruct the image I should just send the webcam feed i used to make the image.
    eh, I guess I didn't need any help.
    Hey no offense or anything but you really have to learn how to spell better.

  • IChatAV and file transfer over wireless network

    Hi there...
    I'd like to let you in on my predicament. Firstly, a bit of background.
    I decided to buy my folks an old iMac from eBay in Australia - and pay for their broadband connection - so that I could video chat to them from the UK, and they could see my 5 year old son for the first time in 4 years. Cute, eh?
    Well, everything was working fine until I decided to go wireless in my home about 3 months ago. I have a static IP address, and purchased a nice new Airport Express to integrate into the system. I allocated my G5 iMac it's own network address (10.0.1.2), and the base station the master address (10.0.1.1). From there, the base station communicates to the router via the static IP... Sound ok?
    Anyway - NOW (or, for as long as I can recall), I CANNOT for the life of me send files over the connection. Video chat and audio chat are fine (although OCCASIONALLY it takes a few goes to be able to see THEM on my computer - I think their bandwidth isn't THAT stable at 512Kbps down and 128Kbps up) - however, the correct ports have been unblocked on the OSX firewall AND the Airport Express base station.
    And just so that you know it's not the folks' fault - I can't send documents/images over the network to friends I KNOW are competent (or, at least more competent than my parents!). There's always an error message at the receiver's end, and the file I'm attempting to send just times out.
    Has anyone any suggestions as to how I might be able to resolve this problem before I expire from old age?!?
    Your thoughts are REALLY appreciated!

    Hi Ralph
    I can see where that might be the case, but file transfer worked flawlessly BEFORE I went wireless using the same modem. The only way to unblock ports on my router is to turn NAT off - it creates a DMZ, so it permits unhindered 2-way traffic...
    It's a pretty confusing piece of kit. Maybe I should just get a Netgear anyway!
    I have a laptop on the wireless network as well, and file transfer works a treat between it and the iMac. All I can think of is that because I'm now working on a LAN, there's a blockage to get out to the "Real World" - even though it's easy for video to pass through.
    I'll check my unblocked ports again, just to be sure. I'm unfamilar with the term "Jabber" - is that what Apple decided to call one of the elements of iChat? Excuse my ignorance...!

  • Why does photoshop no longer save over my network

    I have recently purchased 2 mac minis as retouching stations.
    -running 10.10.2
    -other computer and host computer on 10.9.5
    -running a mix of CS5, CS6, and CC
    all of our systems can, over a network, access a raid, grab a file, work on it and hit save
    the 2 yosemite stations get permission errors.
    Yes the permissions are set correctly everywhere. this is only an issue with tees 2 new stations, out of seven.
    I read about it all over, a serious damper in our work flow as a catalog house...
    Adobe seems to have wiped it's hands of it. 
    Has anybody found a solution, I have read formatting my RAID to EXfat can solve it, but that it a not very reliable platform
    Anybody?
    Thanks

    What protocol are you using? AFP or SMB?
    Truth be told, there have always been issues saving files from Photoshop over a network share point. It works some times, with some Photoshop and OS X versions, and in others it doesn't work, due to permissions or other errors. The relatively foolproof way to work is to edit and save everything local, and then copy files to the network drive when you're done working on them, rather than continually saving over a network share.

  • Window can not find a system image on this computer

    I have HPPavilion dv6 3134se notebook.when I purchased.its operating system was windows 7 home basic.My friend suggest me to upgrade windows 7 ultimate.he also give dvd of windows 7.i have installed it.after3days a message appear from microsoft.that your copy is not original.ITry to get my previous windows 7 home basic.when i press F 11&amp;force to recovery amessage apear tahat window can not find a system image on this computer.I try to my level find it a message appear.thatspecify the location of the system image.How search system image on the network pleasehelp me with url address&amp;my hp recovery partion also now not loki ngcomputer.i hope some one help me.
    This question was solved.
    View Solution.

    Hi,
    You're welcome, glad it helped
    All the best,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Windows 8.1 System Image Backup - Unable to backup to network share due to unsupported "version of the file format"

    I have a Windows 8.1 Pro 64 bit system that I am trying to make a system image backup via Windows 8.1's System Image Backup feature.
    The backup destination is a network share, but the image creation is failing with the following error: 
    The version does not support this version of the file format
    After some investigation, it appears this is due to the network share (a Netgear BlackArmor NAS 220)not
    supporting sparse files. The consensus out on the web seems to be that your smb.conf file on the NAS needs to have strict allocate = yes added, in order to support sparse files. However, as far as I can tell with the BlackArmor NAS
    220, there is no way to edit the smb.conf file (and I'm not even 100% positive they're running Samba--but I bet they are).
    Some more searching revealed another possible option here: 
    If you don't need to exclude files from your backup, use the "-allcritical" option in your command line. AS IN:
    wbadmin start backup -backupTarget:\backup1\backupdrive1\ -include:c: -user:administrator -password:xxxx -systemState -vssFull -allcritical -quiet
    This changes it to Block backup and gets rid of the error.
    I'm trying to do a complete backup, so no exclusions are wanted or needed. So, i tried this, and got the exact same error (only this time it was on the command line, rather than a GUI dialog).
    Is there any way to do backups to a network share that doesn't support sparse files via Windows 8.1's System Image Backup facility?
    Alternatively, is there a way to enable the strict allocate = yes on a BlackArmor NAS 220?

    Hi,
    When using BackupAssist to perform a backup from a Windows file system to a Linux (ext4 or XFS) file
    system, the backup can fail if the following conditions apply.
    The backup is running a system protection job to the Linux based NAS. 
    The Linux NAS has sparse file allocation turned on.
    These two contition can cause the problem like yours.
    You can refer to the document which also contains an solution for further details.
    http://www.backupassist.com/downloads/resources/sparse_file_system_compatability.pdf
    Roger Lu
    TechNet Community Support

  • Hi! I have a WD my book external hard drive plugged into my imac and I want to share it over my network with my apple tv. I went into system preferences sharing, checked "file sharing" and added my external hard drive to the shared folder. So now it is

    Hi!
    I have a WD my book external hard drive plugged into my imac and I want to share it over my network with my apple tv. I went into system preferences > sharing, checked "file sharing" and added my external hard drive to the shared folder. So now it is listed in "shared folders" but under "users" everything is grayed out (it says "read and write" for "everyone" - but "read and write" is grayed out, and it doesn't let me add or subtract users). Now I can access all of the folders I shared from my imac except for the externalhard drive. What's going on?

    Hi RRFS!,thanks for help.I forgot to tell that hard drive has 2 partitions 1:format :Mac OS Extended (Journaled) and that works properly,2:format:MS-DOS (FAT32) and when i "get info" for both :first has shering & permitions:You can read and write - with name and privilege, second has shaing & prermissions:You can read and write- without name and privilege

  • HP 932C PRINTER DOES NOT WORK OVER A NETWORK WITH TWO DIFFERENT OPERATIONAL SYSTEMS.

    I have a 932c HP printer connected via USB to a Windows XP desktop computer (Dell E520), which is part of a home network.
    I also have an HP Pavilion dv5 notebook, running Windows Vista Home Premium 64-bit, connected to the same network. This notebook can find the printer over the network. However, when I try to capture the 932c printer, the following dialog box appears:
    "The server for the `hp deskjet 930c series` printer does not have the correct printer driver installed. If you want to search for the proper driver, click OK. Otherwise, click Cancel and contact your network administrator or original equipmente manufacturer for the correct printer driver."
    When I click OK, another dialog box appears:
    "The file `*.INF`on (Unknown) is needed. Type the path where the file is located, and then click OK."
    However, I can't find any workable *.inf file in the HP notebook Hard drive (both partitions).
    I have already tried to download the driver from the HP website, but it says that Windows Vista already has the driver for such printer! Well, now I'm stucked!
    I'd like to point out that the printer works fine if I plug it directly to the HP notebook's USB port. But I want to operate the printer via the home network, keeping it hooked to the Windows XP desktop computer.
    How to solve this problem? Thanks.

    This is the HP notebook forums. I would recommend posting this in the printer forums for better coverage.
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • How to transfer images over network?

    Hello,
    I've built a program in LV 7.1 which taking a snap shot from a USB webcam and save it as JPEG file.
    As I already said I am using LV 7.1 with NI VISION 7.1.
    My program has to take the picture from the webcam and send it via serial visa connection. (TCP \ IP is also an option)
    Regards,
    Rotem

    There are lots of ways to transfer files over the network. The easiest, in my opinion, is to use TCP/IP and set up a network share or mapped drive between the two machines and then transfer the file by using copy. Of course, there are lots of situations where setting up a network share isn't apropriate.
    If network share isn't an option, and you want to use serial, you should probably use a protocol such as Xmodem, Ymodem or Zmodem to transfer the file. LabVIEW doesn't have direct support for these protocols, although I know someone sells (or at least used to sell, I couldn't find it with a quick search) a modem toolkit for LabVIEW with these protocols implemented. There are also ActiveX servers that implement these protocols that you could download or purchase and then access from LabVIEW.
    If you want to go the TCP/IP route, an FTP server would be an easy option. You'd need to run an FTP server on the target machine, but then you could just use the LabVIEW FTP VIs or call an FTP terminal through command line or ActiveX.
    Of course, you could implement your own file transfer protocol using VISA, datasocket or the TCP/IP VIs, but this last option is quite a bit of work to solve a problem when there are plenty of programs out there to solve it for you. Re-inventing the wheel if you will. While it's not all that difficult to read in a file, transfer it using one of the communication APIs, and then write it back to a file on your client machine, you'll either have to implement, or go without, a lot of the features and safeguards, like error checking, which are built into other file transfer protocols. Also, remember that you'll have to have a LabVIEW application running on each end, so you'll have to implement both halves of the solution (as opposed to options like FTP or the network share, where you only have to run a VI on one computer).
    Hope that helps,
    Ryan K.

  • Sending images over network socket

    I'm working on a java web server. So far i have managed to get it to send html documents sucessfully to the client web browser, using a BufferedReader, and a PrintWriter object.
    But how should i send images over the socket? using this method doesn't work. Any suggestions?
    Thanks in advance.
    hornetau

    I did it first. You may pay me $10 and get XM2 WebServer 1.2 from my company.
    Ok, I'll help ya out here...
    HTTP protocol in Internet Explorer is "juiced up" meaning that it does not require HTTP data to be correctly sent. To send an image to be deisplayed...
    <html>
    <img src="theImage.gif"></img>
    </html>
    Now, the server will see a GET request like this...
    GET /theImage.gif HTTP/1.1
    Accepts: Image/jpeg, Image/gif, ...
    Your web server (in the IE case just needs to send)...
    output.println(data);
    The data object is a string, that represents the contents of the image.
    To do that, just get the correct File object, connect reader to it, then loop it
    until the reader is no longer ready (reader.ready() != true), as it loops, just append
    the readLine() command to the end of the data string and it will be ok.
    Now this works on IE just fine, using vary small file sizes due to it being loaded directly into
    memory. Casing problem if your app has only 500K of memory and the file size is 700K, 500-700=-200K, so use only small file sizes with this method.
    There is also the URLConnection and HttpURLConnection classes to use that will do this better, but
    they dont have any real way of getting the file's data - that's still YOUR job.

Maybe you are looking for

  • .xlsx files not opening in Quick View on iPad

    I am having trouble viewing some .xlsx files in Quick View on an iPad 3.  When I attempt to open them, Quick View loads, but I only get a gray screen that displays the file name, file size, and "Open Office XML spreadsheet." I have tried multiple .xl

  • Item category in Third party

    Hi Friends, When iam trying to assign the item category (VOV4)for a manual requirement the system triggers the error - An entry already exists with the same key. OR + NORM + + = TAN+ TAS But i checked the entries its not existing ...even i tried to c

  • Why do I get different tag icon combinations?

    This is really bugging me and I can't fing an answer anwhere.  I've just started organizing my photos by adding albums and keyword tags. I add the album to all the pictures and get a green album icon on the thumnail.  Then for most of the images when

  • Nested Loop and Driving Table.

    In the documentation I read these (/B19306_01/server.102/b14211/optimops.htm#i82080). The optimizer uses nested loop joins when joining small number of rows, with a good driving condition between the two tables. You drive from the outer loop to the i

  • I get this error message

    I get this error message when trying to itunes library file.itl file is locked on a locked disk and i'm the only user on my computer.