home.social

#supermicro — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #supermicro, aggregated by home.social.

fetched live
  1. For the first time I had to replace a hot-pluggable power supply. The constant 1000-Hz-beeping was really annoying. Replacing it was a total non-event. Pulled the power cord, removed the old PSU, (beeping stops), insert the new one (beeping resumes), plug in the power cord, beeping stops. Done.
    #hotplug #selfhosting #server #supermicro

  2. secured ​ore than $60 billion in new orders in ‌the fourth quarter

  3. Ich erwäge, den Server nachts abzuschalten und morgens zu starten. Leider gibt es bislang Probleme beim Reboot, wenn das System ein paar Tage gelaufen ist. Ganz zu schweigen davon, dass ich wohl #Podman Quadlets meistern und die automatisierte LUKS-Entschlüsselung sauber hinbekommen müsste. Aber eins nach dem anderen...

    Also versuche ich, ob ein UEFI-Upgrade hilft. Also zuerst mal #BMC für #IPMI konfiguriert und darüber das Upgrade gemacht. So weit, so gut. ✅

    Hab jetzt rausgefunden, dass man das Upgrade von #UEFI bei #SuperMicro wohl am Besten via Webinterface aktualisiert. Jetzt scheitere ich daran, dass ein Product Key verlangt wird. Erst mal schauen, wo ich den wieder her bekomme.

    Und was habt Ihr heute so gemacht?

    #Upgrade #Hardware #Firmware #Energiesparen #Stromsparen

  4. Taiwan government agencies raided the offices of Super Micro Computer and several of its local affiliates, deepening an investigation into Nvidia chips allegedly being smuggled into China using the company's servers. japantimes.co.jp/business/2026 #business #supermicro #china #nvidia #taiwan #china #semiconductors #chipmakers

  5. Taiwan government agencies raided the offices of Super Micro Computer and several of its local affiliates, deepening an investigation into Nvidia chips allegedly being smuggled into China using the company's servers. japantimes.co.jp/business/2026 #business #supermicro #china #nvidia #taiwan #china #semiconductors #chipmakers

  6. ARM-серверы от Supermicro для агентов ИИ — почему это интересно

    На выставке Computex 2026 компания Supermicro ® представила новую линейку серверов для агентного ИИ, облачных сервисов, HPC и масштабируемых вычислительных кластеров. В сердце платформ — процессоры Arm AGI на архитектуре Arm Neoverse CSS V3. В максимальной конфигурации один процессор содержит 136 ядер, что дает в двухсокетной системе до 272 ядер. Все платформы поддерживают DDR5 и современные интерфейсы вплоть до PCIe 6.0.

    habr.com/ru/companies/selectel

    #selectel #itкомпании #itинфраструктура #supermicro #computex

  7. It is really petty and ridiculous that on H12 platforms #SuperMicro no longer allows virtual media from the console.

    To install a system you need a license¹ unless you go and stick a USB stick in it.

    I find it ridiculous that you pay for a stupid PC *server*² and then need to stick a USB in it to be able to install… where do they think you install servers? They know full well that you will need to get either remote hands or pay for a license. What else could you possibly want IPMI for?

    __
    ¹ on H12 you cannot use the various tools to generate a license as the license file JSON is now digitally signed by SuperMicro…
    ² stupid because PC servers are not really servers, just headless PCs with all that goes with it. I hate PC design, crap from a IBM cheap thing still with us.

  8. It is really petty and ridiculous that on H12 platforms #SuperMicro no longer allows virtual media from the console.

    To install a system you need a license¹ unless you go and stick a USB stick in it.

    I find it ridiculous that you pay for a stupid PC *server*² and then need to stick a USB in it to be able to install… where do they think you install servers? They know full well that you will need to get either remote hands or pay for a license. What else could you possibly want IPMI for?

    __
    ¹ on H12 you cannot use the various tools to generate a license as the license file JSON is now digitally signed by SuperMicro…
    ² stupid because PC servers are not really servers, just headless PCs with all that goes with it. I hate PC design, crap from a IBM cheap thing still with us.

  9. > BIOS can't pass the secure validation.

    #SuperMicro great, they of course had to implement a bios validation to prevent me from just patching in the ReBAR support...

    So where is my in-circuit flasher? And where is the bios chip on the H11DSi?

    #BIOS #UEFI

  10. > BIOS can't pass the secure validation.

    #SuperMicro great, they of course had to implement a bios validation to prevent me from just patching in the ReBAR support...

    So where is my in-circuit flasher? And where is the bios chip on the H11DSi?

    #BIOS #UEFI

  11. I wanted to add a button to Home Assistant that would turn on my remote server via IPMI. I also did not want to add the ipmitool dependencies to my #HASS container. Since IPMI supports redfish, a simple rest command in home assistant is enough. Add this to your `configuration.yaml`:

    ```yaml
    rest_command:
    # Command to turn the server ON
    server_power_on:
    url: "https://192.168.100.111/redfish/v1/Systems/1/Actions/ComputerSystem.Reset"
    method: post
    username: "hass"
    password: "eX4mP13p455w0Rd"
    verify_ssl: false
    headers:
    Content-Type: "application/json"
    payload: '{"ResetType": "On"}'

    # Command to gracefully shut down the OS via IPMI (ACPI signal)
    server_power_off:
    url: "https://192.168.100.111/redfish/v1/Systems/1/Actions/ComputerSystem.Reset"
    method: post
    username: "hass"
    password: "eX4mP13p455w0Rd"
    verify_ssl: false
    headers:
    Content-Type: "application/json"
    payload: '{"ResetType": "GracefulShutdown"}'

    sensor:
    - platform: rest
    name: "Server Power State"
    resource: "https://192.168.100.111/redfish/v1/Systems/1"
    method: GET
    username: "hass"
    password: "eX4mP13p455w0Rd"
    verify_ssl: false
    scan_interval: 10 # Checks every 10 seconds
    value_template: "{{ value_json.PowerState }}"

    template:
    - switch:
    - name: "Server"
    state: "{{ is_state('sensor.server_power_state', 'On') }}"
    icon: >-
    {% if is_state('sensor.server_power_state', 'On') %}
    mdi:server-network
    {% else %}
    mdi:server-network-off
    {% endif %}
    turn_on:
    action: rest_command.server_power_on
    turn_off:
    action: rest_command.server_power_off

    ```

    Make sure to create a separate IPMI user with "Operator" privileges (allowed to start/shutdown, but not to modify settings). If you have e.g. #Proxmox on the server, it will receive the IPMI Graceful Shutdown command and cleanly stop all VMs before exiting.

    Works great!

    #hass #homeassistant #redfish #api #ipmi #supermicro #homelab

  12. I wanted to add a button to Home Assistant that would turn on my remote server via IPMI. I also did not want to add the ipmitool dependencies to my #HASS container. Since IPMI supports redfish, a simple rest command in home assistant is enough. Add this to your `configuration.yaml`:

    ```yaml
    rest_command:
    # Command to turn the server ON
    server_power_on:
    url: "https://192.168.100.111/redfish/v1/Systems/1/Actions/ComputerSystem.Reset"
    method: post
    username: "hass"
    password: "eX4mP13p455w0Rd"
    verify_ssl: false
    headers:
    Content-Type: "application/json"
    payload: '{"ResetType": "On"}'

    # Command to gracefully shut down the OS via IPMI (ACPI signal)
    server_power_off:
    url: "https://192.168.100.111/redfish/v1/Systems/1/Actions/ComputerSystem.Reset"
    method: post
    username: "hass"
    password: "eX4mP13p455w0Rd"
    verify_ssl: false
    headers:
    Content-Type: "application/json"
    payload: '{"ResetType": "GracefulShutdown"}'

    sensor:
    - platform: rest
    name: "Server Power State"
    resource: "https://192.168.100.111/redfish/v1/Systems/1"
    method: GET
    username: "hass"
    password: "eX4mP13p455w0Rd"
    verify_ssl: false
    scan_interval: 10 # Checks every 10 seconds
    value_template: "{{ value_json.PowerState }}"

    template:
    - switch:
    - name: "Server"
    state: "{{ is_state('sensor.server_power_state', 'On') }}"
    icon: >-
    {% if is_state('sensor.server_power_state', 'On') %}
    mdi:server-network
    {% else %}
    mdi:server-network-off
    {% endif %}
    turn_on:
    action: rest_command.server_power_on
    turn_off:
    action: rest_command.server_power_off

    ```

    Make sure to create a separate IPMI user with "Operator" privileges (allowed to start/shutdown, but not to modify settings). If you have e.g. #Proxmox on the server, it will receive the IPMI Graceful Shutdown command and cleanly stop all VMs before exiting.

    Works great!

    #hass #homeassistant #redfish #api #ipmi #supermicro #homelab

  13. Oh great, I cannot execute their "saa" support tool because of #NixOS "things"...

    Could not start dynamically linked executable: ./saa
    NixOS cannot run dynamically linked executables intended for generic
    linux environments out of the box. For more information, see:
    nix.dev/permalink/stub-ld

    #Linux #SuperMicro

  14. Oh great, I cannot execute their "saa" support tool because of #NixOS "things"...

    Could not start dynamically linked executable: ./saa
    NixOS cannot run dynamically linked executables intended for generic
    linux environments out of the box. For more information, see:
    nix.dev/permalink/stub-ld

    #Linux #SuperMicro

  15. I wrote an email to the #Supermicro support asking if it would be possible to get resizable BAR support for the H11DSi motherboard as that appears to be the only way to actually fix this hardware issue here at its root.

    #Linux #KDE #kWin

  16. I wrote an email to the #Supermicro support asking if it would be possible to get resizable BAR support for the H11DSi motherboard as that appears to be the only way to actually fix this hardware issue here at its root.

    #Linux #KDE #kWin

  17. Hardware photos. ASCII art. Tables of data. This post has it all! Updated my notes on my homelab hardware for those of you who are binary curious. #odroid #supermicro #radxa #raspberrypi #freebsd #debian #alpinelinux

    markmcb.com/hardware/

  18. Hardware photos. ASCII art. Tables of data. This post has it all! Updated my notes on my homelab hardware for those of you who are binary curious. #odroid #supermicro #radxa #raspberrypi #freebsd #debian #alpinelinux

    markmcb.com/hardware/

  19. Jak ominąć ograniczenia eksportowe GPU w USA i przemycić sprzęt za blisko 2,5 mld dolarów? Wiceszef zarządu Supermicro wiedział to najlepiej

    Wraz z wprowadzeniem restrykcji dotyczących eksportu procesorów graficznych (GPU) – zapoczątkowanych przez USA w 2022 rok i drastycznie zaostrzonych rok później – układy takie jak NVIDIA H100 i H200 stały się towarem deficytowym. Dla większości krajów zostały wprowadzone limity ilościowe, nakładające maksymalna liczbę sztuk, którą dany region może zaimportować w...

    #WBiegu #Chiny #Eksport #GPU #Supermicro

    sekurak.pl/jak-ominac-ogranicz

  20. Jak ominąć ograniczenia eksportowe GPU w USA i przemycić sprzęt za blisko 2,5 mld dolarów? Wiceszef zarządu Supermicro wiedział to najlepiej

    Wraz z wprowadzeniem restrykcji dotyczących eksportu procesorów graficznych (GPU) – zapoczątkowanych przez USA w 2022 rok i drastycznie zaostrzonych rok później – układy takie jak NVIDIA H100 i H200 stały się towarem deficytowym. Dla większości krajów zostały wprowadzone limity ilościowe, nakładające maksymalna liczbę sztuk, którą dany region może zaimportować w...

    #WBiegu #Chiny #Eksport #GPU #Supermicro

    sekurak.pl/jak-ominac-ogranicz

  21. 走私晶片到中國被捕原因解開 只因中國商人拍片挑釁侵侵 露出 Supermicro 包裝致命
    美超微電腦(Super Micro Computer,SMCI)共同創辦人廖益賢於 2026 年 3 月 19 […]
    #人工智能 #AI 晶片 #NVIDIA #SMCI
    unwire.hk/2026/03/23/smci-nvid

  22. Соучредитель Supermicro, обвиняемый в контрабанде продукции Nvidia, покинул совет директоров. webno.ru/novosti-i-stati/souch

    #supermicro

  23. Super Micro Computer co-founder Yih-Shyan Liaw has been charged with smuggling 2.5B USD of AI servers into China. The DOJ alleges a scheme using false documents and transshipment to bypass US export controls on advanced AI chips. gizmodo.com/super-micro-co-fou #AIagent #AI #GenAI #AIInfrastructure #SuperMicro

  24. Super Micro Computer co-founder Yih-Shyan Liaw has been charged with smuggling 2.5B USD of AI servers into China. The DOJ alleges a scheme using false documents and transshipment to bypass US export controls on advanced AI chips. gizmodo.com/super-micro-co-fou #AIagent #AI #GenAI #AIInfrastructure #SuperMicro

  25. Detinguts a l'empresa Supermicro, que va estar venent (suposadament) maquinari de NVIDIA a la Xina durant les restriccions dels EUA.

    theregister.com/2026/03/20/sup

    #Supermicro #Nvidia #Xina

  26. Detinguts a l'empresa Supermicro, que va estar venent (suposadament) maquinari de NVIDIA a la Xina durant les restriccions dels EUA.

    theregister.com/2026/03/20/sup

    #Supermicro #Nvidia #Xina

  27. Ein #Supermicro-Mitgründer soll KI-Server für 2,5 Mrd. Dollar illegal nach China geschmuggelt haben - mit Haartrocknern wurden Seriennummern gelöst und auf Attrappen geklebt. winfuture.de/news,157616.html?

  28. heise online: #Nvidia-GPUs nach China geschmuggelt: Anklage gegen Führungskräfte von #Supermicro heise.de/news/Nvidia-GPUs-nach
    Aktie minus 20% …
    (KI-Beschleuniger … die droge unserer Zeit ;) )

  29. Thinkpad #X230 of 2013 (gift from friend),
    #apple #imac 18.2 of 2017 (350 euros 64 Gb RAM 27" Retina display) ,
    #hetzner CX43 #vm (10 euros per month) online server,
    #Supermicro (SM in table on right) X11-WTR SYS-5019P-WTR #Xeon Silver 4110 × 16 (basic parts 500 euros 2nd hand)
    CPU comparisons using #hardinfo2 #benchmarking #homelab