su - usermod -aG sudo <username> exit exit
Now log back in as user (so not as root) and go on with your day.
Failed and working projects, notes etc.
su - usermod -aG sudo <username> exit exit
Now log back in as user (so not as root) and go on with your day.
The normal ways to recover a lost password are:
If neither of these is an option, then you have a third option, and that is using the occ
command. See Using the occ command to learn more about using the occ
command.
$ sudo -u www-data php /var/www/nextcloud/occ user:resetpassword admin
Enter a new password:
Confirm the new password:
Successfully reset password for admin
If your Nextcloud username is not admin
, then substitute your Nextcloud username.
unRAID docker: /config/www/nextcloud
unRAID user: abc
$ sudo -u abc php /config/www/nextcloud/occ user:resetpassword admin
Open Terminal
ssh-keygen, create
copy contents of .pub key from /root/.ssh
open gitlab > settings > ssh keys
paste key in field, give title, press add key
git clone https://github.com/twolfson/sexy-bash-prompt.git
cd sexy-bash-prompt && make install && source ~/.bashrc
Sauce: https://github.com/twolfson/sexy-bash-prompt
su
enter root password
curl -sL https://deb.nodesource.com/setup_12.x | bash -
apt-get install -y nodejs
exit
node -v
If you updated to the latest version and the following error appears when you try to launch Themler please follow the instruction below:
Fatal error: require_once(): Failed opening required '[...]/administrator/includes/toolbar.php' (include_path='.:/usr/lib/php7.2') in [...]/templates/[theme_name]/app/index.php on line 25
www/Joomla_directory/templates
;/app
folder;index.php
for editing in any html or text editor;require_once JPATH_BASE . DS . 'includes' . DS . 'toolbar.php';
$prefix = version_compare(JVERSION, '3.9', '>=') ? 'sub' : '';
require_once JPATH_BASE . DS . 'includes' . DS . $prefix . 'toolbar.php';
/app/start
folder;data.php
file for editing and follow step 4;manifest.php
file for editing and follow step 4;
STEP 1. Press CTRL-H to bring up the Find/Replace Dialog.
STEP 2. Choose the “Regular expressions” checkbox near the bottom of the dialog.
STEP 3.a To add “test” to the beginning of each line, type `^` in the “Find what” field, and “test” in the “Replace with” field. Then hit “Replace All”.
STEP 3.b To add “test” to the end of each line, type `$` in the “Find what” field, and “test” in the “Replace with” field. Then hit “Replace All”.
To force a scan after a manual file transfer, for example, can be done as follows:
sudo -u [USER] php occ files:scan --all
for example:
sudo -u john php occ files:scan --all
Usage: files:scan [-p|--path="..."] [-q|--quiet] [-v|vv|vvv --verbose] [--all] [user_id1] ... [user_idN] Arguments: user_id will rescan all files of the given user(s) Options: --path limit rescan to the user/path given --all will rescan all files of all known users --quiet suppress any output --verbose files and directories being processed are shown additionally during scanning --unscanned scan only previously unscanned files
Source: https://docs.nextcloud.com/server/15/admin_manual/configuration_server/occ_command.html
To automate PDF processing, you need to grab the following first from your repository:
apt-get install git qpdf exiftool pdftk poppler-utils tesseract-ocr imagemagick-6.q16
Then, install PDF Ingest into a desired folder
git clone https://github.com/tezcatlipoca/pdf_ingest
Enter the followind folder:
cd pdf_ingest
mkdir DST
mkdir SRC
Put the files you wish to convert into SRC and type the following command:
./bulk
Wait until done, then you’re done! 🙂