Advertisement
Johnny2

Install qTox (ubuntu 18.04 LTS, Mint 19.2 LTS)

Oct 22nd, 2019
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. Install qTox (ubuntu 18.04 LTS, Mint 19.2 LTS)
  2.  
  3. $ sudo apt-get install git -y
  4.  
  5. $ git clone https://github.com/qTox/qTox
  6.  
  7. $ git clone https://github.com/toktok/c-toxcore.git toxcore
  8.  
  9. $ sudo apt-get install build-essential cmake libavcodec-dev libavdevice-dev libavfilter-dev libavutil-dev libexif-dev libgdk-pixbuf2.0-dev libglib2.0-dev libgtk2.0-dev libopenal-dev libqrencode-dev libqt5opengl5-dev libqt5svg5-dev libsqlcipher-dev libswresample-dev libswscale-dev libxss-dev qrencode qt5-default qttools5-dev-tools qttools5-dev libtool autotools-dev automake checkinstall check libopus-dev libvpx-dev libsodium-dev libqt5concurrent5 -y
  10.  
  11. and now you are ready to compile:
  12.  
  13. 1. Compiling toxcore
  14.  
  15. $ cd toxcore
  16. $ cmake .
  17. $ make -j $(nproc)
  18. $ sudo make install
  19. $ echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf.d/locallib.conf
  20. $ sudo ldconfig
  21.  
  22. 2. Compile qTox
  23.  
  24. $ cd ../qTox
  25. $ cmake .
  26. $ make -j $(nproc)
  27. $ sudo make install
  28.  
  29. 3. To Run qtox
  30.  
  31. $ qtox
  32.  
  33. Reference:
  34. https://askubuntu.com/questions/1047330/how-to-compile-and-install-qtox-from-github-on-ubuntu-18-04/1047398#1047398
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement