/etc/issue

Hi. Can someone paste the content of /etc/issue file please? I've replaced the content by ASCII picture now i want to go back to default configuration - when login and logout screen is cleared each time. THNX

ABSROOT=. abs core/filesystem
wget -nv --content-disposition "http://repos.archlinux.org/wsvn/packages/filesystem/trunk/issue?op=dl&rev=0"
[some funky svn line I'm too lazy to figure out]

Similar Messages

  • Ssh: /etc/issue display between login and password prompts

    Hi All,
    I currently have ssh installed on one a Solaris 10 (non-global) zone. I have configured the sshd_config to run on protocol 2 and unhashed the 'Banner /etc/issue' parameter.
    When I attempt to log into this zone via ssh I get (in this order)...
    1. A login prompt
    2. The message I have put in /etc/issue
    3. A password prompt.
    Is there some further configuration I need to consider here?
    Any help would be great.
    Thanks.

    Sorry, it's probably worth mentioning that what i would ultimately like to do is have the message in /etc/issue display itself prior to asking for a login, not after as it currently is.
    Thanks.

  • Panel template, polymorphism, fitting etc. issues

    Having written quite a few LabView applications, I wonder if anyone
    (including, maybe, LV development team) can answer the following questions:
    1. I have two programs with the same number (and matching type) of controls
    on the front panel and slightly different diagrams. The _layout_ of the
    controls on one panel is different from the layout on the other one (i.e.,
    size, position, shown/hidden etc). I need to change the look of one control
    panel as a whole to the look of the other one. How can I do that without the
    tedious work of saving individual controls from one panel and applying them
    to the other one, then repositioning etc.? Can a whole front panel be saved
    as a single control with a possibility to apply it later to different VI's?
    2. Is it possible to create a VI with polymorphism inputs/outputs? Why not?
    When it will be (if it will)?
    3. The nonlinear (Levenberg-Marquardt) fitting algorithm supplied with LV5.x
    is based on the formula processing and looks nicer than the (unfortunate)
    similar creation put in the previous versions. Nevertheless, it works at
    least 10 times slower than the formula-node based predecessor. This is a
    huge difference as far as any serious fitting is concerned. Just wondering -
    is NI going to do anything about it?
    4. How about 2-d nonlinear fitting algorithm (for the functions of more than
    one variable)? Any plans to include it in the (pricey) advanced analysis
    package?
    4. Why low-levels read/write VI's for other than I16 and single precision
    data types are not included? While using the I16 (or even the self-made
    modified version I32) to read data, I always have some kind of aliasing
    effect: few bits spikes in unpredictable locations. How come? IDL / Matlab
    reads same data just fine.
    5. Running a Save Characters to File VI in a loop with sequential saving of
    data (adding characters to an external file) works well only if this VI
    execution takes most of the loop time (i.e., LV is sitting on it and waiting
    for completion). If data acquisition or some other processes are running in
    the loop too (Win9x), the results of this data saving are generally
    unpredictable. How do you go about that?
    I looked through the postings, but did not find the answers. Maybe, someone
    could help?
    Michael

    My responses are marked with ***s.
    > Having written quite a few LabView applications, I wonder if anyone
    > (including, maybe, LV development team) can answer the following questions:
    >
    > 1. I have two programs with the same number (and matching type) of controls
    > on the front panel and slightly different diagrams. The _layout_ of the
    > controls on one panel is different from the layout on the other one (i.e.,
    > size, position, shown/hidden etc). I need to change the look of one control
    > panel as a whole to the look of the other one. How can I do that without the
    > tedious work of saving individual controls from one panel and applying them
    > to the other one, then repositioning etc.? Can a whole front panel be saved
    > as a single control with a possibility to apply it later to different VI's?
    *** You can't save VIs as controls, and LV doesn't yet support nested panels.
    What you can do for appearance cases, like what you describe is to use strict
    typedef controls. Any change to the control definition will propagate to
    all uses of the control, like the two panels that you mention.
    >
    > 2. Is it possible to create a VI with polymorphism inputs/outputs? Why not?
    > When it will be (if it will)?
    *** LV is a compiled language, and thus the datatypes must be known and cannot
    change once the VI is compiled. It is possible to use generic datatypes
    like strings, which most other datatypes can be converted to, and then the
    VI can retrieve the information from the string. This isn't polymorphism,
    but it does allow for similar affects. Despite what I said earlier,
    polymorphism isn't impossible in LV or in compiled languages. Up till now
    we haven't figured out how we wanted to support it without making the diagram
    really complicated. Perhaps it will show up pretty soon?
    >
    > 3. The nonlinear (Levenberg-Marquardt) fitting algorithm supplied with LV5.x
    > is based on the formula processing and looks nicer than the (unfortunate)
    > similar creation put in the previous versions. Nevertheless, it works at
    > least 10 times slower than the formula-node based predecessor. This is a
    > huge difference as far as any serious fitting is concerned. Just wondering -
    > is NI going to do anything about it?
    >
    > 4. How about 2-d nonlinear fitting algorithm (for the functions of more than
    > one variable)? Any plans to include it in the (pricey) advanced analysis
    > package?
    >
    *** I'd suggest that you contact technical support about these issues.
    This is
    over my head.
    > 4. Why low-levels read/write VI's for other than I16 and single precision
    > data types are not included? While using the I16 (or even the self-made
    > modified version I32) to read data, I always have some kind of aliasing
    > effect: few bits spikes in unpredictable locations. How come? IDL / Matlab
    > reads same data just fine.
    *** The functions for I16, Dbl, and strings are included as high level
    functions, and only support a fraction of the file I/O functionality.
    If you opent the Advanced folder in the lower right of the File I/O
    palette, you will find a general File Read that can be used to read
    any sort of file along with seeks, flushes, etc. As to the problem you
    are having with a particular file, you don't give much information to
    go on. I'd suggest providing the data file and VIs to tech support
    and let them help you with it. Many people use LV to read and write
    files, and it does work if used in the correct manner.
    >
    > 5. Running a Save Characters to File VI in a loop with sequential saving of
    > data (adding characters to an external file) works well only if this VI
    > execution takes most of the loop time (i.e., LV is sitting on it and waiting
    > for completion). If data acquisition or some other processes are running in
    > the loop too (Win9x), the results of this data saving are generally
    > unpredictable. How do you go about that?
    >
    *** Again, there isn't much to go on here. If you are using globals or
    locals, there can be race conditions in the diagram that can cause all
    sorts of problems that change as you try to debug them. If this sounds
    familiar, the first thing to do is to try writing the diagram with fewer
    locals/globals, and bone up on what race conditions are. Again, the high
    level VIs aren't as efficient, they open and close the file each time.
    You can get much faster results using the Advanced functions. If you
    are having problems, contact support and provide them with VIs.
    Greg McKaskle

  • Separate section for installation/activation/etc. issues

    I'd suggest to add a separate section (subforum) for each (or most of) the software products, dealing exclusively with issues pertaining to installation/deinstallation/activation/deactivation/installing 64bit version on.../using product with ... graphics card/etc.etc...
    For example, since the launch of Photoshop CS4, the main Photoshop forum section has been cluttered with installation/activation issues to a point, where other issues go unnoticed and people lose interest in the forum. During the last days, I've read at least 2 comments in the Photoshop section, that they have decided to stop using the forum for exactly this reason.
    I'd have to look, but I can surely retrieve these comments, if need be ...
    kind regards.

    such a nonsense!
    There is a huge difference in
    USING the program   vs.  installing/deinstalling (etc.) it. Don't say most of the people here are dumb!
    If Joe and Jane sixpack wouldn't know  that it's an installation issue, how come that they  are capable of  saying so in the thread title ??
    And just look at today's Photoshop thread titles (all on the first page):
    Installing Photoshop CS4 on a 64 bit Laptop. Tick Box?
    Adobe Photoshop CS4 says license expired on first day of usage.
    CS4 will not deactivate (Updated)
    I can't install adobe cs4 photoshop, windows?
    CS3 Extended activation error 194:8
    Photoshop CS4 require system
    Unable to get Photoshop CS2 to work
    Increased RAM stopped my loading of Photoshop...why?
    no "help/updates" on new install on vista
    Cannot get download manager to work
    BUG: Toggling interface on/off causes missing menu toolbar items and icons in Photoshop CS4!
    Photoshop CS4  Multiple issues
    Strange problem in PS CS4 32-bit only
    Crashes when loading photo
    CS2 Photoshop 'Adobe Help Center ' will not open (Updated)

  • Delete Airdisplay, iScreen, etc to solve drag and drop, white screen, etc issues

    Deleting the screensharing program (in my case iscreen, guess airdisplay, etc are the same) did solve all my issues -- as mentioned before drag and drop did not work, white screen in several programs, not menu bar in full screen, etc.
    Lion is now running smoothly - so everybody having the same issue just delete airdisplay and co :-))))))

    I would:
    a) check on the email provider's website to check if it had copied there, and deal with it. Your mention of bandwidth implies this is an IMAP-connected account.
    b) close Thunderbird, open its [https://support.mozilla.org/en-US/kb/profiles-tb?esab=a&s=profiles&r=1&as=s profile] and delete the offending folder there. You need to browse your profile for a while to understand its structure before doing anything rash.
    On the whole, I discourage users from dragging folders about as you have done. By all means drag the ''contents'' (better yet, use multi-select, then right-click and "copy to" or "move to") but moving ''folders'' is IMHO an undefined operation with unpredictable outcomes. I've heard of users moving a folder from one account to another and finding that it still associates with (i.e. "belongs to") the original account.

  • GHC , haskell-x11, xmonad etc issues.

    Hi,
    I upgraded ghc yesterday (or the day before, not sure) and when rebuilding xmonad I have some issues.
    When upgrading ghc I had this message:
    Proceed with installation? [Y/n] y
    checking package integrity...
    (1/1) checking for file conflicts [##############################################] 100%
    ==> Unregistering cabalized packages...
    ==> Done.
    (1/1) upgrading ghc [##############################################] 100%
    ==> All cabalized and yaourt-installed packages need to be reinstalled now.
    ==> See /usr/share/haskell/ and ghc-pkg list --user for a tentative list of affected packages.
    I assume reinstalling them using pacman/yaourt is sufficient. When installing haskell-x11 for instance I have these messages:
    Targets (1): haskell-x11-1.4.5-1
    Total Download Size: 0.00 MB
    Total Installed Size: 3.96 MB
    Proceed with installation? [Y/n] y
    checking package integrity...
    (1/1) checking for file conflicts [##############################################] 100%
    ghc-pkg: cannot find package X11-1.4.5
    error: scriptlet failed to execute correctly
    (1/1) upgrading haskell-x11 [##############################################] 100%
    Reading package info from stdin ... done.
    X11-1.4.5: dependency base-3.0.3.0 doesn't exist (use --force to override)
    error: scriptlet failed to execute correctly
    If you like this package, please install aurvote
    and vote for its inclusion/keeping in [community]
    As a consequence haskell-x11 is not available when recompiling xmonad. I have similar messages for xmonad:
    Targets (1): xmonad-0.8.1-1
    Total Download Size: 0.00 MB
    Total Installed Size: 2.93 MB
    Proceed with installation? [Y/n] y
    checking package integrity...
    (1/1) checking for file conflicts [##############################################] 100%
    ghc-pkg: cannot find package xmonad-0.8.1
    error: scriptlet failed to execute correctly
    (1/1) upgrading xmonad [##############################################] 100%
    Reading package info from stdin ... done.
    xmonad-0.8.1: dependency X11-1.4.5 doesn't exist (use --force to override)
    xmonad-0.8.1: dependency base-3.0.3.0 doesn't exist (use --force to override)
    xmonad-0.8.1: dependency containers-0.2.0.0 doesn't exist (use --force to override)
    xmonad-0.8.1: dependency directory-1.0.0.2 doesn't exist (use --force to override)
    xmonad-0.8.1: dependency process-1.0.1.0 doesn't exist (use --force to override)
    xmonad-0.8.1: dependency unix-2.3.1.0 doesn't exist (use --force to override)
    error: scriptlet failed to execute correctly
    If you like this package, please install aurvote
    and vote for its inclusion/keeping in [community]
    When I downgrade to ghc in extra and reinstall these packages they work fine, and don't have the above dependency error messages. The only error message I keep having is:
    error: scriptlet failed to execute correctly
    But this might have been there before. I have no experience in actually using ghc, so maybe I'm missing something?

    It's the right idea, but technically not feasible currently. [community] is maintained by a different set of people than [core], [extra] and [testing] (not only that, they are technically implemented differently at the moment, but devs are working on that about now). So only packages from [core] and [extra] can go through [testing] at present. Hence there is always only one version of a package in [community], and naturally it needs to be in sync with [core/extra], not [testing]. So currently it's assumed that people that use testing are technically skilled enough to know (and know how) to rebuild some community packages that need it.

  • Syncing contacts,calander etc issues...

    So yesterday while trying to sync my iPhone 3g the sync process seemed to be stuck in an infinite loop of "syncing contacts" (I actually left it for 10min). I proceeded to cancel the sync and then my iTunes froze, I exited and downloaded the new iTunes hoping this would fix it.
    Now whenever I sync it takes about 10min to sync contact and 10min to sync calander even though there is nothing new. It's only this "info" section that seems to have messed up.
    Any help would be appreciated.
    -Image

    Hello, Welcome to Apple Discussions.
    You may wish to check out the following article below. Post back if you need further assistance.
    Troubleshooting iPhone and iPod touch contact and calendar syncing via USB on Windows
    http://support.apple.com/kb/HT1692

  • Audio Console, etc issue solut

    I searched high and low for a reason as to why I couldn't use the Audio Console (device not present or supported errors) and my card not being recognized by windows. I found out that you must have COM+Event System and DCOM Server Process services running (on Automatic) for these to work. Hope this helps a few people because it was driving me crazy for quite a few hours.

  • Keyboard/trackpad issues - something new i noticed

    I'm using my MacBook Pro (non unibody) in no light, and I've been having the repeating keys/touch to click not working/etc issues for a while, but now I notice something new that could have been going on ever since I've had these issues. Typically when Tap to Click stops working, I go reselect it in System Preferences. But it stops working randomly. Now that I'm using it without any light on, I noticed that right before/as things start to mess up, the caps lock light blinks once, every time. Pretty odd.

    HI,
    Try resetting the PRAM/NVRAM
    http://support.apple.com/kb/HT1379
    Carolyn

  • Issue  while sending mails using classes

    Hi Experts ,
    i have one issue when i try to send mails using classes cl_document_bcs,cl_cam_address_bcs,cl_bcs etc
    ISSUE :
    i put some data in selection screen and i get some output ( say i got 5 records), i select 3 records and press some button to trigger mail and mail is send, and now again the OUTPUT screen is  shown with  sended records but we can not send these records again ............ now i selcect remaining two records  and press button to trigger mail and THIS TIME MAIL IS NOT SEND.
    amd my code is :
    CREATE OBJECT l_document.
      CREATE OBJECT l_recipient.
      TRY.
          cl_bcs_convert=>string_to_solix(
          EXPORTING
          iv_string = fp_wa_output
          iv_codepage = fp_v_code_page
          iv_add_bom = 'X'
          IMPORTING
          et_solix = l_wa_output_binary
          ev_size = l_v_size ).
          l_send_request = cl_bcs=>create_persistent( ).
    *-->Creating Document
          l_document = cl_document_bcs=>create_document(
          i_type = 'RAW'
          i_text = fp_it_content[]
          i_subject = fp_text_48 ) .
    *-->Adding Attachment*
          CALL METHOD l_document->add_attachment
            EXPORTING
              i_attachment_type    = fp_text_049
              i_attachment_size    = l_v_size
              i_attachment_subject = fp_v_file
              i_att_content_hex    = l_wa_output_binary.
    *-->Add document to send request*
          CALL METHOD l_send_request->set_document( l_document ).
    *    do send delivery info for successful mails
          CALL METHOD l_send_request->set_status_attributes
            EXPORTING
              i_requested_status = 'E'
              i_status_mail      = 'A'.
    *-->Get Sender Object
          l_uname = sy-uname.
          l_sender = cl_sapuser_bcs=>create( l_uname ).
          CALL METHOD l_send_request->set_sender
            EXPORTING
              i_sender = l_sender.
          LOOP AT fp_s_mail INTO l_wa_mail.
            l_v_objid = l_wa_mail-low.
            l_v_mail = l_v_smtpadr.
            TRANSLATE l_v_mail TO LOWER CASE.
            l_recipient = cl_cam_address_bcs=>create_internet_address( l_v_mail ).
            CALL METHOD l_send_request->add_recipient
              EXPORTING
                i_recipient  = l_recipient
                i_express    = 'X' .
    *            i_copy       = ' '
    *            i_blind_copy = ' '
    *            i_no_forward = ' '.
          ENDLOOP.
    **-->Trigger E-Mail immediately*
    *      IF fp_send_all EQ 'X'.
    *        l_send_request->set_send_immediately( 'X' ).
    *      ENDIF.
          CALL METHOD l_send_request->send(
          EXPORTING
          i_with_error_screen = 'X'
            RECEIVING result = l_v_sent_to_all ).
          BREAK TARK.
          IF l_v_sent_to_all = 'X'.
            MESSAGE i000 .
          ENDIF.
        COMMIT WORK.
        CATCH cx_document_bcs INTO l_bcs_exception.
        CATCH cx_send_req_bcs INTO l_send_exception.
        CATCH cx_address_bcs INTO l_addr_exception.
        CATCH cx_bcs INTO l_exp.
      ENDTRY.
    thanks in advance
    rahul

    Every time when i choose other network or dongle to send those mails it gets sent.
    As per the description, seems it's an issue related to this specific network. Probably, they've adjusted their security policy, like blocked some port numbers, etc.
    You might need to contact the support of your ISP to confirm what SMTP settings you need. Check port number, and security settings.
    By the way, this is the forum to discuss questions and feedback for Windows-based Microsoft Office client. Since your query is directly related to
    Office for mac, I would suggest you to post in the forum of
    Office for Mac, where you can get more experienced responses:
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011?tab=Threads
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Yum install issue

    Hi OEL Experts,
    I am trying to install glibc.i686 on my OEL 6 x86 64bit machine, got below error:
    [root@oeltux ~]# yum install glibc.i686
    Loaded plugins: refresh-packagekit, security
    http://linuxdownload.adobe.com/linux/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 7 - "couldn't connect to host"
    Trying other mirror.
    Error: Cannot retrieve repository metadata (repomd.xml) for repository: adobe-linux-x86_64. Please verify its path and try again
    Below is my OS environment:
    [root@oeltux ~]# cat /etc/issue
    Oracle Linux Server release 6.4
    Kernel \r on an \m
    [root@oeltux ~]# uname -a
    Linux oeltux.idc.oracle.com 2.6.39-300.28.1.el6uek.x86_64 #1 SMP Tue Feb 5 22:51:31 PST 2013 x86_64 x86_64 x86_64 GNU/Linux
    Your help will be really appreciated.
    Thanks,
    Tapas

    Hi,
    Fist verify your internet connection (ping any website)
    If you have dhcp server (verify the GATEWAY Address and DNS Address)
    If static configuration
    FIX IP Address in the file /etc/sysconfig/network-scripts/ifcfg-eth0   
    FIX GATEWAY Address in the file /etc/sysconfig/network
    FIX DNS Address in the file /etc/resolv.conf
         => Now verify your connection
         2. Second verify your YUM repository configuration. (it's like Dude sed)
    It seems you your YUM repository configuration is not setup properly. I suggest to check the content of /etc/yum.repos.d/. Since your hostname "oeltux.idc.oracle.com" suggest you are working at Oracle, you might rather want to get in touch with internal support. Otherwise instructions provided at http://public-yum.oracle.com/ should work too.
    and your system use the uek6.
    [root@oeltux ~]# uname -a
    Linux oeltux.idc.oracle.com 2.6.39-300.28.1.el6uek.x86_64 #1 SMP Tue Feb 5 22:51:31 PST 2013 x86_64 x86_64 x86_64 GNU/Linux
    Verify that /etc/yum.repo.d/public-yum-ol6.repo looks like:
    [ol6_UEK_latest]
    name=Latest Unbreakable Enterprise Kernel for Oracle Linux $releasever ($basearch)
    baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6
    gpgcheck=1
    enabled=1
    I hope this can help you
    Best Regards
    Message was edited by: WadhahDAOUEHI [correct word]

  • Audio clip issues

    In testing my site, several people have had trouble opening it, it freezes, etc., one person said it appeared to be searching for something the computer didn't have. I'm guessing it has to do with audio clips I have on several pages. I've read through some previous posts on this, could someone give me the summary on what's the best solution for the Quicktime vs other audio players, etc issue. Bottom line is i really like having those audio clips in there; it would be one thing if some weren't able to listen to them, but if it's the cause for pages freezing and people not knowing how to correct it, that's obviously no good.
    I'd appreciate any feedback. the site is www.5thingsonline.com
    thanks

    As far as QT being a liability if the PCs don't have it installed they may not be inclined to install it so the audio will not be listened to.
    You can add the audio to your page using flash players like the ones on this demo page: Audio Players. More players and examples of audio jukeboxes can be found at this page of Roddy's iWeb for Musicians site: Music Players. This way all platforms will be able to listen.
    Happy Holidays

  • CDP and DeltaCRL locations expiring on Issuing CA

    This has been a crash course in PKI and I am taking over for a previous sysadmin which has made it even more interesting. I'm hoping that you smart folks can help me
    to better understand my configuration so that I can correct an issue with expiring/expired locations. Otherwise, I fear I might bugger it up even more.
    Overview:
    Offline Root CA - 2008 R2 SP1 - Not joined to the domain.
    Online Issuing CA #1 - 2003 R2 SP2 - Joined to the domain (was supposed to be retired, I believe). I don't see any issues with this server.
    Online Issuing CA #2 - 2007 R2 SP1 - Joined to the domain (was supposed to replace #1, I believe). This one has items that are expired/expiring.
    I had a call that a user was receiving a certificate error when trying to connect to our MS Lync server, and when I checked the Online Issuing CA
    #2 server, I notice a pile of expired/expiring locations. I did a bunch of searching/reading and came to the conclusion that I would have export a new Root CA cert from my offline Root CA (Right-click Revoked Certificates, All Tasks, Publish the .CRL), manually
    copy it over to the online Issuing CA (C:\Windows\System32\CertSRV\CertEnroll), restart the ADCS service and then use the command Certutil -addstore -f CA cert.crl and
    then update AD with Certutil -f -dspublish cert.crl.
    That seemed to clear the expiry notices for the "Issuing CA 2 (V0.0)", but the following scrubbed screen shots are what I'm left with.
    On the first, when the Root CA branch is selected, you can see "CDP Location #2 Expired". It expired last month. This is a HTTP location
    (one of 2 HTTP locations that are present):
    In the second, when the "Issuing CA (V7.0)" branch is selected, you can see a bunch of items expiring:
    The AIA locations and CA Certs themselves won't expire for 19 more years.
    I'm uncertain as to why we have 2 Issuing CA branches under the Root CA (V0.0 and V7.0?), and very curious as to what I am missing or what I may have
    done incorrectly to have expired/expiring items remaining.  I realize that the MMC snapin isn't totally reliable, so I'm looking for ways to verify the integrity of PKI across the domain and be sure that I haven't messed anything up. I would also like
    to retire the old CA, but want to make sure I decommission it in such a way that there is no impact to the production environment.
    Any insight would be more than appreciated.

    Can you check again which physical directory is associated specifically with CDP #2 and if you copied the new CRLs there? Any directory could theoretically be used as a CDP - so you need to check the virtual dir in pkiview.msc or the Issuing CA's cert.,
    and then find the corresponding dir in IIS Manager.
    One thing to note: A CA creates more than one CRL if it had been renewed once with a new key. I f you run certutil -crl at the Root more than one file is created in the local CertEnroll directory (CA.crl, CA(1).crl etc.) How many
    CRL files have been created at the same time are in the Root's CertEnroll directory?
    You need to publish all those files to all CDPs (also holds for ldap). In case you copied a single CRL file to the web server - is one of the others maybe missing? Compare the file suffix of local files and the URL referred to in pkiview.msc
    - is it CA.crl, CA(1).crl in both cases?
    If it is really the same web server and same file and OK in the local directory but expired when retrieved over HTTP I can only imagine it is an odd DNS / caching / proxy etc. issue.

  • Replacement issue file

    If you've ever noticed that when you're box has completed its boot sequence, it clears the screen? Or that little line that says "ArchLinux 0.7 (blah)..." right before you login. Well that is replacable and I've made a custom color issue file to match the way the init scripts colors look:
    http://www.theradixpoint.com/dist/issue
    Just replace your /etc/issue with this one and log in and out on your virtual consoles to see the difference. You can also cat the file to your term to see it.

    The folks at the Genius Bar would be the ones who would determine if your phone will be replaced under warranty. You would not be bothering them by making an appointment. It's what they are there for. The appointment itself won't cost you anything.
    Best of luck.

  • BIOS UPDATE for GE 60 - GE70 0ND (GPU BOOST ISSUE)

    I and some of my friends have GPU boost issue with MSI GE60 and GE70 0ND ... (GTX 660M) in TURKEY
    We also have a forum for this issue and number of members increases day by day.
    We have E16GAIMS.513 BIOS in our notebooks.
    One of our friends sent his laptop to technical service and they downloaded newer BIOS 514 (WIN8)and this GPU issue is solved.
    However, since there is no update for 514 BIOS in download tab, we cannot update our BIOS and GPU issue continues.
    Can you upload this newer 514 BIOS update to download tab as soon as possible.
    We are expecting your positive answers.

    Quote from: pshywar on 30-March-13, 04:35:40
    I think we should wait that this update is uploaded to main website in order to prevent some compatibility or etc issues.
    BIOS update is a important issue and it can causes irrecoverable problems. So, we continue to wait
    That's a good point; while I got back I was thinking of flashing it but had a re-read of the step-by-step guide before doing so and thought otherwise. Best wait for the official one, that is if they release it.
    I'm also going to contact the customer service support to have this included in their download section. I made enough noise for them to update the HD Audio drivers, so here's to this getting the inclusion as well.
    Quote from: Prema on 30-March-13, 05:59:24
    It was a test, they may never publish it...
    But they included the latest BIOS in the Topic Creator's friend's Notebook. Hopefully, if enough noise is made, they will publish it.
    Quote from: darkhawk on 30-March-13, 09:47:09
    Here's my thoughts. And you probably won't like them.
    Try upgrading using that BIOS. What's the worst that could happen? You brick your machine? Make sure everything is backed up, and try it. You want the VBIOS portion fixed so it boosts? Well.....try that BIOS. And if it doesn't work or bricks the machine, you'll need to send it back anyway and they will probably load the BIOS on it then anyway.......
    Either way, it's a win (albeit, in 1 situation it might take a few weeks....). You'll get what you want.
    I obviously can't try it as I don't have a GE60.....
    I think it might be best to just wait for the official one, as the warranty services in Australia are absolutely poops, be it any make or brand - most companies are not obligated to have the customer's best interest at heart, so if they can get away with voiding it, they will -  so I'm not too keen to test this unofficial one lest it affects my warranty.
    Thanks for your input though, nonetheless, darkhawk.

Maybe you are looking for

  • Error in BOM Dependency update

    Hi Experts, I have developed a BDC for BOM dependency it is working fine in foreground and it is throwing error in background, I am attaching the error screen and the code, please let me know where I am going wrong:

  • Grey interface text is unacceptable in a professional product and workflow.  Can this be changed?

    I just updated to Acrobat DC on my work computer.  All of the menues and interface text look like they are greyed out and disabled, but it is simply that the interface has been unilaterally changed to this difficult to read low-contrast mess. The int

  • Adobe acrobat help viewer

    How does one configure an Adobe Acrobat executable other than the one included with the Test Stand CD to read the help files. I want to use Acrobat 4.0, not Acroread 4.05. Once installed, Test Stand tries to launch Notepad to view the help files. Tha

  • Windows 7 32-bit and Tx

    I had read quite a lot of posts here and I found that most of the questions asked in here were about 64-bit windows.Only very few were about 32-bit windows 7. I have a Tx and I had upgraded my OS to windows 7 32-bit a few days ago. The messages here

  • BGP - Route advertising

    I have two routers that has a static route configured for the LAN side which re-distributes via BGP to the WAN. One of the routers does not have anything connected to LAN subnet/ interface. Other one is live. Will this create a routing conflict in th