akshodhan

New Ubuntu Computer Setup

Jun 24th, 2024 (edited)
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.11 KB | Software | 0 0
  1. sudo apt update && sudo apt upgrade -y && sudo apt install fish -y
  2. chsh -s /usr/bin/fish
  3. fish
  4. sudo apt install libfuse2
  5. cvt 2560 1600
  6. # Below commands depend on outcome of above CAREFUL!
  7. xrandr --newmode <output from above>, from "xxxx" on
  8. xrandr --listmonitors
  9. xrandr --addmode <monitor from above> 2560x1600_60.00
  10. ### Find your monitor using below:
  11. xrandr | grep -e " connected [^(]" | sed -e "s/\([A-Z0-9]\+\) connected.*/\1/"
  12.  
  13. ### Java
  14. sudo apt install -y openjdk-17-jdk
  15. sudo apt install git -y
  16.  
  17. sudo apt install cpu-checker -y
  18.  
  19. ###
  20. # Install Google Chrome from: https://www.google.com/chrome/
  21. ###
  22.  
  23. sudo snap install flutter --classic
  24. flutter sdk-path
  25. flutter --disable-analytics
  26. dart --disable-analytics
  27.  
  28. flutter doctor
  29. flutter doctor --android-licenses
  30.  
  31. # Serverpod
  32. dart pub global activate serverpod_cli
  33.  
  34. # Jetbrains
  35. cd ~/Downloads
  36. ###
  37. # Manually Install
  38. ## IntelliJ Idea Toolbox: https://www.jetbrains.com/toolbox-app/
  39. ### Android Studio
  40. #### Configure VM Hardware Acceleration: https://developer.android.com/studio/run/emulator-acceleration?utm_source=android-studio#vm-linux
  41. ####
  42.  
  43.  
Add Comment
Please, Sign In to add comment