Debian

Debian is a free operating system (OS) for your computer. An operating system is the set of basic programs and utilities that make your computer run.

All packages list

http://packages.debian.org/stable/allpackages

Sample service blah

File in /etc/init.d/blah with chmod 755:

   1 #! /bin/sh
   2 # /etc/init.d/blah
   3 #
   4 
   5 # Some things that run always
   6 touch /var/lock/blah
   7 
   8 # Carry out specific functions when asked to by the system
   9 case "$1" in
  10   start)
  11     echo "Starting script blah "
  12     echo "Could do more here"
  13     ;;
  14   stop)
  15     echo "Stopping script blah"
  16     echo "Could do more here"
  17     ;;
  18   *)
  19     echo "Usage: /etc/init.d/blah {start|stop}"
  20     exit 1
  21     ;;
  22 esac
  23 
  24 exit 0

Add service

Remove service

Check services status

Install Debian Wheezy 32 bit

Base Install DW (Debian Wheezy)

In Virtualbox

Installation Debian 7.5.0 amd64 (Wheezy)

Fetch and burn the ISO

Install

Install extra packages

Eclipse

Two monitors with digital output

Enable multiarch and install Skype

Resize /home folder

Debian 8.6.0 (Jessie)

VMDebian
Linux
Debian 64 bit
4096MB
VDI type
dynamic allocation
16 GB
create
debian-8.6.0-amd64-DVD-1.iso
install
english
location other europe Portugal
default local en_us.UTF8
keyboard portuguese
hostname debian
domain name <empty>
root pass 
new user vitor
clock Lisbon
Partition, guided user entire disk LVM
scsi(0,0,0) sda
all in one partition
write
change yes
Finish partitioning
scan other cd dvd no
use net mirrors yes portugal ftp.pt.debian.org
package survey no
software to install desktop kde lxde ssh web server print server standard utils displaymanager kdm 
install grub in MBR yes /dev/sda
Finish installation continue

VBoxManage setextradata "VMDebian" "CustomVideoMode1" "1366x768x32"
Use 2 cpu cores in the VM
run guest additions 

/etc/apt/sources.list
# sid 
deb http://ftp.pt.debian.org/debian/ sid  main contrib
deb-src http://ftp.pt.debian.org/debian/ sid main contrib
apt-get update

Install debian 10 - buster on external HDD with USB adapter

ap_scan=1
ctrl_interface=/var/run/wpa_supplicant
network={
  ssid="?????????"
  scan_ssid=1
  proto=RSN WPA
  key_mgmt=WPA-PSK
  group=CCMP TKIP
  pairwise=CCMP TKIP
  psk="???????"
}

deb http://ftp.pt.debian.org/debian/ buster main contrib non-free
deb-src http://ftp.pt.debian.org/debian/ buster main contrib non-free

cd /boot/efi/EFI/
mv BOOT BOOT_bak
cp -R debian BOOT
cd BOOT
mv shimx64.efi bootx64.efi

Debian 10 (Buster) in VirtualBox VM

   1 wget https://cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid/debian-live-10.1.0-amd64-standard.iso
   2 # run virtualbox 
   3 # new vm
   4 # name Debian buster type linux, version debian 64 bit
   5 # ram 4096 GB
   6 # create virtual vdi 16GB dynamically allocated
   7 #settings storage, ide, choose virtual optical drive, attach iso debian-live-10.1.0-amd64-standard.iso to VM
   8 # start VM
   9 # choose debian installer 
  10 # language: english
  11 # country other, europe, portugal, default locale en_us
  12 # keyboard portuguese
  13 # hostname debian
  14 # domain name ""
  15 # root pass: 
  16 # new user: vitor
  17 # username: vitor
  18 # pwd: 
  19 # configure clock: Lisbon
  20 # partition disks: guided - use entire disk and set up LVM
  21 # use scsi3, sda
  22 # all files in one partition
  23 # write changes and configure lvm: yes
  24 # volume group to use for guided partition: 16.9 GB
  25 # write changes to disk: yes
  26 # use network mirror: yes, portugal, deb.debian.org
  27 # proxy info: blank
  28 # install grub2 in MBR: yes
  29 # install in /dev/sda
  30 # install complete, continue
  31 # reboot
  32 # choose debian gnu/linux
  33 # login with root:toor
  34 apt update
  35 apt install xorg wmaker xterm lightdm firefox-esr htop wmclockmon vim  docker.io  
  36 /sbin/usermod -a vitor -G docker
  37 service lightdm start
  38 # Inside /etc/lightdm/lightdm.conf in [Seat:*] 
  39 add display-setup-script=setxkbmap pt 
  40 add greeter-setup-script=setxkbmap pt 
  41 add session-setup-script=setxkbmap pt
  42 
  43 [LightDM] 
  44 add display-setup-script=setxkbmap pt 
  45 add greeter-setup-script=setxkbmap pt 
  46 add session-setup-script=setxkbmap pt
  47 
  48 # In ~/.xsessionrc add
  49 /usr/bin/setxkbmap pt &
  50 /usr/bin/xterm &
  51 
  52 # Devices, insert guest additions cd image
  53 mount /dev/cdrom /mnt
  54 cd /mnt
  55 ./VBoxLinuxAdditions.run 
  56 # window maker
  57 workspace, appearance, background, styles, green
  58 workspace, appearance, background, solid, black
  59 workspace, appearance, save theme, MyTheme
  60 
  61 # https://wiki.debian.org/Keyboard#How_to_switch_a_keyboard_layout_in_X11_.2F_graphical_desktop_environment
  62 # The keyboard setup dialog in GNOME 3 will modify IBus's configuration directly, # but for users of other X environments, 
  63 # you can use the ibus-setup command to modify the settings for IBus. To force it # to defer to the settings 
  64 # from /etc/default/keyboard, run ibus-setup, go to the Advanced tab, and check # Use system keyboard layout. 
  65 # ibus-setup
  66 # input method
  67 # add portuguese
  68 
  69 cd C:\Program Files\Oracle\VirtualBox
  70 VBoxManage setextradata "Debian buster" "CustomVideoMode1" "1366x768x32" 
  71 
  72 xrandr --output Virtual1 --mode 1360x768
  73 
  74 cat .xsessionrc
  75 /usr/bin/setxkbmap pt&
  76 /usr/bin/xterm &
  77 xrandr --output Virtual1 --mode 1360x768 &
  78 
  79 #### get jdk8 from https://adoptopenjdk.net/
  80 apt install net-tools openssh-server ntp ntpsec-ntpdate
  81 # add host port 2222 to vm guest port 22
  82 /sbin/usermod -a vitor -G vboxfs # shared folder virtualbox
  83 
  84 wget https://archive.eclipse.org/technology/epp/downloads/release/luna/SR2/eclipse-java-luna-SR2-linux-gtk-x86_64.tar.gz
  85 
  86 cd /opt
  87 tar xvzf eclipse-java-luna-SR2-linux-gtk-x86_64.tar.gz
  88 chgrp users eclipse/
  89 chgrp users eclipse/* -R
  90 
  91 /opt/eclipse/eclipse.ini
  92 -startup
  93 plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar
  94 --launcher.library
  95 plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20150204-1316
  96 -product
  97 org.eclipse.epp.package.java.product
  98 --launcher.defaultAction
  99 openFile
 100 -showsplash
 101 org.eclipse.platform
 102 --launcher.XXMaxPermSize
 103 256m
 104 --launcher.defaultAction
 105 openFile
 106 --launcher.appendVmargs
 107 -vm
 108 /opt/jdk8u222-b10/bin/java
 109 -vmargs
 110 -Dosgi.requiredJavaVersion=1.6
 111 -XX:MaxPermSize=256m
 112 -Xms40m
 113 -Xmx512m
 114 
 115 # run_eclipse.sh 
 116 /opt/eclipse/eclipse
 117 
 118 apt install thunar mousepad wmmon
 119 xrandr --output Virtual1 --mode 1366x768
 120 mousepad oblivion theme monospace regular 12
 121 
 122 cat lightdm.conf  | grep -v "^#"
 123 /etc/lightdm/lightdm.conf 
 124 [LightDM]
 125 
 126 display-setup-script = setxkbmap pt
 127 greeter-setup-script = setxknmap pt 
 128 session-setup-script = setxkbmap pt 
 129 [Seat:*]
 130 
 131 [XDMCPServer]
 132 
 133 [VNCServer]
 134 
 135 ####
 136 apt install xfce4-terminal
 137 apt install wmmon
 138 apt install wmix
 139 apt install mono
 140 apt install python-pip
 141 apt install cowsay
 142 apt install unzip
 143 apt install libxml2-utils
 144 apt install gimp
 145 apt install xmlsec1
 146 
 147 xrandr --output Virtual1 --mode 1366x768
 148 
 149 apt install curl zip unzip
 150 /sbin/dhclient enp0s3
 151 
 152 # install openjdk 11
 153 cd ~
 154 wget https://download.java.net/java/GA/jdk11/9/GPL/openjdk-11.0.2_linux-x64_bin.tar.gz
 155 tar xvzf openjdk-11.0.2_linux-x64_bin.tar.gz
 156 # add ~/jdk-11.0.2/bin to ~/.bashrc
 157 # get eclipse with open jdk 11 support
 158 cd ~
 159 wget http://mirror.dkm.cz/eclipse/technology/epp/downloads/release/2019-09/R/eclipse-java-2019-09-R-linux-gtk-x86_64.tar.gz
 160 tar xvzf eclipse-java-2019-09-R-linux-gtk-x86_64.tar.gz
 161 
 162 # copy paste
 163 In virtualbox choose general, advanced, shared clipboard, bidirectional

Add LVM disk debian buster

   1 fdisk /dev/sdb # n, partition , 2st sector 2048, last sector 16777215, w
   2 pvcreate /dev/sdb1 # pvcreate - initialize a disk or partition for use by LVM
   3 vgdisplay  # vgdisplay - display attributes of volume groups
   4 pvscan # pvscan - scan all disks for physical volumes
   5 vgextend debian-vg /dev/sdb1 # vgextend - add physical volumes to a volume group
   6 pvscan # pvscan - scan all disks for physical volumes
   7 lvdisplay  # lvdisplay - display attributes of a logical volume
   8 lvextend /dev/debian-vg/root /dev/sdb1 # lvextend - extend the size of a logical volume
   9 vgdisplay  # vgdisplay - display attributes of volume groups
  10 resize2fs /dev/debian-vg/root  # resize2fs - ext2/ext3/ext4 file system resizer 
  11 # other disk
  12 fdisk -l
  13 fdisk /dev/sdc
  14 pvcreate /dev/sdc1
  15 vgextend debian-vg /dev/sdc1
  16 lvextend /dev/debian-vg/root /dev/sdc1
  17 resize2fs /dev/debian-vg/root
  18 df -h
  19 # other disk /dev/sdd 8 GB
  20 fdisk /dev/sdd
  21 pvcreate /dev/sdd1
  22 vgextend debian-vg /dev/sdd1
  23 lvextend /dev/debian-vg/root /dev/sdd1
  24 resize2fs /dev/debian-vg/root
  25 df -h
  26 # other disk /dev/sde 8GB 
  27 fdisk -l
  28 fdisk /dev/sde # n, partition , 2st sector 2048, last sector 16777215, w
  29 pvcreate /dev/sde1
  30 vgextend debian-vg /dev/sde1
  31 lvextend /dev/debian-vg/root /dev/sde1
  32 resize2fs /dev/debian-vg/root
  33 df -h
  34 
  35 # other disk /dev/sdf 8GB 
  36 fdisk -l
  37 fdisk /dev/sdf # n, partition , 2st sector 2048, last sector 16777215, w
  38 pvcreate /dev/sdf1
  39 vgextend debian-vg /dev/sdf1
  40 lvextend /dev/debian-vg/root /dev/sdf1
  41 resize2fs /dev/debian-vg/root
  42 df -h

Alsa and Pulseaudio

   1 apt purge pulseaudio pulseaudio-utils xfce4-pulseaudio-plugin  pavumeter pavucontrol
   2 apt install alsa-tools alsa-tools-gui alsa-utils alsa-oss alsamixergui libalsaplayer0
   3 /sbin/alsactl init
   4 aplay /usr/share/sounds/alsa/Noise.wav

Sandbox

Skype for Linux (deb)

Restart clipboard copy paste in VirtualBox VM

   1 sudo killall VBoxClient
   2 sudo VBoxClient-all

.xsessionrc with xfce-terminal and wider screen (1920x1080)

   1 /usr/bin/setxkbmap pt&
   2 /usr/bin/xfce4-terminal &
   3 #/usr/bin/xterm &
   4 #xrandr --output Virtual-1 --mode 1360x768
   5 #xrandr --output Virtual-1 --mode 1920x1080
   6 xrandr --output Virtual-1 --mode 1680x1050

Remove package

Install in Lenovo Yoga 300

   1 # Fn+F2 to go to BIOS and change to legacy mode to support USB boot without UEFI
   2 # Legacy boot USB
   3 # Fn+F12 select boot device, USB pen with Debian 10 buster
   4 # Debian graphical installer
   5 # english, other, europe, Portugal, US, portuguese, no firmware, user vitor, use # largest continuous space, one partition, no package manager, install GRUB
   6 # search and install firmware-realtek-20190114-2_all.deb
   7 dpkg -i firmware-realtek_20190114-2_all.deb
   8 dpkg-reconfigure console-setup
   9 # UTF8 Latin1 TerminusBus 16x32
  10 apt update
  11 apt upgrade 
  12 apt install -y firefox-esr leafpad mousepad htop lxdm lxterminal
  13 apt install -y alsa-tools alsa-tools-gui alsa-utils alsa-oss alsamixergui libalsaplayer0 
  14 apt install -y openjdk-11-jdk docker.io docker-compose
  15 /sbin/usermod -a vitor -G docker
  16 # In preferences, IBus preferences choose keyboard pt
  17 ibus-setup
  18 # timezone
  19 apt install -y ntp ntpsec-ntpdate ntpdate
  20 /sbin/ntpdate pt.pool.ntp.org 
  21 /sbin/service ntp start
  22 timedatectl set-timezone Europe/Lisbon
  23 /sbin/service ntp start
  24 /sbin/usermod -aG sudo vitor # add to sudoers
  25 apt install net-tools gimp libreoffice inxi
  26 apt install curl
  27 curl -sfL https://get.k3s.io | sh -
  28 # right mouse button on bottom, add/remove panel items, add "manage networks", "battery monitor"
  29 inxi -Fxz
  30 # if issues of rfkill appear run the following
  31 echo 1 > /sys/class/rfkill/rfkill0/state

/etc/apt/sources.list

deb http://ftp.pt.debian.org/debian/ buster main contrib non-free
deb-src http://ftp.pt.debian.org/debian/ buster main contrib non-free

/etc/xdg/lxsession/LXDE/autostart

@lxpanel --profile LXDE
@pcmanfm --desktop --profile LXDE
@xscreensaver -no-splash
@/usr/bin/setxkbmap pt

Debian (last edited 2021-08-01 00:20:25 by localhost)