Search found 11 matches

by azo
Wed Apr 08, 2026 8:35 pm
Forum: Linux
Topic: Install VirtualBox 7.2
Replies: 1
Views: 44

Re: Install VirtualBox 7.2

phpVirtualBox 7.2 on Ubuntu

o install phpVirtualBox 7.2 on Ubuntu, install Apache/Nginx, PHP, and VirtualBox. Clone or download phpVirtualBox 7.2 into the webroot, configure config.php with the vbox user credentials, and enable the vboxweb-service. Access the interface at http://localhost ...
by azo
Wed Apr 08, 2026 8:28 pm
Forum: Linux
Topic: Install VirtualBox 7.2
Replies: 1
Views: 44

Install VirtualBox 7.2

To install VirtualBox 7.2 on Ubuntu 24.04 LTS , add the official Oracle repository to ensure the latest version, then install via apt . Run sudo apt update , install dependencies (wget, gpg), add the Oracle GPG key, add the repository, update again, and install virtualbox-7.2 . Finally, install the ...
by azo
Tue Feb 17, 2026 8:41 pm
Forum: Linux
Topic: List available IP addrecess in LAN
Replies: 0
Views: 42

List available IP addrecess in LAN

Linux terminal:

Code: Select all

for ip in $(seq 1 254); do ping -c 1 192.168.10.$ip>/dev/null; 
    [ $? -eq 0 ] && echo "192.168.10.$ip UP" || : ;
done
output:

Code: Select all

192.168.10.1 UP
192.168.10.2 UP
192.168.10.7 UP
192.168.10.8 UP
by azo
Wed Nov 27, 2024 10:25 am
Forum: Linux
Topic: NextCloud
Replies: 0
Views: 310

NextCloud

NextCloud can be installed as a snap package during Ubuntu 24.04 installation

How to use Apache2 as a web proxy

https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md#apache

In addition config.php should be updated as it is written here:
https://www.reddit.com/r/NextCloud/comments ...
by azo
Mon Mar 20, 2023 12:17 pm
Forum: Linux
Topic: How to use SFTP with a chroot jail
Replies: 0
Views: 293

How to use SFTP with a chroot jail

Creating a new group
The first thing to do is to create a new group for SFTP users. Open a terminal window and issue the command:

sudo groupadd sftponly

Adding and modifying users
Next, we need to add users to this new group. If you need to create a new users (and add them to the group), this ...
by azo
Tue Mar 14, 2023 10:29 am
Forum: XPX coding
Topic: Iteration on aggregate. REPEAT. WHILE.
Replies: 0
Views: 387

Iteration on aggregate. REPEAT. WHILE.

Sometimes we need to alter aggregate content during iteration on it.
New element can be added to a aggregate.

The following example demonstrates possible problem.
Initial aggregate size is 3. There are 3 elements in there.
In REPEAT cycle we append one more element
But anyway REPEAT makes only 3 ...
by azo
Tue Nov 29, 2022 9:22 pm
Forum: Linux
Topic: VirtualBox. Shared folder
Replies: 0
Views: 254

VirtualBox. Shared folder

How to make shared folder in VirtualBox guest - Ubuntu

There is no need to mount the guest additions ISO and install from it if your guest OS is Ubuntu.
Instead, open a terminal and enter the following

sudo apt-get install virtualbox-guest-utils

See here: https://askubuntu.com/questions/573596 ...
by azo
Wed Nov 24, 2021 9:28 pm
Forum: Linux
Topic: Sonatype nexus upgrade
Replies: 0
Views: 289

Sonatype nexus upgrade

Existing version: nexus-3.19.1-01
Version to upgrade: nexus-3.37.0-01

Stop nexus:
/etc/init.d/nexus stop

Get the latest version

wget https://download.sonatype.com/nexus/3/latest-unix.tar.gz


Extract downloaded package. Note, all files inside sonatype-work will remain

tar xzvf latest-unix ...
by azo
Tue Aug 27, 2019 9:38 am
Forum: XPX coding
Topic: xpfSizeOf vs EXISTS
Replies: 1
Views: 343

xpfSizeOf vs EXISTS

Function xpfSizeOf was introduces quite long time ago.
Before standard EXISTS function was used.
According to standard EXISTS requires input value to be NOT empty.

Before EXISTS was used in the following way


doc_rel_list := get_representing_product_relationship('urn:plcs:rdl:missing-std:Document ...
by azo
Mon Aug 26, 2019 7:39 pm
Forum: Linux
Topic: GitLab. backup/restore
Replies: 0
Views: 273

GitLab. backup/restore

I was able to make back-up and restore GitLab to "fresh" GitLab installation.
Probably I was just lucky.

Linux: Ubuntu 16.04
GitLab: 10.2.4

Create back-up on fixed copy of the Git server

sudo gitlab-rake gitlab:backup:create

Back-up package appeared

/var/opt/gitlab/backups/1566846988_2019_08 ...