Created
July 14, 2016 13:54
-
-
Save Miouge1/4ecced3a2dcc825bb4b8efcf84e4b17b to your computer and use it in GitHub Desktop.
Update all Intel DC SSD firmware on Debian/Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
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
updated link for the latest DCT:
https://downloadmirror.intel.com/27248/eng/Intel_SSD_Data_Center_Tool_3.0.9_Linux.zip
*and actually it looks like there's a .deb in the latest zip so you don't need to do the conversion anymore.