Debian 11 comming with Samba 4.13 , but if wont to install latest version of Samba on fortunately, there is custom repository https://apt.van-belle.nl/ for Debian and Ubuntu. Prepare : sudo apt-get install wget apt-transport-https gnupg Add apt.van-belle.nl repository : wget -O- […]
November 9, 2021
SSH Public Key Authentication
November 9, 2021. Security

Public SSH key authentication is an SSH authentication method that allows users to use cryptographically generated keys to log into remote servers. SSH keys are more secure than raw passwords and provide a much more efficient way of logging into SSH. SSH keys are automated, and once authorized, do […]
November 5, 2021
How to set System Locales
November 5, 2021. Administration

A locale is a set of environmental variables that defines the language, country, and character encoding settings (or any other special variant preferences) for your applications and shell session on a Linux system. Locale affects things such as the time/date format, the first day of the week, […]
November 2, 2021
Logical Volume Manager
November 2, 2021. Administration

Managing disk space has always been a significant task. Running out of disk space used to be the start of a long and complex series of tasks to increase the space available to a disk partition. It also required taking the system off-line. This usually involved installing a new hard drive, booting […]
October 26, 2021
Install Node.js 17 on Debian 11
October 26, 2021. Programming

As an asynchronous event-driven JavaScript runtime, Node.js is designed to build scalable network applications. Nodejs team build Debian custom repositrory and instalation of nodejs is very simple : sudo curl -fsSL https://deb.nodesource.com/setup_17.x | bash - sudo apt-get install -y nodejs […]
Change NTP server on Debian 11
October 26, 2021. Administration

The Network Time Protocol (NTP) is a networking protocol for clock synchronization between computer systems over packet-switched, variable-latency data networks. In operation since before 1985, NTP is one of the oldest Internet protocols in current use. NTP was designed by David L. Mills of the […]
October 22, 2021
Installation of latest Composer
October 22, 2021. Programming

Composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you. Composer requires PHP 5.3.2+ to run. A few sensitive php settings and compile flags are also required, but when using the installer […]
October 21, 2021
Access Control Lists(ACL) in Linux
October 21, 2021. Security

What is ACL ? Access control list (ACL) provides an additional, more flexible permission mechanism for file systems. It is designed to assist with UNIX file permissions. ACL allows you to give permissions for any user or group to any disc resource. Use of ACL : Think of a scenario in which a […]
« previous entries - page 3 of 4 - next entries »