How can you tell where the time source is on solaris 9?

we have a time synch issue that needs resolving and I have to check where each server involved gets its time from.
I know in windows you just run a query of net time /querysntp
what do you do on solaris 9?

philbo_baggins wrote:
we have a time synch issue that needs resolving and I have to check where each server involved gets its time from.
I know in windows you just run a query of net time /querysntpWindows has a default method of time synchronization, and your query may give you information about that. But there are other ways of doing time synch, even on windows.
what do you do on solaris 9?Solaris 9 doesn't have a default time synchronization method set up out of the box. You have to configure it. So it depends on what you've configured. NTP is common, but not the only method.
If you're using NTP then 'ntpq -pe' can give you information about what's happening at this point in time. I don't know whether you'd prefer that or perhaps looking at the overall configuration.
Darren

Similar Messages

  • How can I tell where the OS (Snow Leopard) is? I'm not sure if it is on the SSD or the regular HD.

    How can I tell where the OS (Snow Leopard) is? I’m not sure if it is on the SSD or the regular HD. I just had a rough weekend trying to back things up with Time Machine and I think the OS was copied to the regular HD, or could be in two places? How do I find where the OS is? If it is on the regular drive I want to put it on the SSD.
    Thank you very much!

    Some recent systems don't observe that convention - not sure at the moment about Snow Leopard but I have a feeling it doesn't.
    Copy the following into the AppleScript Editor (in Applications/Utilities)
    set dsk to the path to startup disk as string
    display dialog dsk
    click the 'run' button.

  • Referenced masters:  How can you tell where a photo's master is?

    After reading many recommendations on this site, I have set up my main library on my internal HD with referenced masters on an external HD.
    Now I need to import a job which I shot out of state and which was saved as a managed library on my MBP. So I copied it to an external drive and then Imported it into the main A3 library. That worked just fine but it seems like it copied all the masters as well as the versions from that new library into the main one.
    Before I try to relocated them, how can I tell where the master for a particular photo is located?
    Thank you very much.
    Bo

    Versions are always in the Library (they are text instructions saved to a file and applied on-the-fly to the Master in order to produce the image on screen (mostly)). Masters are either in the Library (in which case they are "Managed"), or not in the Library (in which case they are "Referenced"). The Library is a "package". A package is a container of files which shows as a single file to the user.
    Badges tell you the status of the Master on which the Version is based. No badge = Managed. Referenced Masters show a badge. Off-line Referenced Masters show a modification of this badge. Versions with Missing Masters show yet another version of this badge.
    Badges can be toggled to show or not via the Metadata Overlays. All seven of the Metadata Overlays can be customized.
    Use the filter Rule "File Status" to filter for "Managed", "Referenced", "On-line", "Off-line", and "Missing".
    If you want to move all Manage Masters to your external drive, in Photos view filter using the "File Status" Rule set to "Managed", then select all and "File→Relocate Master".

  • How can you tell who the original sender of a group text is on an iPhone 5, when all that appears is a list of recipients in no particular order

    how can you tell who the original sender of a group text is on an iPhone 5, when all that appears is a list of recipients in no particular order? I can't seem to identify the sender in the details list.

    Start a separate thread to the original sender.

  • How can you tell where a call is actually coming from not just where the phone was activated?

    me and my wife check our account and we are wondering how we can find out where our son is calling from it only puts the town where we originally signed up with Verizon,help please!!!!

    If this is a Microsoft based phone AND you have location awareness turned on AND they have this phone tied to a Microsoft account AND you have access to all of the account information, then there is a Microsoft web site that will show you the current location of the phone.  Otherwise MrGecko is pretty much dead on.  You would have to have an app on the phone, or pay Verizon more money to give you the location.

  • Generic wsdl - how can you tell what the field assignment is?

    When using the generic wsdl, it seems that your custom fields are mapped to fields such as:
    customcurrency12
    customtext4
    When accessing the asset class, how can tell what field is assigned to what custom value? When I look in the admin > application customization > asset > asset field setup
    I can see the list of fields and field types but not the number on the end so that I can assign it in my web service code. Is there a way to see what your custom fields are mapped to (i.e. custom standard discount is mapped to custompercent11)
    Thanks in advance any help you can lend on this,
    AspnetDev

    You can use the getMapping web service to get al ist of all the fields for a record type. for each field you get the ElementName (which is what you get in the generic wsdl) and DisplayName which you can use it to match to your fields.
    <Field>
         <DisplayName>My Custom Field</DisplayName>
         <ElementName>CustomText74</ElementName>
         <DataType>Text (Short)</DataType>
    </Field>
    -JLV

  • Airport Extreme Compatible Printers - How can you tell by the printer spec?

    Hi,
    If a printer spec says Mac OS X v10.3.9, 10.4 compatible am I safe in assuming it has drivers for Airport Extreme? If not how can I be sure? I'm trying to replace an old printer that doesn't work very well or have drivers specifically for the Airport Extreme.
    My OS is Tiger.

    There are no drivers specifically for A-Extreme. You should refer to this list:
    http://www.ifelix.co.uk/tech/1013.html

  • Diagnostic Mode: How can you tell if the scan disk is working?

    I put my ipod into diagnostic mode and went to the scan hard drive utility. The problem is that does not seem to be working.
    I get the following message:
    Read Verify Scan
    Scan takes a while
    Before Scan:
    Start Scan…
    Does that mean the scan is in process or do I have to do something to start it?

    Mine is doing exactly the same thing. Did you ever get the answer to your question?

  • How Can You Tell if the URLRequest Variables Are Posted?

    Hi,
    This sounds really odd, because I happen to have three variables I am supposed to pass to an httpservice and have the results output to my Flex app.
    The problem is, I don't know how I can tell if a variable has been posted or not, because no matter what I do, it looks like my trace statement is accurate, but there is nothing shown on the screen.
    I tried changing it to GET, and then I get this IO Event Handler error, because my variables are so long.
    var loader:URLLoader = new URLLoader();
            var url:String = "http://localhost/generic.php";
            var variables:URLVariables = new URLVariables();
                variables.from= from_string;
                variables.state_colors = state_colors_string;
                variables.change = change_string;                       
            var encode:String= encodeURI(url);
            var pattern:RegExp = /#/g;
            var decode:String = encode.replace(pattern,"%23");
            var request:URLRequest = new URLRequest(decode);           
            request.method = URLRequestMethod.POST;          
    I am wondering if my variables have been passed correctly. Is there some other way other than using trace statements?
    Thanks for your help.

    Hi,
    Thanks for the tip, and I have just done that with my php code end. It turns out that the file was generated, and the file is blank after the code has finalized execution.
      So, I guess that my POST variables is definitely not posted.
    By the way, I have added a couple of lines for security and IO checks, like you suggested, and here is the almost complete code:
    public function changeMap():void{                        
            var url:String = "http://localhost/generic.php";
            var variables:URLVariables = new URLVariables();
                variables.from= from_string;
                variables.state_colors = state_colors_string;
                variables.change = change_string;
            var encode:String= encodeURI(url);
            var pattern:RegExp = /#/g;
            var decode:String = encode.replace(pattern,"%23");
            var request:URLRequest = new URLRequest(decode);           
            request.method = URLRequestMethod.POST;       
            var loader:URLLoader = new URLLoader();
            loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onSecurityError);
            loader.addEventListener(IOErrorEvent.IO_ERROR, onIOError);
            loader.addEventListener(Event.COMPLETE, onLoadComplete);   
            loader.load(request);                    
             private function onSecurityError(event:SecurityErrorEvent):void {
                trace("securityErrorHandler: " + event);
             private function onIOError(event:IOErrorEvent):void {
                trace("ioErrorHandler: " + event);
            public function onLoadComplete(event:Event):void {             //event output                             
    From the console, the error events returned nothing from the addEventListeners.
    When I used GET before, they worked with two passing variables, but since my variables are now more than 512 characters, I cannot put this on the url, which is why I am insisting on using POST here.
    Have I done anything else wrong here?
    Thanks for your help.

  • How can you tell if the line has errors?

    I'll try and keep this as brief as possible.
    <background>
    For 2years (up to 6months ago) I was on BE ADSL and was very impressed with the quality of the service (low latency, decent bandwidth) on my line.  However when I heard that FTTC was being rolled out I switched to Zen internet on the understanding that I could then switch to the FTTC product as soon as it was available.
    Immediately after switching to Zen I started to experience problems with VOIP (I use VOIP extensions against an externally hosted PBX) and was seeing CRC errors on the line.  In the process (~2months) of getting this diagnosed the FTTC product became available and since I wanted uncapped switched to BT Infinity for Business Option 2.
    </background>
    I now find that again I get sporadic VOIP problems (but not as bad as on the ADSL2 service via Zen) but very regular BBC iPlayer dropouts listening to the radio.
    Due to the previous problems whilst on ADSL2 I suspect I still have a minor line fault but as I can't access any stats on the line have no way to verify.  Does anyone have any pointers on where to get line stats to see what is going on on the connection? I can't get any info out of the OR modem.
    Regarding my network.  I am using a cabled, gigabit connection directly to a Draytek 2820n which is in turn doing the PPPoE through the BT OR modem.  I use two different machines and experience the same issues on both.  I'm a server & network admin by trade so pretty sure it's not my internal infrastructure at fault.
    My IP profile is apparently 38717 Kbps down / 10000 KBps up.
    BT Speed tester shows achieved 26581 down and 4912 up though

    jmansford,
    I may be wrong about this as I am only refering to my own 2750n settings,but looking at your upload throughput test results some if not all of your problems could be due to a wrongly wieghted QoS setting and/or port capacity setting based on QoS.
    As you line profile is ok at 38717 Kbps down / 10000 KBps up it looks like there is no problem on your actual line,but phone line noise test might find some crackle,but I don`t think so.
    By your post,you say your are routing PPPoE through the Draytek into the OR modem.?
    If so,maybe you could try leaving the OR or Draytek out of the chain as a process of testing where faults [if any] are.?
     To sum up a bit imo leaving the OR modem out of the net chain might be a better way as I only use the 2750n on it`s own as the OR modem is not then needed.
    Opps! sorry I might be wrong in my above thinking,but is your Draytek just a router or a modem/router combined like the 2750n.?
    But either way the QoS setting are still important.

  • How can you tell what the OS is?

    I have an OS on an external drive. Is there any way to tell what version it is without actually booting into it?
    Thanks very much.

    Open Disk Utility, select the disk from the sidebar, and click Info. This won't work for Logical  type volumes; I'm not sure if it works for Windows, but I'm assuming you are talking about OS X on the external drive.

  • How can you tell when the battery is fully charged?

    when done syncing, i have a totally green large battery icon- but thats what i always have- any other indication- or am i misreading the large green battery as an indicator to charge completness?
    the little white battery icon never seems to change when using touch 2g?
    what am i missing please
    thank you very much
    bob donchez

    The small battery symbol has a lightning bolt symbol when the battery is charging and a electrical plug symbol when it is completely charged.
    There are pictures in the users guide, page 27: http://manuals.info.apple.com/enUS/iPod_touch_2.1_UserGuide.pdf

  • HT201328 how can you tell by the phone if it is unlocked?

    i had my iphone unlocked from att i want to know if there ius a way to see if it is unlocked on the phone without having to jhst try another companys sim card.

    After you got unlock approval from AT&T, you were supposed to backup and restore your iPhone in iTunes. Did you see "Congratulation, your iPhone has been unlocked" message after the restore.
    After Restore what does Settings > General > About, Carrier entry say.

  • How can you tell where your Mac Pro was assembled?

    I heard mention in another thread that some MP's were made in China while some were assembled in CA. Where do you find this information?

    I think this might be what you're looking for:
    http://www.coconut-flavour.com/coconutidentitycard/index.html
    I ran it on my Mac Pro and it told me unknown, though it told me my MacBook Pro was made in China.

  • How can you tell if the Creative Suite application is closing

    Hi,
    Is it possible within a CS extension to know when the host CS application is closing? I have a CS extension for Flash in which I want to know when Flash is closing so I can save a config file being created in the CS extension.
    Thanks
    Stephen

    Hi,
    Is it possible within a CS extension to know when the host CS application is closing? I have a CS extension for Flash in which I want to know when Flash is closing so I can save a config file being created in the CS extension.
    Thanks
    Stephen

Maybe you are looking for

  • Kichat: How do I get iChat 3 working ? Upgrade hints, FAQ

    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software products that may be mentioned in the topic below. Apple encourages you to first seek a solution at Apple Support. The following links are provided as

  • Open Directory, third party LDAP search path problem on Snow Leopard

    Happy new year folks, I ran into an interesting problem this past week in regards to a third party LDAP directory in the Search path (which used to work on previous versions). The issue brings the server to its knees eventually. I'm still digging thr

  • C++ Executables

    Sorry for my ignorance if I am missing something obvious but I just can't get my code to run. If someone could give me simple steps to do the following: Open up a project in which I can build and run a C++ file that will do a simple cout

  • After last upgrade, GTK3 apps look abnormal

    Here's how: http://img41.imageshack.us/img41/3305/75975390.png What has changed and how do I modify my theme for the changes?

  • What's wrong with LR5 Slideshow and the time it takes to render a 900 image show?

    I just updated my LR5 with great expectation that the "Bug" would be fixed. "NOT" ...........  I used the slideshow feature to display/create 700 wedding image slideshows for my clients. In LR 5 or LR5.3 when I try to play a show, I have to wait an "