It takes a few restarts to get my display to work properly with my G5..why?

Sometimes when I start my G5 the cinema display doesn't start up with it (the picture that is, you can hear the display working but no picture!) and I have to keep restarting the G5 until it does! It usually always does start up after 2 or 3 restarts (sometimes even more) but I was wondering if anyone has some advice as to why this is? Is it likely to be a fault with the G5 or my cinema display? I don't understand why it always works eventually. Can anyone explain what is going on? It is starting to get really ridiculous having to keep on restarting!
Thanks, Adam

Hello and thanks for your reply. Sorry I have left it so long before returning.
Errmm, my room can get cold with the radiator off but I wouldn't call it freezing as there is usually something on in the rest of the house. What evidence is there that temperature would affect the start up of the display? Just wondering that's all.
Regarding the sound of the display. I'll have to restart it again and have a good listen. Maybe it is the actual G5 I am hearing and it is somehow sounding odd when the display doesn't come on. The times when the display comes on normally, everything seems to sound right if you know what I mean. Maybe I can record this on my camera or something and post that for you to watch (don't know if you can upload things to a post).
Regarding the torch or bright light into the screen. I'll give that a go and post back.
Thanks for your help
Adam

Similar Messages

  • Getting sasc-ng to work properly with systemd service files [SOLVED]

    This thread is intended for getting the following AUR packages to work with each other with systemd service scripts:
    https://aur.archlinux.org/packages/open-sasc-ng-dkms/
    https://aur.archlinux.org/packages/open-sasc-ng/
    https://aur.archlinux.org/packages/oscam-svn/   (this is a related package as it must properly execute prior to sasc-ng)
    So my server is now on a fresh Arch install with systemd. All is well (& very fast) except I cannot get sasc-ng to function with systemd service init files. Prior to systemd the system worked fine with the rc initscripts & was very stable with the following setup:
    rc.local
    /etc/rc.d/oscam start
    sleep 15
    /etc/rc.d/sasc-ng start
    sleep 4
    /etc/rc.d/mythbackend start
    /etc/conf.d/sasc-ng.conf
    SASCNG_ARGS="-j 0:3 -j 1:4 -j 2:5" -b 16M --sid-allpid --sid-nocache --cam-budget"
    DVBLOOPBACK_ARGS="num_adapters=3"
    LOGDIR="/home/mythtv/logs/"
    CAMDIR="/etc/camdir"
    /etc/camdir/cardclient.conf
    camd35:localhost:15050:1/0000/0000:mythtv:mythtv
    I'll leave out the oscam stuff as that loads fine and doesn't appear to be a part of the problem
    I've tried this with the systemd service file that comes with the open-sasc-ng-dkms package and when it was not sucessful I tried a bunch of variants including using "Type=simple" ect. "Type=Forked" seems to be only option that actually tries to start the processes. I also "hardcoded" the service files for the 2 sasc-ng components to find a few issues with the EnvironmentFile variables. The log variable has been removed for now as this seems to cause a fatal error but the rest of the variables load fine now. I also tested spliting up the DVB loopback module from the sasc-ng binary but this also gives similar results as the following script stands now. Running them manually with systemctl start commands doesn't make a difference but that is not surprising. The service file I'm fiddling with now which I feel has the best potential become working is:
    sasc-ng.service
    [Unit]
    Description=Sasc-ng
    After=oscam.service
    [Service]
    Type=forking
    EnvironmentFile=/etc/conf.d/sasc-ng
    ExecStartPre=/sbin/modprobe dvbloopback $DVBLOOPBACK_ARGS
    TimeoutSec=2
    ExecStart=/usr/sbin/sasc-ng -D $SASCNG_ARGS --cam-dir=$CAMDIR
    TimeoutSec=4
    [Install]
    WantedBy=multi-user.target
    Mythbackend always runs fine (even without DTV via sasc-ng) with the following mythbackend.service:
    [Unit]
    Description=MythTV_backend
    After=sasc-ng.service
    [Service]
    Type=simple
    Environment=MYTHCONFDIR=/etc/conf.d/mythbackend
    Environment=HOME=/usr/share/mythtv
    User=mythtv
    ExecStart=/usr/bin/mythbackend --logpath /var/log/mythtv
    [Install]
    WantedBy=multi-user.target
    oscam.service taken mostly from AUR package also seems fine. I added the TimeoutSec=15 to give time for oscam to load the SC and client protocol before moving on or else sasc-ng fails
    Unit]
    Description=An Open Source Conditional Access Module software
    After=network.target
    [Service]
    Type=forking
    EnvironmentFile=/etc/conf.d/oscam
    ExecStart=/usr/bin/oscam $OSCAM_ARGS
    TimeoutSec=15
    [Install]
    WantedBy=multi-user.target
    Below is the output of the systemctl status commands. Despite the noise in the sasc-ng binary status, it is the loopback module that is " inactive (dead)" and there are no virtual DVB devices being created:
    [mythtv@server ~]$ sudo systemctl status oscam.service
    oscam.service - An Open Source Conditional Access Module software
    Loaded: loaded (/usr/lib/systemd/system/oscam.service; enabled)
    Active: active (running) since Tue, 2012-11-27 21:10:17 CET; 1min 7s ago
    Process: 338 ExecStart=/usr/bin/oscam $OSCAM_ARGS (code=exited, status=0/SUCCESS)
    Main PID: 377 (oscam)
    CGroup: name=systemd:/system/oscam.service
    ├ 377 /usr/bin/oscam -b -c /etc/oscam
    └ 378 /usr/bin/oscam -b -c /etc/oscam
    Nov 27 21:10:17 server systemd[1]: Started An Open Source Conditional Acces...e.
    [mythtv@server ~]$ sudo systemctl status loopback.service
    loopback.service - Sasc-ng DVB Loopback Module
    Loaded: loaded (/etc/systemd/system/loopback.service; enabled)
    Active: inactive (dead) since Tue, 2012-11-27 21:10:28 CET; 1min 27s ago
    Process: 907 ExecStart=/sbin/modprobe dvbloopback num_adapters=3 (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/loopback.service
    Nov 27 21:10:28 server systemd[1]: Started Sasc-ng DVB Loopback Module.
    [mythtv@server ~]$ sudo systemctl status sasc-ng.service
    sasc-ng.service - Sasc-ng
    Loaded: loaded (/etc/systemd/system/sasc-ng.service; enabled)
    Active: failed (Result: exit-code) since Tue, 2012-11-27 21:10:47 CET; 1min 45s ago
    Process: 913 ExecStart=/usr/sbin/sasc-ng -D -j 0:3 -j 1:4 -j 2:5" -b 16M --sid-allpid --sid-nocache --cam-budget --cam-dir=/etc/camdir -l /home/mythtv/logs/sasc-ng.log (code=exited, status=0/SUCCESS)
    Main PID: 921 (code=exited, status=255)
    CGroup: name=systemd:/system/sasc-ng.service
    Nov 27 21:10:39 server sasc-ng[921]: [921] [general.error] failed open /etc...ry
    Nov 27 21:10:40 server sasc-ng[921]: [921] [general.error] failed open /etc...ry
    Nov 27 21:10:40 server sasc-ng[921]: [921] [general.error] failed open /etc...ry
    Nov 27 21:10:40 server sasc-ng[921]: [921] [general.info] loading cardclien...nf
    Nov 27 21:10:42 server sasc-ng[921]: [1062] Netwatcher thread started (pid=...6)
    Nov 27 21:10:42 server sasc-ng[921]: [921] [general.error] no keys loaded f...m!
    Nov 27 21:10:46 server sasc-ng[921]: [1098] SC housekeeper thread started (...2)
    Nov 27 21:10:47 server sasc-ng[921]: [1062] Netwatcher thread ended (pid=92...6)
    Nov 27 21:10:47 server systemd[1]: sasc-ng.service: main process exited, co.../a
    Nov 27 21:10:47 server systemd[1]: Unit sasc-ng.service entered failed state
    [mythtv@server ~]$ sudo systemctl status sasc-ng.service
    sasc-ng.service - Sasc-ng
    Loaded: loaded (/etc/systemd/system/sasc-ng.service; enabled)
    Active: failed (Result: exit-code) since Tue, 2012-11-27 21:10:47 CET; 2min 9s ago
    Process: 913 ExecStart=/usr/sbin/sasc-ng -D -j 0:3 -j 1:4 -j 2:5" -b 16M --sid-allpid --sid-nocache --cam-budget --cam-dir=/etc/camdir -l /home/mythtv/logs/sasc-ng.log (code=exited, status=0/SUCCESS)
    Main PID: 921 (code=exited, status=255)
    CGroup: name=systemd:/system/sasc-ng.service
    Nov 27 21:10:39 server sasc-ng[921]: [921] [general.error] failed open /etc/camdir/smartcard.conf: No such file or directory
    Nov 27 21:10:40 server sasc-ng[921]: [921] [general.error] failed open /etc/camdir/cardslot.conf: No such file or directory
    Nov 27 21:10:40 server sasc-ng[921]: [921] [general.error] failed open /etc/camdir/SoftCam.Key: No such file or directory
    Nov 27 21:10:40 server sasc-ng[921]: [921] [general.info] loading cardclient config from /etc/camdir/cardclient.conf
    Nov 27 21:10:42 server sasc-ng[921]: [1062] Netwatcher thread started (pid=921, tid=140074379712256)
    Nov 27 21:10:42 server sasc-ng[921]: [921] [general.error] no keys loaded for softcam!
    Nov 27 21:10:46 server sasc-ng[921]: [1098] SC housekeeper thread started (pid=921, tid=140074371319552)
    Nov 27 21:10:47 server sasc-ng[921]: [1062] Netwatcher thread ended (pid=921, tid=140074379712256)
    Nov 27 21:10:47 server systemd[1]: sasc-ng.service: main process exited, code=exited, status=255/n/a
    Nov 27 21:10:47 server systemd[1]: Unit sasc-ng.service entered failed state
    [mythtv@server ~]$
    Any ideas?
    Last edited by wdirksen (2012-12-10 19:54:43)

    After some head scratching it seems to be all good now. Considering there have been no replies to this I've come to wonder if I might be the only one with this issue. I could get it working somewhat using service files but never ideal, ex. sasc-ng only using a few of the entitlements from oscam because it started too quick etc. Anyway this might help a few and I'm hoping the linux savvy who find what I'm writing here painfully newbie like or flawed will reply and educate me a bit if what's provided here needs some sharpening up:
    1) Systemd was confusing the sasc-ng binary shorthand arguments with Linux init arguments and a few were misinterpreted if they were not nested into the environment specifiers. So the -l (log) was causing problems and -b (buffer) wasn't loading. To be safe I'm using only the sasc-ng longhand specifiers from now on (two "--" and more verbose) so that they can never be confused even if safely nested in an environment parameter. That means that /etc/conf.d/sasc-ng will also need to be changed to reflect this. I also decided to simplify the LOGFILE parameter to include the whole argument syntax.
    2) Oscam.service needs to be initiated with oneshot and RemainAfterExit=yes to make sure the delay (15 seconds in my config) gets counted out before sasc-ng initiates.
    [EDIT 12/12/2012: Initially I had a second TimeoutSec=2 after ExecStart in sasc-ng.service but this had no function. Turns out that it almost always does work without this delay but not always with my setup. Adding TimeoutSec=2 to mythbackend.service prior to ExecStart command does function and makes things init more consistant]
    sasc-ng.service
    [Unit]
    Description=Sasc-ng
    After=oscam.service
    [Service]
    Type=simple
    EnvironmentFile=/etc/conf.d/sasc-ng
    ExecStartPre=/sbin/modprobe dvbloopback $DVBLOOPBACK_ARGS
    TimeoutSec=2
    ExecStart=/usr/sbin/sasc-ng $SASCNG_ARGS --cam-dir $CAMDIR --log $LOGFILE
    [Install]
    WantedBy=multi-user.target
    /etc/conf.d/sasc-ng
    SASCNG_ARGS="--join 0:3 --join 1:4 --join 2:5 --buffer 16M --sid-allpid --sid-nocache --cam-budget"
    DVBLOOPBACK_ARGS="num_adapters=3"
    LOGFILE="/home/mythtv/logs/sasc-ng.log"
    CAMDIR="/etc/camdir"
    oscam.service
    [Unit]
    Description=An Open Source Conditional Access Module software
    After=network.target
    [Service]
    Type=oneshot
    EnvironmentFile=/etc/conf.d/oscam
    ExecStart=/usr/bin/oscam $OSCAM_ARGS
    TimeoutSec=15
    RemainAfterExit=yes
    [Install]
    WantedBy=multi-user.target
    mythbackend.service
    [Unit]
    Description=MythTV_backend
    After=sasc-ng.service
    [Service]
    Type=simple
    TimeoutSec=2
    Environment=MYTHCONFDIR=/etc/conf.d/mythbackend
    Environment=HOME=/usr/share/mythtv
    User=mythtv
    ExecStart=/usr/bin/mythbackend --logpath /var/log/mythtv
    [Install]
    WantedBy=multi-user.target
    I will make the related changes to the open-sasc-ng AUR package which I currently maintain
    Last edited by wdirksen (2012-12-23 14:40:43)

  • Motion 3.0.1 - cannot get point tracker to work properly with mask -Help

    I can't get the behavior called point tracker under shapes category to properly work with a mask. Motion either quits unexpectedly with the message or goes into "not responding" mode.
    Here are the steps: I set up the foreground and background shots in Final Cut Pro 6, then "sendto" motion (embeded checked).
    In Motion I create a simple mask around the foreground object (talking head). With the playhead at the start of the clip, I go the behaviours - shapes - point tracker and apply to mask.
    Next in Inspector I check tangents and then analyse. This can take a long time.. When it completes I save and go back to Final Cut. Final Cut then quits unexpectedly after about 10-15 minutes in beach ball mode. If I exit Motion and try to re-open the project, Motion also quits unexpectedly.
    What is going wrong? Please help?

    giggles200742 wrote:
     I have tried the forced removal, as per many instructions here. I did NOT dl the Beta 10.1.
    With "forced" removal, do you mean using the -force option?  This is only for the 10.1 beta removal; it has no effect on the uninstall of the released version.
    To uninstall the released Flash Player version, download the uninstaller from http://kb2.adobe.com/cps/141/tn_14157.html and save it to disk.
    Next, download the offline ActiveX installer http://fpdownload.adobe.com/get/flashplayer/current/install_flash_player_ax.exe; save it to disk.
    Now close all browser windows, then run the downloaded uninstaller.  If you want to make sure that everything related to Flash Player is removed, run it with the /clean option.
    Now reboot Windows, then run the downloaded installer.

  • Cant get Apple TV to work properly with older flat panel TV.

    I have an older flat panel, a 42" philips 42pf9630a. This one:
    http://www.retrevo.com/support/Phili.../278bh337/t/2/
    I plugged my brand new Apple TV into the HDMI and switched input on the TV. I can see the Apple TV main menu but it blips in and out, toggling between the main menu and snow. Obviously there's some sort of communication issue between the Apple TV and my Philips. I have successfully used this apple TV on several other TV's in the past couple of months.
    Is it because my TV is too old? Any suggestions on what I can do to fix this??
    Thanks for your help!

    Go in to the network and sharing center (in control panel), with the pc connected by wire. Right inder the little "map" of her network, it will list the available networks (probably only one listed), click customize and set it to private, you can also name it if you want so its more easily identified.
    Also, make sure file sharing and network discovery are "on".
    Message Edited by Frunple on 03-17-200705:50 AM

  • Why can't I get Constant Guard to work properly with firefox. I have done as constant guard asked, but find no constant guard add-on in firefox. I want to use

    I have been intouch with constant guard , have uninstalled and re-installed it but it doesn't work properly. when I go to your add-ons it does not show up and I want to use constant guard and firefox. Please help me so I don't have to go to another web browser. thanks.

    Previously if you install the latest version and run the live update it will run with the latest Firefox 26.
    [https://support.norton.com/sp/en/us/home/current/solutions/kb20100122090203EN_EndUserProfile_en_us;jsessionid=C82CB2618DC3ABEC3C2C2655D71B7AB2.4]
    However this is not the first time reported that there is trouble with this. The add on was broken in version 20 [https://bugzilla.mozilla.org/show_bug.cgi?id=694974]
    Please see this previous question for more details: [https://support.mozilla.org/en-US/questions/956200]
    Can you please provide the source of the add on?

  • Some times when I press the home button to read my finger the screen becomes black and it shows the Apple logo, this take a few seconds to get back the screen and this has been happening even 3 or 4 times in a row!   What should I do?

    Some times when I press the home button to read my finger the screen becomes black and it shows the Apple logo, this take a few seconds to get back the screen and this has been happening even 3 or 4 times in a row!
    What should I do?

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.

  • Up next doesn't seem to work properly with multiple speakers over airplay. The status bar on the computer shows the song playing, but not over airplay. When I restart the song it plays, but the same thing happens when the next song cues up. Any ideas?

    Up next doesn't seem to work properly with multiple speakers over airplay. The status bar on the computer shows the song playing, but not over airplay. When I restart the song it plays, but the same thing happens when the next song cues up. Any ideas?

    Hey briannagrace96,
    Welcome to Apple Support Communities! I'd check out the following article, it looks like it applies to your situation:
    iPod: Appears in Windows but not in iTunes
    http://support.apple.com/kb/ts1363
    You'll want to go through the following troubleshooting steps, and for more detail on each step follow the link to the article above:
    Try the iPod troubleshooting assistant:
    If you have not already done so, try the steps in the iPod Troubleshooting Assistant (choose your iPod model from the list).
    If the issue remains after following your iPod's troubleshooting assistant, follow the steps below to continue troubleshooting your issue.
    Restart the iPod Service
    Restart the Apple Mobile Device Service
    Empty your Temp directory and restart
    Verify that the Apple Mobile Device USB Driver is installed
    Change your iPod's drive letter
    Remove and reinstall iTunes
    Disable conflicting System Services and Startup Items
    Update, Reconfigure, Disable, or Remove Security Software
    Deleting damaged or incorrect registry keys
    Take care,
    David

  • Just moved my email from entourage to Mail. Having real problems with getting my signatures to work properly. When adding in a small company logo, windows computers only receive signature as an attachment. Am sending email as Rich Text. Any ideas on a fix

    Just moved my email from Entourage to Mail. Having real problems with getting my signatures to work properly despite sending email as Rich Text.
    When adding in a small company logo to the signature, PC's / windows computers only receive signature and logo as attachments.
    I've tried all possible fixes I can find including getting a PC user to format the logo but no joy. Has anyone experienced this and any ideas on a fix gratefully received.

    Send it as html so the signature is an image source URL

  • How can i get the speakers to work properly? they have a lot of static and scratchiness from them

    how can i get the speakers to work properly, they have a lot of static and scratchiness coming from them?

    I found my answer in this thread:
    https://discussions.apple.com/message/16646999#16646999

  • How do I get "Vanishing Point" to work properly on iMac Retina 5k

    How do I get "Vanishing Point" to work properly on iMac Retina 5k? When I "render grid to photoshop" the grid is not in right place and scale. I'm using latest version of CC.

    OMG! What a load of crap and thank you for posting this. I spent 3 solid hours to do something that I have done hundreds of times before, apply a Vanishing Point filter. I kept thinking I had some non-default setting on and was literally screaming at my new iMac. I NEVER thought it would be the cause. It was actually easier to reinstall CS5 on an older Mac and just do the stuff I needed. This is crazy. I fully get why Adobe doesn't support this yet but to not make a huge deal out of it so people know about it is just wrong. When I searched for Vanishing Point on the Forums, this thread showed almost the bottom of the first page. It should be stuck to the top until they fix it.

  • Hi friends, I'm having troubles with my Ipad 2. I was working with it and suddenly the screen distorted. Now it is not possible to get it back to work properly. In fact, the screen is now black and nothing I have done makes the Ipad works again. Thanks

    Hi friends, I'm having troubles with my Ipad 2. I was working with it and suddenly the screen distorted. Now it is not possible to get it back to work properly. In fact, the screen is now black and nothing I have done makes the Ipad works again. Please Help. Thanks in advance.

    I think you should make an Genius Appointment.
    Genius Appointment
    http://www.apple.com/retail/geniusbar/

  • Why can't I get open type features to work properly with an open type font on InDesign CS5.5?

    I installed a very complete set of styles of an opentype font with Font Book – Mac OS X 10.9.4 – but when I tried to format a sample text on InDesign CS5.5 I noticed that I could not use the opentype features on the Open Type menu as I usually do.
    Could anyone help me, please?

    It's ffScala Sans, but has separate files for small caps, figures, etc.
    I was trying to use small caps, lining figures and superscripts when I
    noticed none of the OT features are available.
    2014-07-30 21:56 GMT+01:00 Miguel Sousa <[email protected]>:
        Why can't I get open type features to work properly with an open type
    font on InDesign CS5.5?  created by Miguel Sousa
    <https://forums.adobe.com/people/MiguelSousa> in Adobe Type - View the
    full discussion <https://forums.adobe.com/message/6598614#6598614>

  • HT4528 I installed the new update and it is frozen with a picture of the charger head, an arrow pointing to a iTunes image. How do I get my phone to work properly?

    I installed the new update and it is frozen with a picture of the charger head, and an arrow pointing to a iTunes icon. How do I get my phone to work properly?

    What happened when you tried to restore and update the iPod?

  • TS4002 Icloud Mail doet not work properly with PC since a few days!!!

    Icloud Mail doet not work properly with PC since a few days!!!

    If you can't solve your issue and no one in the community can help, contact support to speak with a tech support agent at (800) 631-3811.
    - Peter

  • Any suggestions for how to get my logic keyboard working properly for FCE?

    Any suggestions how to get my logic keyboard working properly for FCE? I can't use some of the shortcuts - insert, overwrite etc. maybe the system settings aren't correct?

    This normally happens when debris builds between the trackball and the rollers on the inside of the mouse.
    Turn the mouse upside down and rub the trackball vigorously on a sheet of paper or microfiber cloth to try and free it up.
    Regards,
    Captfred

Maybe you are looking for

  • Issue Action links,Column sorting in OBIEE(11g) 11.1.1.7.0

    Hello everyone, I want to provide the feature column sorting to my users but i dont want to provide any feature to users when they click on right mouse button.When we click on right mouse in action link column value it is giving the "action links","i

  • How do I get Special character Euro symbol € to display ?

    Hi, How do I get the euro symbol € to display in Flash from PHP file created in DW ?. It does not display it properly. I have simplified the PHP code I have is: <?php $msgtoflash = "This is the Euro Symbol &#8364"; print ("&Databaseinfo=$msgtoflash")

  • External samsung monitor slow

    I have just bought a SAMSUNG TA300 - 27' monitor. I have two problems - the screen seems great when playing video. But is not sharp compared to the LCD on MBP. I have already done all the obvious and suggested on the forums - that is use DVI to DVI c

  • Need help Adding Elements By Expressions for AS/400

    I just got BI Publisher installed and am having trouble finding the correct manuals to use for creating SQL's and Expressions. I am using an AS/400 and JD Edwards. I can create a Data Set and formula fields and can show all of it in a report. What I

  • My imac 10.6.8 makes 3 burps-beeps.

    My imac 10.6.8 Snow Leopard makes 3 burps-beeps while running (not at start-up) Nothing goes wrong or happens, just makes the 3 weird noises while sitting with a web site open. How do I stop this. Only happens about 2 to 3 times a day when it does th