Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@fardjad
Last active March 8, 2022 22:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save fardjad/2483618d4833b3cd76deec272672ffeb to your computer and use it in GitHub Desktop.
Save fardjad/2483618d4833b3cd76deec272672ffeb to your computer and use it in GitHub Desktop.
[How to install ICE - SSB Manager on Debian] Steps required to build and install ICE SSB on Debian Linux and its derivatives #ice #ssb #debian

How to install ICE - SSB Manager on Debian

Steps required to build and install ICE SSB on Debian Linux and its derivatives

Steps

  1. Install the dependencies

     apt install build-essential devscripts
     apt install python3 python3-gi python3-requests python3-bs4 python3-lxml
     apt install chromium-browser
    
  2. Clone the repository

     mkdir -p ice-deb && cd ice-deb
     git clone https://github.com/peppermintos/ice.git
    
  3. Build and install the package

     debuild --no-lintian -d -us -uc
     dpkg -i ../ice_*.deb
    
  4. Create a symlink from /usr/bin/chromium to /usr/bin/chromium-browser (otherwise ICE won't detect Chromium installation)

     ln -s /usr/bin/chromium /usr/bin/chromium-browser
    
  5. Clean things up

     rm ../ice_*
     git clean -df
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment