#supermicro — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #supermicro, aggregated by home.social.
-
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 -
Supermicro Zen-6-Rack: Dicht gepackt bringen es 42 Blades auf 43.008 Venice-Kerne https://www.computerbase.de/news/prozessoren/supermicro-zen-6-rack-dicht-gepackt-bringen-es-42-blades-auf-43-008-venice-kerne.98514/ #AMD #AI #Supermicro
-
China’s H200 hunger drives Nvidia chip smugglers to Japan route. #Block1 #China #Chipswars #DonaldTrump #H200 #Japan #JensenHuang #nvidia #SuperMicro #Techwar #Technology #Thailand #UnitedStates #USChina
https://iwpost.com/chinas-h200-hunger-drives-nvidia-chip-smugglers-to-japan-route/?fsp_sid=12520 -
#InfoSec Anyone with a #SuperMicro board, looks like an RCE with no details released yet? https://www.supermicro.com/en/support/security_BMC_IPMI_Jul_2026
-
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?
-
A lot of network devices firmwares
For getting login and password check page source.
https://cios.dhitechnical.com/
#firmware #cisco #PaloAlto #Aruba #Juniper #Avaja #Mikrotik #Netapp #Supermicro
-
Supermicro Just Can’t Stop Breaking the Law https://lowendbox.com/blog/supermicro-just-cant-stop-breaking-the-law/ #Editorial&News #supermicro
-
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. https://www.japantimes.co.jp/business/2026/06/30/taiwan-super-micro-china-chip-smuggling/?utm_medium=Social&utm_source=mastodon #business #supermicro #china #nvidia #taiwan #china #semiconductors #chipmakers
-
ARM-серверы от Supermicro для агентов ИИ — почему это интересно
На выставке Computex 2026 компания Supermicro ® представила новую линейку серверов для агентного ИИ, облачных сервисов, HPC и масштабируемых вычислительных кластеров. В сердце платформ — процессоры Arm AGI на архитектуре Arm Neoverse CSS V3. В максимальной конфигурации один процессор содержит 136 ядер, что дает в двухсокетной системе до 272 ядер. Все платформы поддерживают DDR5 и современные интерфейсы вплоть до PCIe 6.0.
https://habr.com/ru/companies/selectel/articles/1045858/
#selectel #itкомпании #itинфраструктура #supermicro #computex
-
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. -
> 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?
-
Another rumor from #CharlieDemerjian.
https://www.semiaccurate.com/2026/04/13/nvidia-is-negotiating-to-buy-a-large-pc-oriented-company/
I don't believe they will, but they could if they want to enter the laptop scene, because on servers they're thriving. In that case, we're talking about #Dell, #Framework, #HP, #SuperMicro, #Intel?
#Technology #Futurism #NVIDIA #Computer #Computers #Laptop #Laptops
-
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
-
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:
https://nix.dev/permalink/stub-ld -
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.
-
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
-
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...
-
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. https://gizmodo.com/super-micro-co-founder-charged-with-smuggling-2-5-billion-of-ai-tech-into-china-2000736075 #AIagent #AI #GenAI #AIInfrastructure #SuperMicro
-
SuperMicro Founder Indicted on Charges of Smuggling Nvidia GPUs to China https://lowendbox.com/blog/supermicro-founder-indicted-on-charges-of-smuggling-nvidia-gpus-to-china/ #Editorial&News #supermicro #supermicro #china
-
Detinguts a l'empresa Supermicro, que va estar venent (suposadament) maquinari de NVIDIA a la Xina durant les restriccions dels EUA.
https://www.theregister.com/2026/03/20/supermicro_nvidia_gpu_charges/
-
Nvidia-GPUs: Supermicro-Mitgründer wegen Schmuggel nach China in Haft https://www.computerbase.de/news/wirtschaft/nvidia-gpus-supermicro-mitgruender-wegen-schmuggel-nach-china-in-haft.96618/ #wirtschaft #grafikkarten #gpu #supermicro