Turn PowerMac G5 into server

I replaced my PowerMac G5 with a new iMac. I needed an Intel Mac to run Adobe CS4. I feel like it's a waste of a perfectly good computer to let the G5 become a doorstop.
I was thinking of turning it into a server. I was going to download a demo of the Mac server OS, but they stopped offering it as a demo. Can I turn it into a Linux server? Any recommendations?

What do you define as a server? a linux box was popular. You can run YDL, not sure of current versions (gave up on Suse on Mac).
What do you want to run on it? NAS?
Have alook at Atom-based (Intel) boxes? HP has a nice unit with 5-10TB of storage, eSATA and USB as well as internal drives, just needs a good giga switch.
For what it costs to run a G5, well, they do make nice room heaters in the winter, I don't think turning it into a server is always the best, and you are probably looking at spending on internal or external storage in most cases unless you have a storage array already.
Donate. There are lots of places in need that would be happy to have one, schools, charity organizations...
Windows Home Server SP2 $99 - even if you don't go for it, the WHS Bible or manual show how to get the most out of it (comes with many of your NAS boxes). Supports Macs, PC, iTunes, TimeMachine and more.
I'm sure there must be similar $499 devices or should.
This question comes up about once a week lately.

Similar Messages

  • Turning Powermac 8600 into a full webserver

    Hi,
    I have a PowerMac 8600 running Mac OS 9.1 and I want to turn it into a web server so I can host my website on it and people will be able to connect to my website via the 8600. NOTE (I dont want this just for my network I want it for the whole world to be able to see my site not just my network). How do I do this? Thanks

    The DHCP lease period is usually set for a day or two by default. If you were to turn them all off, not use them for two days, then turn them back on in a different order, they would get different addresses. You can adjust the lease period to a shorter time if you want to mix them up a little.
    DHCP makes it simple to set up networks up to hundreds of computers without having to write down and remember all those address assignments -- with no risk of duplication of addresses. The fact that it is simple and stable in your environment tells you it is working great.
    The next thing to think about is the Subnet Mask. It is four 8-bit bytes with a 1-bit for every address bit that should be considered. 255 is 8 1-bits ON. A Subnet Mask of 255.255.255.0 says that any computer that has the same first three bytes of its IP address the same as mine is on my Subnet, and can talk to me.
    Based on the addresses you have for your computers, your router probably responds to an address like 192.168.2.1, which is on the same Subnet as all the computers. So anything going to the Internet is sent to that router address to get its address changed and be forwarded on to the Internet.
    This address change (some describe it as putting the packet into a bigger envelope) is called Network Address Translation. The router supplies its Upstream IP address (not the same as the 192.168.2.xxx as your computers see) as the source on these bigger envelopes being forwarded out the WAN connection, and responses come back to the router's Upstream IP address. This Upstream IP address is not on the subnet with your local computers, so a router is required to send packets to it.
    Depending on how your ISP has implemented Upstream addresses, this address may be different tomorrow, and may or may not be Internet-visible.

  • My macbook pro hacked by turning device computer into server

    got hacked somehow.  He (I think I know) turned computer name under "devices" the finder window and then overrided my admin capabilities.  I tried to save a screen shot but it said I didn't have permissions now.   I work 30+ apple computers and am very frustratd because apple says my 3 year plan just ran (Macbook Pro - Snow Leopard)
    Thanks for anything!
    Cass

    Listen man, I was on the computer when it happened.  I do a lot of program specialist/IT work/maintainance.  The displays icon suddenly appeared and I clicked on it and it showed that I had multiple displays currently active.  When I went to finder window to check out what was going on, my "computer name" under "devices" was turned into a server.  He basically overrid all my permissions, and I could not control my computer at all.  Then I pluged in a mouse and was able to go to the "Accounts" "get info" and lower his privlidges and permissions, but I didn't lock out finder and when I when to the permissions list of the mobile device he was using and tried to take a screen shot and it said I no longer "can save screen shots because I do not have permissions" and then I went to shutdown and it did hit it again to bypass the 60 sec countdown.
    Now it wont boot.  I accidentally left the grey apple screen with wheel spinning for over a day.  I have tried safe boot and boot to disk.  I guess I could try target disk, but my old iMac doesn't have the capacity (120 vs 320 GB)....    Now I'm bummed out and apple says my 3 year sub is up and don't think I've used that thing but once or twice.... rediculous.....

  • Turn Windows Phone into a video streaming server (not client)?

    I want to stream video from a Windows Phone 8/8.1 device but I'm not sure where to start.  I have done extensive web searching for C# examples or libraries to do this but everything I have found so far covers using the phone as a
    client, not as a source.
    I'm guessing I need to turn the phone into an RTSP server? If not, what is the correct technique or starting point for doing this?  Main concerns are that the streaming be smooth and with minimal lag, since the Windows Phone (camera) is mounted on a robot
    for remote navigation.  Too much lag or video performance problems and navigation will be impossible.  Any libraries or samples that show how to do this are greatly appreciated.
    -- roschler

    Hi Roschler,
    Per my understanding, it is not support in public API. If you need this feature, you can vote it on UserVoice.
    https://wpdev.uservoice.com/forums/110705-dev-platform.
    If you are OEM developer, you can use your own channel to check if there is such API.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Problems turning bytes back into a des key

    hi there-
    i'm writing a client/server application the uses encryption to send files back and forth. i have been able to get my program to receive certificates from the client and server. i have generated a des key using:
    KeyGenerator kg = KeyGenerator.getInstance("DES");
    java.security.Key secretkey = kg.generateKey();
    and I want to send that to the server, encrypted with the public key. i'm trying to do it like this:
    Cipher cipher = Cipher.getInstance("RSA");
    cipher.init ( Cipher.ENCRYPT_MODE, key); //key is the public key
    theBytes [] = secretkey.getEncoded(); //send secretkey
    bytesEncrypted [] = cipher.doFinal(theBytes);
    outToServer.writeInt(bytesEncrypted.length);
    outToServer.write(bytesEncrypted);
    the problem is, once i transmit the des key and decrypt it with the private key, i dont know how to turn it back into a des key from the bytes. can someone help me out bigtime and let me know how i can go about doing this?
    thanks a bunch!

    In followup to my previous reply, here is the sample code.
    import java.security.spec.KeySpec;
    import javax.crypto.KeyGenerator;
    import javax.crypto.SecretKey;
    import javax.crypto.SecretKeyFactory;
    import javax.crypto.spec.DESKeySpec;
    public class SecretKeyTest {
         public static void main(String[] args) throws Exception {
              System.out.println(System.getProperty("java.version"));
              KeyGenerator kg = KeyGenerator.getInstance("DES", "SunJCE");
              SecretKey sk1 = kg.generateKey();
              System.out.println(sk1);
              byte [] sk1Bytes = sk1.getEncoded();
              SecretKeyFactory skf = SecretKeyFactory.getInstance("DES");
              KeySpec spec = new DESKeySpec(sk1Bytes);
              SecretKey sk2 = skf.generateSecret(spec);
              System.out.println(sk1.equals(sk2) ? "Equal" : "Not Equal");
    }

  • How do I turn an image into a transparency?

    Hi,
    There's a question I've seen asked dozens or hundreds of times, and I thought I found an answer a few years ago. I've since forgotten how to do it:
    Turn an image into a transparency.
    Now, the obvious solution is to set the layer to "multiply." Yes, this is the effect I want. However, I want the layer to be transparent instead.
    Another solution is to draw an image on a transparent layer. This works great, but only applies if I create the image from scratch. I want to convert an existing image.
    Another solution is multiple steps:
    1) Copy image
    2) Click "edit in quick mask mode."
    3) Paste image
    4) Exit quick mask mode.
    5) Invert selection.
    6) Ctrl+backspace to fill selection with black, on a blank transparent layer.
    Result? The image is now transparent! However, this converts the image to greyscale! Great for linework and text, terrible for photos or art!
    In an older version of Photoshop 7, I believe I got the following to work:
    A) Follow the previous steps 1-6, creating a layer with transparency
    B) Copy the original picture to a layer above the transparency
    C) Group the layer with the transparency layer below. (Note, grouping doesn't work the same any more.)
    D) The top layer provides the colors, but the bottom layer provides the transparency.
    E) It is too light, so you take the top layer, and maximize "saturation" 100%.
    F) Merge the two layers. It retains the transparency of the bottom layer, with the hue of the top layer.
    This no longer works, because I don't know how grouping layers works anymore.
    So, I need white pixels to be transparent. Black pixels to have zero transparency. Red pixels to have zero transparency. Etc.
    Meanwhile, grey pixels are solid black, but partly transparent. Pink pixels are solid red, but partly transparent.
    All pixels are 100% saturated, and the "lightness" is determined by how transparent they are.
    So, an analogy would be printing a photo on a transparency. I need to convert an image to a transparency.
    If the image/layer were overlaid on white, it would look exactly like the original photo.
    Does anyone know how to accomplish this? Mathematically, it's easy. But I don't know about any filter, process, or method to make the conversion using CS5.
    Thanks,
    Ben

    Hello!
    I hope that I understand what you need.
    (One could just put the image on a layer, and lower its opacity, but you seem to be looking for an effect in wich the tranparency is not the same for all pixels.)
    Try this:
    1) Turn your image image as a layer (double-click it if it is a background layer) [In order to add a mask]
    2) Select all, Copy (CTRL+a, CTRL+C)
    3) add a layer mask (click the rectangle with a circle in the bottom of the layers panel) [to be able to change transparency]
    4) target the mask [so that you can past an image in it] ALT+click the mask, paste the image.
    5) Invert the colors of the mask (CTRL+I) [in order for the white to be transparent and the black opaque].
    You now have a layer whose transparency is based on the lightness of the pixels.
    Hope that's what you are after!
    Pierre

  • Turn a script into an .exe file?

    Hi,
    How can I turn a JavaScript into an .exe file (on Windows)? The
    advantage is that if the script uses only ScriptUI features, it will
    never need to launch InDesign. Additionally, it is possible to package
    it that way with a special icon that appears if it is placed on the
    desktop, and when it runs the icon appears in the taskbar.
    An example of what I'd look to achieve is the hyphenchecker script,
    written by the late Teus de Jong. There is one Windows-only version
    available on his website (which is still being maintained, probably by
    his son) which is an .exe file -- precisely what I'm trying to do.
    Thanks,
    Ariel

    straight form javascript i don't think there is a way.
    however you can use, i think, Visual Basic (not vbScript!!) as a wrapper for js (using doScript)?

  • How to upload a file into server using j2ee jsp and servlet with bean?

    How to upload a file into server using j2ee jsp and servlet with bean? Please give me the reference or url about how to do that. If related to struts is more suitable.
    Anyone help me please!

    u don't need j2ee and struts to do file uploading. An example is as such
    in JSP. u use the <input> file tag like
    <input type="file"....>You need a bean to capture the file contents like
    class FileUploadObj {
        private FormFile srcFile;
        private byte[] fileContent;
        // all the getter and setter methods
    }Then in the servlet, you process the file for uploading
        * The following loads the uploaded binary data into a byte Array.
        FileUploadObj form = new FileUploadObj();
        byte[] byteArr = null;
        if (form.signFile != null) {
            int filesize = form.srcFile.getFileSize();
            byteArr = new byte[filesize];
            ByteArrayInputStream bytein = new ByteArrayInputStream (form.srcFile.getFileData());
            bytein.read(byteArr);
            bytein.close();
            form.setFileContent(byteArr);
        // Write file content using Writer class into the destination file in the server.
        ...

  • Mail turns PDF attachment into jepg

    I use distiller and acrobat to create PDFs from Quark documents; for the last few days, attaching a new PDF to an email in Mail has turned the PDF into a jpeg which PC users can't open. The problem has just cleared itself (without me knowingly doing anything) but it has happened before and I guess may happen again. Any idea of the cause and solution?

    What I should have said is Apple should not make the Image Size adjustment an available option when a PDF file is attached to a message.
    Yes, this is the answer. Using the term seemed to happen - it either happens or it doesn't but Mail will not and cannot change the file type or the file extension for an attached file without user intervention. Using the Image Size adjustment for a single page PDF file which appears inline or viewed in place within the body of the message does change the file type or file extension for the file from .pdf to .jpg since the Image Size adjustment is intended and can only be used for picture or image file attachments, not with PDF files.

  • Need to turn this PLSQL into a procedure

    Hi All,
    I have the following PLSQL which declares a cursor, then loops using the cursor variable. I'm new to creating procedures and packages and i'm having trouble turning this PLSQL into one of those. When i put my PLSQL code in a procedure it doesn't like the DECLARE statement or the CURSOR section. I'm not sure how to tweak it to get the syntax correct for a procedure. Can someone point me in the right direction?
    Here is the PLSQL:
    DECLARE
    /* Output variables to hold the result of the query: */
    groupid assignment_group.id%TYPE;
    /* Cursor declaration: */
    CURSOR Asset_Rank_HistoryCursor IS
    select distinct id from assignment_group;
    BEGIN
    OPEN Asset_Rank_HistoryCursor;
    LOOP
    /* Retrieve each row of the result of the above query into PL/SQL variables: */
    FETCH Asset_Rank_HistoryCursor INTO groupid;
    /* If there are no more rows to fetch, exit the loop: */
    EXIT WHEN Asset_Rank_HistoryCursor%NOTFOUND;
    /* Insert the the new rows */
    insert into ASSET_RANK_GROUPED (asset_id , dt, rank, score, ASSIGNMENT_GROUP_ID)
    select asset_id, max_dt, rownum, score, groupid from (
    SELECT <big nasty select statement>
    END LOOP;
    /* Free cursor used by the query. */
    CLOSE Asset_Rank_HistoryCursor;
    END;
    How do i change my DECLARE and CURSOR statement so the procedure will create. Do i need to break it out into a function?

    I figured it out... just had to play w/ the syntax. Had to make sure the BEGIN statement was AFTER the CURSOR declaration and had to make sure any variables are declared up top, didn't need a DECLARE section in procedure. I just put the groupid variable right after IS at the top of procedure creation statement.

  • I made a picture collage in pages from the pictures in iPhoto.  You used to be able to print and then say save as a jpeg to iPhoto and that option is gone.  How do you turn your document into a jpeg now.

    I made a picture collage in pages from the pictures in iPhoto.  You used to be able to print and then say save as a jpeg to iPhoto and that option is gone.  How do you turn your document into a jpeg now?

    If you chose print, you can save as PDF. If you open the saved PDF in preview, you can save as JPEG, GIF, PNG. FYI you can crop in preview.
    Another option is you could use command + shift + 4 to do a screen shot of a specific part of of the screen.

  • What peripherals do you need to turn your iPhone into a conference room speakerphone?

    What peripherals do you need to turn your iPhone into a conference room speakerphone system?
    If you buy a separate conference mic and a speaker, can they somehow work together off the iPhone headphone jack like a huge set of group earphones?  What if you want to connect 2 mics and a speaker?
    Do you have to be very careful that they can all be attached somehow at the same time?
    Are there reasonably priced conference room speakerphone peripherals the work well together that you would recommend?
    Steve

    Why don't you contact Apple and find out?  Certainly if you can find your way around the internet to have been able to find this forum, you can certainly find the number for AppleCare.

  • Turning PDF Documents into Word Documents

    Can I use my Adobe Creative Suite 6 to turn PDF documents into Word Documents?

    Acrobat comes with most versions of Creative Suite and it is capable of converting PDFs to Word documents. The quality of the results depend on a number of things. If the PDF was originally generated from a Word source and it's well tagged, you will get much better results. More complicated layouts will generally have worse results and there will be considerable cleanup in Word needed. Exporting to text is sometimes better.
    For the future, there is a better forum for this type of question: http://forums.adobe.com/community/acrobat/creating__editing_%26_exporting_pdfs?view=discus sions

  • Problem logging into server.

    i have a macbook pro running 10.6
    imac running 10.6
    macpro running server 10.5.8
    MBP logs into iMac no problem, iMac ARD and Sharing settings are identical to server, but server will not allow login without asking permission (so i know server see's it) What am i missing on the server side that's not allowing direct login
    server - sharing and remote management set to all users. Server logs into imac no prob but imac/mbp will only log into server if someone is at server and clicks allow, which makes it pointless for remote access.
    sorry if explanation was iffy, its a tough one.
    thanks

    It's clearly still connecting as a guest, even though you say you're using a valid user account on the server. One final question; it appears that you have the ARD administrator application installed on more than one computer. If so, do you have separate serial numbers for each installation, or are you using the same serial number on all the systems?

  • Turn Word documents into PDfs

    Is there any way to use Automator to create a command so that I can turn Word documents into PDFs in one easy step?
    Thanks, Ken

    Hi "jhaystead",
    Apologies for making an incorrect suggestion. "Batch Conversion" is a feature in Acrobat 9 and above.
    I'd suggest you use the "Open All" sequence > Double-click it to EDIT > For "2. Run Command On:" choose "Selected Folder" and BROWSE to the input folder. Similarly for "3. Select Output Location", you can choose "Same Folder as Original(s)", click OK and then "Run Sequence".
    This would invoke the PDFMaker for conversion of Word documents to PDF and save the output PDF(s) at the folder mentioned, instead of printing and prompting to save the output each time Adobe PDF Printer is called.
    Plus, could you please check if the Adobe PDF toolbar/menu options are there in Word and working fine?
    When you said,
    "The only way I can get PDFs produced is to manually open each word document, then save it as a PDF. I haven't had any luck with multiple PDF creation." Were you printing the Word documents to Adobe PDF Printer or using the PDFMaker options?
    Thanks!

Maybe you are looking for

  • Credit Note with out Tax Value.

    Hi gurus, can any one tell me how to manage the system to not calculate the Taxes in case of Credit note to be issued for the Customer Returns. Here we are using only one Pricing procedure for all types of Sales transactions. I have one thought that

  • Confused... why are my exports smaller than my versions???

    I am having a heck of a time figuring this out. My file size (I've not done a thing to the photo since importing it) is 4.29MB. When I export the photo as a version it's 1.81MB. What's going on here?

  • How can I make an external monitor the main display?

    I have a mid 2007 iMac running OS X 10.4. The internal monitor is broken and all it shows is a bunch of lines. I have connected an external Samsung monitor. All I see in it is a desktop background: no icons, no menus, no dock. I believe this is becau

  • Download J2SE from local server

    Here's my situation: I need to tell webstart to download version 1.5.0_06 from http://somelocalserver/ because the clients using the webstart version will be unable to access java.sun.com due to firewall restrictions. Can someone point me to the docu

  • How do I split 1 image across 2 pages? Am using Pages `08.

    When formatting a magazine - how do I split one image across 2 pages side by side?