Skip to content

Instantly share code, notes, and snippets.

@arye321
Last active April 16, 2022 06:45
Show Gist options
  • Save arye321/8797cbbae0dca529492184ef4a20947c to your computer and use it in GitHub Desktop.
Save arye321/8797cbbae0dca529492184ef4a20947c to your computer and use it in GitHub Desktop.
jupyter remote
jupyter notebook --generate-config
jupyter notebook password
jupyter-lab --ip 0.0.0.0 --port 8888 --no-browser
jupyter-lab --ip 0.0.0.0 --port 8888 --no-browser --allow-root
--ContentsManager.allow_hidden=True
open port 8888:
iptables -I INPUT -p tcp --dport 8888 --syn -j ACCEPT
sudo /sbin/iptables-save
check open ports:
sudo lsof -i -P -n | grep LISTEN
make file root:
chmod +x name.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment