Debian IP configuration
- No Comments
- cze, 11, 2018
- siwy
- Debian, Linux, Useful programs
Ip configuration example: allow-hotplug eth0 iface eth0 inet dhcp auto eth1 iface eth1 inet static address 192.168.0.4 netmask 255.255.255.0 gateway 192.168.0.1 dns-nameservers 192.168.0.4
Read MoreMigration VM from XenServer to ProxMox (*.xva to *.raw)
- 3 komentarze
- cze, 10, 2018
- siwy
- Debian, Linux, ProxMox, Useful programs, XenServer
Source: techblog.jeppson.org XenServer 7.1 xcp-ng 8.2 ProxMox 5.2 ProxMox 6.3 I. Export VM to *.XVA in XenServer. II. Create new VM in ProxMox with parameters: CPU – like VM on XenServer RAM – like VM on XenServer HDD-1 – size 120GB. Temp system (20GB) and size of VM from XenServer (100GB). This drive will […]
Read MoreChange hostname permanent
- No Comments
- cze, 10, 2018
- siwy
- Debian, Linux, Useful commands
sudo hostnamectl set-hostname new.name.1 and change old hostname to new in /etc/hosts.
Read MoreTest GitLab commands
- No Comments
- cze, 09, 2018
- siwy
- GitLab, Linux, Useful commands
sudo gitlab-rake gitlab:check –trace sudo gitlab-rake db:migrate:status –trace gitlab-ctl tail
Read MoreInstall old version GitLab on Debian.
- No Comments
- cze, 09, 2018
- siwy
- GitLab, Linux, Useful commands
Source: GitLab Install GitLab’s repos I. Creating a backup sudo gitlab-rake gitlab:backup:create II. Install and restore backup: sudo aptitude install -y curl openssh-server ca-certificates curl -s https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.deb.sh | sudo bash sudo aptitude install gitlab-ee=10.7.3-ee.0 sudo mv 1526756133_2018_05_19_10.7.3-ee_gitlab_backup.tar /var/opt/gitlab/backups/. sudo gitlab-ctl stop unicorn sudo gitlab-ctl stop sidekiq sudo gitlab-rake gitlab:backup:restore BACKUP=1526756133_2018_05_19_10.7.3-ee sudo gitlab-ctl restart […]
Read MoreOwn DNS (PowerDNS + PowerAdmin)
- No Comments
- maj, 14, 2018
- siwy
- DNS, Linux
Source: zaufanatrzeciastrona.pl blog.crazypi.com I. Install Apache2: sudo aptitude install apache2 II. Install MySQL, PHP and secure: sudo aptitude install mysql-server sudo mysql_install_db sudo mysql_secure_installation sudo aptitude install mysql-client sudo aptitude install libapache2-mod-php5 php5 php5-common php5-curl php5-dev php5-gd php-pear php5-imap php5-mcrypt php5-mhash php5-ming php5-mysql php5-xmlrpc gettext sudo /etc/init.d/mysql restart sudo /etc/init.d/apache2 restart III. Install PowerDNS: sudo […]
Read MoreKonfiguracja VPN (OpenVPN)
- No Comments
- sty, 29, 2018
- siwy
- Debian, Linux
Źródła z których korzystałem: sekurak.pl forums.openvpn.net 1. Własne centrum certyfikacji I. Instalacja i organizacja CA: sudo aptitude install openvpn sudo cp -a /usr/share/easy-rsa/ /etc/CA II. Edycja pliku /etc/CA/vars: # These are the default values for fields # which will be placed in the certificate. # Don’t leave any of these fields blank. export KEY_COUNTRY=”PL” export […]
Read MoreResetowanie hasła root
- No Comments
- wrz, 12, 2017
- siwy
- Debian, Linux
1. restart 2. Rozpoczęcie edycji pierwszego wpisu GRUB przez wciśnięcie przycisku “e” (na dole są podpowiedzi jeśli to nie “e”). 3. Linia do której będziemy coś dopisywać zaczyna się kernel i kończy ro quiet może trochę się różnić. 4. Dopisujemy do tej linii na koniec rw init=/bin/bash. Zmiany po restarcie nie będą zapisane. 5. Wciskamy […]
Read MoreLet’s Encrypt (certbot)
- No Comments
- wrz, 12, 2017
- siwy
- Debian, Linux
Darmowy SSL (https): Let’s Encrypt Instalacja na Debianie 8(jessie). Dla innej wersji instalacja może wyglądać inaczej. Zaleca się korzystanie z manuala z w/w strony: 1. Dodanie repozytorium sudo sh -c “echo ‘deb http://ftp.debian.org/debian jessie-backports main’ >> /etc/apt/sources.list” 2. Aktualizacja sudo apt-get update 3. Instalacja certbota sudo apt-get install python-certbot-apache -t jessie-backports 4. Utworzenie certyfikatu sudo […]
Read MoreZmiana klawiszy klawiatury w KDE
- No Comments
- sie, 17, 2017
- siwy
- Debian, KDE, Linux
Nie ma to jak rozwalony tabulator w Linuksie… Oto plaster zanim wymienimy klawiaturę. 1. Wygenerowanie oryginalnego pliku z znakami klawiatury: setxkbmap -print | xkbcomp -xkb -o original.xkb – 2. Dla bezpieczeństwa będziemy edytować innym plik: cp original.xkb original-right-ctrl-is-tab.xkb 3. Zmiany w pliku original-right-ctrl-is-tab.xkb: z <TAB> = 23; na <TAB> = 105; z <RCTL> = 105; […]
Read More