Skip to content

Instantly share code, notes, and snippets.

@Miouge1
Created July 14, 2016 13:54
Show Gist options
  • Save Miouge1/4ecced3a2dcc825bb4b8efcf84e4b17b to your computer and use it in GitHub Desktop.
Save Miouge1/4ecced3a2dcc825bb4b8efcf84e4b17b to your computer and use it in GitHub Desktop.
Update all Intel DC SSD firmware on Debian/Ubuntu
#!/bin/sh
apt-get install unzip
apt-get -y install alien
mkdir isdct
cd isdct
wget https://downloadmirror.intel.com/23931/eng/DataCenterTool_3_0_0_Linux.zip
unzip DataCenterTool_3_0_0_Linux.zip
alien --to-deb isdct-3.0.0.400-15.x86_64.rpm
dpkg -i isdct_3.0.0.400-16_amd64.deb
for index in $(isdct show -intelssd|grep Index|cut -d : -f 2)
do
echo Y | isdct load -intelssd $index
done
@williamdes
Copy link

The link is broken, you can get 3.0.27 from 2020 here: https://www.touslesdrivers.com/index.php?v_page=23&v_code=66926
Their intel link is broken too, here is their copy of it: https://fichiers.touslesdrivers.com/66926/Intel_SSD_DCT_3.0.27_Linux.zip

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment