Ubuntu – Netflix error code M7357-1003

netflix

Netflix error code M7357-1003.

I am using Ubuntu 14.04. I have done all the updates, upgrades, and and can play YouTube, Handbrake ripped movies, but I can't play Netflix using Chrome Browser.

I however can play Netflix on CentOS 7. I did the following:

sudo apt-get install libdvdread4
sudo /usr/share/doc/libdvdread4/install-css.sh
sudo apt-get install ubuntu-restricted-extras

and then sudo apt-get update.

However, it still won't play Netflix movies? How to manually update the NSS3 to make it work? thoughts?

Best Answer

I found my own solution:

############################
# NETFLIX ERROR M7357-1003 #
############################
#!/bin/bash
sudo apt-get install -y libnss3-1d:i386
sudo apt-get install -y libxss1:i386
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
sudo apt-get update -y
sudo apt-get install -y google-chrome-stable
sudo apt-get upgrade -y
Related Question