Skip to main content

Home/ ProGauge SCADA/ Group items tagged change

Rss Feed Group items tagged

Kevin Mershon

CentOS how to change hostname? - 0 views

Kevin Mershon

Gnome Shell Left-Handed Mouse Pointer - FedoraForum.org - 0 views

  • Create a directory called 'default' in ~/.icons then create a file called 'index.theme' with the following: [Index Theme] Name = Default Inherits = your-theme-name Where 'your-theme-name' is the name of the cursor theme you want to use (You'll have to change it if you change your cursor theme with gnome-tweak-tool again)
Kevin Mershon

Howto disable background images at boot - 0 views

  • 1. Change VGA mode to normal and remove the splash screen. edit /boot/grub/menu.lst change the kernel parameters: vga=0x314 to vga=normal splash=silent to splash=0 2. Remove the graphical grub bootloader menu. comment or remove grub parameter, also in /boot/grub/menu.lst: gfxmenu (hd0,1)/boot/message becomes #gfxmenu (hd0,1)/boot/message
Kevin Mershon

Tips for XenServer Stability - 0 views

  • There's a timeout parameter used by NTP that if things get out of sync by too much, it won't sync them at all.
  • The default is something low, I think just 128 msec, which is pretty small under some circumstances.
  • edit the /etc/sysconfig/ntpd on the control VM to sync hardware. Default is no. Once done, please cycle ntpd. You will see an extra line for hardware clock. If possible, all VMs and XenServer should use a local physical time server.
    • Kevin Mershon
       
      Changing the system clock settings does not seem to have had any effect on the server's behavior.
  • ...1 more annotation...
  • if you have 4 VCPUs assigned to a guest, the guest would need to wait until 4 cores (physical) are free before it can access the CPU directly
Kevin Mershon

Citrix Forums : Can't adjust VM memory using command ... - 0 views

  • xe vm-memory-limits-set uuid=xxx static-min=137438953472 dynamic-min=137438953472 dynamic-max=137438953472 static-max=137438953472
Kevin Mershon

Mapping Objects to Relational Databases: O/R Mapping In Detail - 0 views

  • One table per class Easy to understand because of the one-to-one mapping.  Supports polymorphism very well as you merely have records in the appropriate tables for each type.  Very easy to modify superclasses and add new subclasses as you merely need to modify/add one table. Data size grows in direct proportion to growth in the number of objects.   There are many tables in the database, one for every class (plus tables to maintain relationships).  Potentially takes longer to read and write data using this technique because you need to access multiple tables.  This problem can be alleviated if you organize your database intelligently by putting each table within a class hierarchy on different physical disk-drive platters (this assumes that the disk-drive heads all operate independently).  Ad-hoc reporting on your database is difficult, unless you add views to simulate the desired tables. When there is significant overlap between types or when changing types is common.
    • Kevin Mershon
       
      This is how the Prime schema currently works, and likely how it should stay.
Kevin Mershon

[#JENKINS-9679] NoClassDefFoundError on Base64 when launching an headless slave with -j... - 0 views

  • I was using -noCertificateCheck so there was no issue with SSL certificates. Either way thanks for the suggestion. Meanwhile i was able to find a workaround: After installing Hudson Slave as a service I got to the local (on Slave) directory and found jenkins-slave.xml I edit the <arguments> entry to add the necessary jar to the invocation classpath: commons-codec-1.5.jar is the jar missing and you can grab it here (just unzip and it's there) Put commons-codec-1.5.jar in the local slave directory (inside a newly created lib directory) Change the <arguments> entry to add commons-codec-1.5.jar to the classpath like this -Xrs -jar "%BASE%\slave.jar" -jnlpUrl <url_to_jnlp> -classpath "%BASE%\lib\commons-codec-1.5.jar" -jnlpCredentials <user>:<password> -noCertificateCheck Start service in windows and monitor jenkins-slave.err.log
1 - 8 of 8
Showing 20 items per page