ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. 1337
    3. Posts
    1
    • Profile
    • Following 0
    • Followers 0
    • Topics 273
    • Posts 3,519
    • Groups 0

    Posts

    Recent Best Controversial
    • Nvidia Tesla K40 for lab?

      I know nothing of machine learning or GPU processing in general. But I'd like to learn.

      To get started I assume you need a GPU card of some kind and GPUs like Nvidia Tesla K40 are showing up refurbished for reasonable prices. Would that card be sufficient to get started or is it too old?

      Also when looking at desktop virtualization would the Tesla K40 also be something you could use for this? Or does that require something else? I've seen Grid K1 & K2 in some applications but I don't know the difference between those cards and something like the K40.

      posted in IT Discussion
      1
      1337
    • RE: Ethernet link going down and then up after 3 seconds.

      I will have a look at the switch when I get on site. What you're saying makes a lot of sense.

      posted in IT Discussion
      1
      1337
    • Yealink phone low volume

      We have Yealink T41S (same as T42S) phones but the mic volume is too low.

      From searching the net I found that these are the setting in the provisioning file that needs to be changed.

      voice.handfree_send = ???
      voice.handset_send = ???
      voice.headset_send = ??? 
      

      Could anyone share what you have these set to?
      Have you experienced the same issue?

      We are running 3CX and not FreePBX but I don't think it is PBX related. The setting from FreePBX would give me a good starting point.

      posted in IT Discussion
      1
      1337
    • RE: What % is normal availability?

      @scottalanmiller said in What % is normal availability?:

      When in my massive environment (80K+ servers)

      80k+ servers? That has to be something in size like Paypal or LinkedIn.

      posted in IT Discussion
      1
      1337
    • RE: Server rebooting - ASP.Net MVR 2

      I just read that you said VM server. That sucks.
      Any reason why you are installing software on the host instead of one of the VMs?

      posted in IT Discussion
      1
      1337
    • RE: Server rebooting - ASP.Net MVR 2

      The installer is probably looking for something or trying to do something that doesn't work.

      You could try "deactivating" the installer.
      Run %windir%\system32\msiexec.exe /unregister
      And %windir%\syswow64\msiexec.exe /unregister
      I think you need to restart after this.

      Check to see if the 10 minute reboots continue after this.

      This is how to "reactivate" the installer again.
      %windir%\system32\msiexec.exe /regserver
      %windir%\syswow64\msiexec.exe /regserver
      And restart.

      posted in IT Discussion
      1
      1337
    • RE: What % is normal availability?

      I would have thought the average availability to be lower somehow.

      Given how reliable the equipment really is makes me wonder who really needs high availability. Most people aren't hosting NASDAQ servers exactly.

      posted in IT Discussion
      1
      1337
    • RE: What % is normal availability?

      @scottalanmiller What you say makes sense.

      Consider a virtual environment with a consolidation ratio of say 10 for the sake of simplicity.
      Assume average 1 hour of yearly downtime on a physical server.

      The probability of hardware failure on the VM host is the same as for a single server but every hour of downtime would be 1x10=10 hours total of downtime for the VMs.

      Having 10 physical servers would mean 10 times the probability of hardware failure so 10x1=10 hours of downtime.

      The net effect of this would be that the average availability per server (virtual or physical) would be the same.

      posted in IT Discussion
      1
      1337
    • RE: What % is normal availability?

      @scottalanmiller Looking for some statistics on the subject of server reliability I found the data below.
      While I don't know where the data originates from just looking at servers from 1 to 6 years of age we get an average of 3.27 hours of downtime. That translates into 99.96% of availability.
      It's a little less than what you estimated but still in the same ballpark I think.

      0_1535669182476_server_stats.png

      posted in IT Discussion
      1
      1337
    • What % is normal availability?

      What kind of availability would "normal" availability be?

      Standard enterprise servers don't break that often electronically and things like fans, harddrives, power supplies are often redundant. If we had something running on a physical standalone server in a proper datacenter what kind of average availability in percent would that system have? 99%, 99.9%, 99.95%?

      posted in IT Discussion
      1
      1337
    • RE: Sudden blackouts Windows 101803

      @scottalanmiller said in Sudden blackouts Windows 101803:

      @pete-s said in Sudden blackouts Windows 101803:

      @romo Step one is to test the hardware. Memtest for testing all the memory for a couple of hours at least. And then the harddrive (I assume SSD)? And then the power supply. If your hardware isn't stable you can look for software problems until the cows come home.

      We did that for days, nothing has every come up.

      Sorry to hear that. If you don't want to regress to older versions I think you may just have to live with it for a while. The latest AMD driver is like 2 days old or something and 1803 a couple of months. Everything will probably be sorted in a couple of months.

      posted in IT Discussion
      1
      1337
    • RE: Sudden blackouts Windows 101803

      @romo Step one is to test the hardware. Memtest for testing all the memory for a couple of hours at least. And then the harddrive (I assume SSD)? And then the power supply. If your hardware isn't stable you can look for software problems until the cows come home.

      posted in IT Discussion
      1
      1337
    • RE: Attach drive to VM in Xenserver (not as Storage Repository)

      Thanks guys.

      Unfortunately the link @dbeato provided is how you add a new disk to xenserver when you want it to be Storage Repository - a place to store VM partitions. So if you have a disk already xenserver will wipe it clean and put LVMs or EXT3 with VDI files on it.

      When it's passed through as a block device to a VM it will have whatever filesystem the VM formats it with.

      The problem with the info in the link @black3dynamite provided is that it's for xenserver 5.x so it doesn't work straight up with Xenserver 7.x (I'm running 7.4).

      What I ended up doing was adding a raid 1 array instead of just a disk. The principle is the same though, just another name on the block device.

      The array /dev/md0 is passed through to the VM as a block device.

      I did it by adding a rule to /etc/udev/rules.d/65-md-incremental.rules almost at the end.

      KERNEL=="md*", SUBSYSTEM=="block", ACTION=="change", SYMLINK+="xapi/block/%k", \
              RUN+="/bin/sh -c '/opt/xensource/libexec/local-device-change %k 2>&1 >/dev/null&'"
      

      This rule will pass all md arrays to the VMs as Removable Storage in Xenserver (so you can attach it to whatever VM you want).

      Note that * in KERNEL=="md*" is a wildcard. So this will match the devices /dev/md0, md1 md2 etc. Just replace md* with whatever block device you want to pass through.

      The array is 2TB so I don't know if this works with bigger arrays.
      After trying some larger drives I can verify that it works fine with larger than 2TB arrays.
      Also the disks were empty so I'm not sure if xenserver will wipe the disk when you set this up the first time.
      After some experimenting it looks like Xenserver will not touch the drive.

      I'll add the complete file for reference.

      KERNEL=="td[a-z]*", GOTO="md_end"
      # This file causes block devices with Linux RAID (mdadm) signatures to
      # automatically cause mdadm to be run.
      # See udev(8) for syntax
      
      # Don't process any events if anaconda is running as anaconda brings up
      # raid devices manually
      ENV{ANACONDA}=="?*", GOTO="md_end"
      
      # Also don't process disks that are slated to be a multipath device
      ENV{DM_MULTIPATH_DEVICE_PATH}=="?*", GOTO="md_end"
      
      # We process add events on block devices (since they are ready as soon as
      # they are added to the system), but we must process change events as well
      # on any dm devices (like LUKS partitions or LVM logical volumes) and on
      # md devices because both of these first get added, then get brought live
      # and trigger a change event.  The reason we don't process change events
      # on bare hard disks is because if you stop all arrays on a disk, then
      # run fdisk on the disk to change the partitions, when fdisk exits it
      # triggers a change event, and we want to wait until all the fdisks on
      # all member disks are done before we do anything.  Unfortunately, we have
      # no way of knowing that, so we just have to let those arrays be brought
      # up manually after fdisk has been run on all of the disks.
      
      # First, process all add events (md and dm devices will not really do
      # anything here, just regular disks, and this also won't get any imsm
      # array members either)
      SUBSYSTEM=="block", ACTION=="add", ENV{ID_FS_TYPE}=="linux_raid_member", \
              RUN+="/sbin/mdadm -I $env{DEVNAME}"
      
      # Next, check to make sure the BIOS raid stuff wasn't turned off via cmdline
      IMPORT{cmdline}="noiswmd"
      IMPORT{cmdline}="nodmraid"
      ENV{noiswmd}=="?*", GOTO="md_imsm_inc_end"
      ENV{nodmraid}=="?*", GOTO="md_imsm_inc_end"
      SUBSYSTEM=="block", ACTION=="add", ENV{ID_FS_TYPE}=="isw_raid_member", \
              RUN+="/sbin/mdadm -I $env{DEVNAME}"
      LABEL="md_imsm_inc_end"
      
      SUBSYSTEM=="block", ACTION=="remove", ENV{ID_PATH}=="?*", \
              RUN+="/sbin/mdadm -If $name --path $env{ID_PATH}"
      SUBSYSTEM=="block", ACTION=="remove", ENV{ID_PATH}!="?*", \
              RUN+="/sbin/mdadm -If $name"
      
      # Next make sure that this isn't a dm device we should skip for some reason
      ENV{DM_UDEV_RULES_VSN}!="?*", GOTO="dm_change_end"
      ENV{DM_UDEV_DISABLE_OTHER_RULES_FLAG}=="1", GOTO="dm_change_end"
      ENV{DM_SUSPENDED}=="1", GOTO="dm_change_end"
      KERNEL=="dm-*", SUBSYSTEM=="block", ENV{ID_FS_TYPE}=="linux_raid_member", \
              ACTION=="change", RUN+="/sbin/mdadm -I $env{DEVNAME}"
      LABEL="dm_change_end"
      
      # Finally catch any nested md raid arrays.  If we brought up an md raid
      # array that's part of another md raid array, it won't be ready to be used
      # until the change event that occurs when it becomes live
      KERNEL=="md*", SUBSYSTEM=="block", ENV{ID_FS_TYPE}=="linux_raid_member", \
              ACTION=="change", RUN+="/sbin/mdadm -I $env{DEVNAME}"
      
      # Added line
      # Pass-through of all /dev/md* arrays. 
      # Will end up as Removable Storage that can be assigned to a VM.
      KERNEL=="md*", SUBSYSTEM=="block", ACTION=="change", SYMLINK+="xapi/block/%k", \
              RUN+="/bin/sh -c '/opt/xensource/libexec/local-device-change %k 2>&1 >/dev/null&'"
      
      LABEL="md_end"
      
      posted in IT Discussion
      1
      1337
    • RE: Using a Snom PA1 for paging

      @jaredbusch Thanks Jared.

      BTW I found this from the PA1 users manual:

      One "MIC in" and one "LINE out" 3.5 mm connector for headset connection (SPK impedance =
      150 Ohm, MIC power supply 3.3V, RL = 2 KOhm, S= -42 dB (+-2dB)). Microphone input must
      be differential and without grounding. This port is for installation and maintainance purposes
      only, not for the connection of other devices.

      So the impedance on the headset output (aka line out) is 150 ohm.

      posted in IT Discussion
      1
      1337
    • RE: Yealink Device Management Platform - Stores User Credentials in Plain-Text

      @jaredbusch said in Yealink Device Management Platform - Stores User Credentials in Plain-Text:

      Here is a Snom PA1 config file.

      Off topic question to this thred, but do you have the Snom PA1 connected to an external amplifier? If that is the case, may I ask how you connected it?

      posted in IT Discussion
      1
      1337
    • RE: Attach drive to VM in Xenserver (not as Storage Repository)

      @black3dynamite said in Attach drive to VM in Xenserver (not as Storage Repository):

      I believe in Xen Orchestra, for that specific VM, there should be an option in the PCI Devices to attach a PCI device like a USB drive.

      Thanks, but it's not an USB drive. Just a regular SAS/SATA drive in a drive bay.

      posted in IT Discussion
      1
      1337
    • Attach drive to VM in Xenserver (not as Storage Repository)

      I have a 4TB drive with files on it. How do I "attach/assign" it in xenserver so one of the VMs can access the drive as /dev/sdb (or whatever it shows up as)?

      I don't want the drive as a storage repository of some kind, just as a block device to one VM.

      posted in IT Discussion xenserver xcp-ng xen
      1
      1337
    • RE: FreeOffice Command Line Options?

      @obsolesce

      PPSX Versus PPTX

      When a user double-clicks a PPTX file, PowerPoint opens in edit mode and allows the user to edit the slideshow. When a user double-clicks a PPSX file, he only sees a slide show. PowerPoint does not display its user interface. PPTX and PPSX files are similar enough, that you can swap the letters "T" an "S" in their file names and they will work.

      Assuming FreeOffice is compatible with Powerpoint is should work the same.

      posted in IT Discussion
      1
      1337
    • RE: Ethernet link going down and then up after 3 seconds.

      @momurda said in Ethernet link going down and then up after 3 seconds.:

      What services are on this?
      What does the switch it is connected to tell you?

      It's a file server. No disruption in service has been noticed.

      The switch is one of the HP procurve smart-switches. Can't remember what model but it's gigabit. I don't know what kind of logging it has, if any.

      posted in IT Discussion
      1
      1337
    • RE: FreePBX Restored from Vultr Snapshot - No IP on boot

      @bigbear
      It's udev that has a rule with eth0 and the old mac address.
      Don't know what distro you're running but try looking in /etc/udev/rules.d/70-persistent-net.rules.
      Delete the line that has NAME="eth0" in it. And change the line with NAME="eth1" to eth0.
      And then you have to swap back eth1 to eth0 in your network settings.

      posted in IT Discussion
      1
      1337
    • 1 / 1