Tested on Ubuntu 21.10.
Source: https://unix.stackexchange.com/questions/414926/bind-capshjkl-to-arrow-keys-caps-to-esc
Create the configuration file:
touch ~/.my_keyboard
Add the following to ~/.my_keyboard
:
```bash keycode 66 = Mode_switch keysym h = h H Left keysym l = l L Right keysym k = k K Up keysym j = j J Down keysym u = u U Prior keysym i = i I
...Ubuntu 20.04.2.0 LTS is installed natively or using VirtualBox and is up-to-date.
sudo apt install build-essential dkms linux-headers-$(uname -r)
``` sudo apt-get install vim libncurses5-dev gcc make git exuberant-ctags libssl-dev bis
...SSHFS allows us to mount a remote filesystem and work with it locally. This means that instead of using the terminal to work with files on the server, we can simply mount the server’s filesystem with SSHFS and then use our local file explorer to navigate and manipulate files as though they existed on our laptop or desktop.
sshfs
:The Bitnami Redmine Stack is a very clean and simple way of installing Redmine. It also has the advantage of being well supported and documented. It avoids the hassle of having to install mysql, ruby, rails, subversion, etc individually. However, there are some important things to keep in mind:
Generate a dump file of the old database (if there are multiple databases
(_production, _development, _test), only the production database needs to be migrated):
mysqldump redmine_production > dump_file.sql
Migrate the database:
mysql -u username -p new_database_name < path/to/old_database_dump.sql