# apt-get install grub-customizer
To change grub resolution on boot:
Applications -> Settings -> Grub Customizer -> Appearance Settings -> custom resolution 640x480
# apt-get install grub-customizer
To change grub resolution on boot:
Applications -> Settings -> Grub Customizer -> Appearance Settings -> custom resolution 640x480
Installing MariaDB database
# apt-get install mariadb-client mariadb-server
Install apache2 and PHP
# apt-get install apache2 php libapache2-mod-php php8.2-mysql
By default, PHP version for Debian Bookworm is 8.2.
To disable apache2 and mariadb start during boot (to faster your PC start, not recommended for live server)
# systemctl disable apache2
# systemctl disable mariadb
You can start and stop manualy after boot.
Install additional php 8.2 required by CodeIgniter
# apt-get install php8.2-curl php8.2-imagick php8.2-gd php8.2-intl php8.2-mbstring php8.2-memcache php8.2-memcached php8.2-redis php8.2-xml php8.2-phpdbg
Download linux installer Linux x86_64 from https://www.eclipse.org/downloads/packages/installer.
Extract it
[home]/Downloads$ tar -xf ./eclipse-inst-jre-linux64.tar.gz
Run installer
[home]/Downloads$ cd eclipse-installer/
[home]/Downloads/eclipse-installer$ ls
artifacts.xml eclipse-inst features p2 readme
configuration eclipse-inst.ini icon.xpm plugins
[home]/Downloads/eclipse-installer$ ./eclipse-inst
For the first time, Eclipse will ask you to select workspace for your application. Choose default or create your prefered workspace directory.
You safe to remove eclipse-inst-jre-linux64.tar.gz file and [home]/Downloads/eclipse-installer directory.
Done.
Install JDK 17 (Optional)
# apt-get install openjdk-17-jdk
Add Multiarch repository to support architecture i386
# dpkg --add-architecture i386
# apt-get update
Note: to delete i386 run dpkg --remove-architecture i386
Install library required
# apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386
Download Android Studio android-studio-2022.2.1.20-linux.tar.gz from https://developer.android.com/studio.
You need to create folder for Android Studio, SDK Tool and Workspace. Android Studio and SDK Tool can not be placed in same directory.
Extract your android-studio-2022.2.1.20-linux.tar.gz.
Run Android Studio for first time
You can install other SDk required after that. For example if you want to create application for Android 7.0, please download Android SDK Platform 24. This is your minimum android version.
You may start your android project, select save location that you have prepare before. For Example Save location: /[your_home_directory]/Workspace/Android/helloworld.
Android Studio in the same PC, run faster on Debian rather than windows 11 (dual boot).
Preparation using windows 11 to create installation CD
Disable Secure Boot
To check status Secure Boot from windows 11, use system information, and find Secure Boot State. Secure Boot State must be Off to make sure Debian installation work perperly.
Restart to DVD and follow Graphic Installation guide.