Tido Posted July 8, 2020 Posted July 8, 2020 @Werner, @PittPC On 7/4/2020 at 12:08 PM, Tido said: If I compare what I already have the newest, leaves to install from your list: samba php-cgi cryptsetup mdadm gnupg-agent quota Who would have thought so, it is SAMBA ! which brings Python 2: Spoiler # apt install samba Reading package lists... Done Building dependency tree Reading state information... Done The following additional packages will be installed: libavahi-client3 libavahi-common-data libavahi-common3 libcups2 libldb1 libpython-stdlib libpython2-stdlib libpython2.7 libpython2.7-minimal libpython2.7-stdlib libtalloc2 libtdb1 libtevent0 libwbclient0 python python-crypto python-dnspython python-ldb python-minimal python-samba python-talloc python-tdb python2 python2-minimal python2.7 python2.7-minimal samba-common samba-common-bin samba-libs tdb-tools Suggested packages: cups-common python-doc python-tk python-crypto-doc python2-doc python2.7-doc binfmt-support bind9 bind9utils ctdb ldb-tools smbldap-tools ufw winbind heimdal-clients Recommended packages: python-gpg attr samba-dsdb-modules samba-vfs-modules The following NEW packages will be installed: libavahi-client3 libavahi-common-data libavahi-common3 libcups2 libldb1 libpython-stdlib libpython2-stdlib libpython2.7 libpython2.7-minimal libpython2.7-stdlib libtalloc2 libtdb1 libtevent0 libwbclient0 python python-crypto python-dnspython python-ldb python-minimal python-samba python-talloc python-tdb python2 python2-minimal python2.7 python2.7-minimal samba samba-common samba-common-bin samba-libs tdb-tools 0 upgraded, 31 newly installed, 0 to remove and 10 not upgraded. Need to get 15.3 MB of archives. After this operation, 83.5 MB of additional disk space will be used. 0 Quote
Werner Posted July 8, 2020 Posted July 8, 2020 Welp, nothing much that can be done about unfortunately... 0 Quote
Tido Posted July 8, 2020 Posted July 8, 2020 @PittPC another install from scratch - something is broken. I have not done anything more, than install.sh and try to install NC. It doesn't work. 1. NC install == doesn't work, reboot, still doesn't work. 2. bitwarden == doesn't work # ls -l /volumes/*/docker/* /volumes/USB_MemoryStick/docker/bitwarden: total 0 /volumes/USB_MemoryStick/docker/nextcloud: total 4 drwxr-xr-x 2 root root 4096 Jul 8 12:23 data /volumes/USB_MemoryStick/docker/nextcloud_mariadb: total 0 3. Transmission install, just like yesterday and voila - this one works. # ls -l /volumes/*/docker/* /volumes/USB_MemoryStick/docker/bitwarden: total 0 /volumes/USB_MemoryStick/docker/nextcloud: total 4 drwxr-xr-x 2 root root 4096 Jul 8 12:23 data /volumes/USB_MemoryStick/docker/nextcloud_mariadb: total 0 /volumes/USB_MemoryStick/docker/transmission: total 16 drwxr-xr-x 2 root download 4096 Jul 8 12:49 blocklists drwxr-xr-x 2 root download 4096 Jul 8 12:49 resume -rw------- 1 root download 2254 Jul 8 12:49 settings.json drwxr-xr-x 2 root download 4096 Jul 8 12:49 torrents 0 Quote
PittPC Posted July 8, 2020 Author Posted July 8, 2020 @Tido I'm wondering if special characters in the password are causing Nextcloud docker install to break on the shell level. Try using a a simple password of just password with all 3 check boxes checked then hit install. i'm curious if this is the problem. 0 Quote
Tido Posted July 8, 2020 Posted July 8, 2020 57 minutes ago, PittPC said: special characters Test.Test50 so this shouldn't be the cause. 59 minutes ago, PittPC said: all 3 check boxes checked This was always the case If you give me the code, I can run it line by line in the shell and show you the result. 0 Quote
PittPC Posted July 10, 2020 Author Posted July 10, 2020 I tied it with that password that you tried and does work. I'm wondering if you have 2 docker directories somewhere in /volumes, check all directories and see if there are two. There was a bug where it wasnt wiping the harddrive if you did a new install. If you installed when that bug existed it may have mounted that volume with docker already there and created a duplicate. here is the code we use to install nextcloud if(isset($_POST['install_nextcloud'])){ // Check to see if docker is running $status_service_docker = exec("systemctl status docker | grep running"); if(empty($status_service_docker)){ $_SESSION['alert_type'] = "warning"; $_SESSION['alert_message'] = "Docker is not running therefore we cannot install!"; }else{ $password = $_POST['password']; $enable_samba_auth = $_POST['enable_samba_auth']; $enable_samba_mount = $_POST['enable_samba_mount']; $install_apps = $_POST['install_apps']; $data_volume = $_POST['data_volume']; mkdir("/volumes/$config_docker_volume/docker/nextcloud"); mkdir("/volumes/$config_docker_volume/docker/nextcloud/data"); mkdir("/volumes/$data_volume/nextcloud_data"); mkdir("/volumes/$data_volume/nextcloud_data/appdata"); mkdir("/volumes/$config_docker_volume/docker/nextcloud_mariadb"); exec("docker run -d --name nextcloud_mariadb --net=my-network -e MYSQL_ROOT_PASSWORD=password -e MYSQL_DATABASE=nextcloud -e MYSQL_USER=nextcloud -e MYSQL_PASSWORD=password -p 3306:3306 --restart=unless-stopped -v /volumes/$config_docker_volume/docker/nextcloud_mariadb:/config linuxserver/mariadb"); exec("docker run -d --name nextcloud --net=my-network -p 6443:443 --restart=unless-stopped -v /volumes/$config_docker_volume/docker/nextcloud/data:/data -v /volumes/$data_volume/nextcloud_data/appdata:/config linuxserver/nextcloud"); exec("sleep 80"); exec("docker exec nextcloud rm -rf /config/www/nextcloud/core/skeleton"); if($enable_samba_mount == 1){ exec("docker exec nextcloud mkdir /config/www/nextcloud/core/skeleton"); exec("docker exec nextcloud mkdir /config/www/nextcloud/core/skeleton/Shared-Folders"); } exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ maintenance:install --database='mysql' --database-name='nextcloud' --database-host='nextcloud_mariadb' --database-user='nextcloud' --database-pass='password' --database-table-prefix='' --admin-user='admin' --admin-pass='$password'"); //Add Trusted Hosts $docker_gateway = exec("docker network inspect my-network | grep Gateway | awk '{print $2}' | sed 's/\\\"//g'"); //Add Hostname and Primary IP to trusted_domains list exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ config:system:set trusted_domains 2 --value=$config_hostname"); exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ config:system:set trusted_domains 3 --value=$config_primary_ip"); //Disable Support, usage survey and first run wizard exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:disable support"); exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:disable survey_client"); exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:disable firstrunwizard"); exec("docker exec nextcloud rm -rf /config/www/nextcloud/apps/support"); exec("docker exec nextcloud rm -rf /config/www/nextcloud/apps/survey_client"); exec("docker exec nextcloud rm -rf /config/www/nextcloud/apps/firstrunwizard"); if($install_apps == 1){ //Install Apps //Install Calendar exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:install calendar"); exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable calendar"); //Install Contacts exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:install contacts"); exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable contacts"); //Install Talk //exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:install spreed"); //exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable spreed"); //Install Community Document Server //exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:install documentserver_community"); //exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable documentserver_community"); //Install OnlyOffice //exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:install onlyoffice"); //exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable onlyoffice"); //Install Draw.IO //exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:install drawio"); //exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable drawio"); //Install Mail //exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:install mail"); //exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable mail"); } //Set Auth Backend to SAMBA - Install External User Auth Support (For SAMBA Auth) if($enable_samba_auth == 1){ exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:install user_external"); exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable user_external"); exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ config:system:set user_backends 0 arguments 0 --value=$docker_gateway"); exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ config:system:set user_backends 0 class --value=OC_User_SMB"); } //Fix Setup DB Errors This may be able to removed in the future exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ db:add-missing-indices"); exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ db:convert-filecache-bigint"); if($enable_samba_mount == 1){ //Enable External Files Support for Samba mounts exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ app:enable files_external"); //Add Network Shares //Add Users Home folder exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ files_external:create Home 'smb' password::logincredentials -c host=$docker_gateway -c share='users/\$user' -c domain=WORKGROUP"); //Enable Nextcloud Sharing on Users Home exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ files_external:option 1 enable_sharing true"); //Add All Other Shares exec("ls /etc/samba/shares", $share_list); foreach ($share_list as $share) { exec("docker exec nextcloud sudo -u abc php /config/www/nextcloud/occ files_external:create /Shared-Folders/$share 'smb' password::logincredentials -c host=$docker_gateway -c share='$share' -c domain=WORKGROUP"); } } } //End Docker Check header("Location: apps.php"); } this is the actual docker run command replace YOURDOCKERVOLUMEHERE with your the volume your docker folder is located at replace YOURDATAVOLUMEHERE with the volume you want to have your nextcloud data located should docker run -d --name nextcloud_mariadb --net=my-network -e MYSQL_ROOT_PASSWORD=password -e MYSQL_DATABASE=nextcloud -e MYSQL_USER=nextcloud -e MYSQL_PASSWORD=password -p 3306:3306 --restart=unless-stopped -v /volumes/YOURDOCKERVOLUMEHERE/docker/nextcloud_mariadb:/config linuxserver/mariadb docker run -d --name nextcloud --net=my-network -p 6443:443 --restart=unless-stopped -v /volumes/YOURDOCKERVOLUMEHERE/docker/nextcloud/data:/data -v /volumes/YOURDATAVOLUMEHERE/nextcloud_data/appdata:/config linuxserver/nextcloud 0 Quote
Tido Posted July 10, 2020 Posted July 10, 2020 Error message A: # docker run -d --name nextcloud_mariadb --net=my-network -e MYSQL_ROOT_PASSWORD=password -e MYSQL_DATABASE=nextcloud -e MYSQL_USER=nextcloud -e MYSQL_PASSWORD=password -p 3306:3306 --restart=unless-stopped -v /volumes/USB_MemoryStick/docker/nextcloud_mariadb:/config linuxserver/m Unable to find image 'linuxserver/m:latest' locally docker: Error response from daemon: pull access denied for linuxserver/m, repository does not exist or may require 'docker login': denied: requested access to the resource is denied. See 'docker run --help'. Error message B: # docker run -d --name nextcloud --net=my-network -p 6443:443 --restart=unless-stopped -v /volumes/USB_MemoryStick/docker/nextcloud/data:/data -v /volumes/USB_MemoryStick/nextcloud_data/appdata:/config linuxserver/nextcloud docker: Error response from daemon: Conflict. The container name "/nextcloud" is already in use by container "bbdecd6502491b917ee971fc28ec53653d4db5f858ddd0afa3c1a3023a9ecf7e". You have to remove (or rename) that container to be able to reuse that name. See 'docker run --help'. docker ps -a lists all running containers: # docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES bbdecd650249 linuxserver/nextcloud "/init" 58 seconds ago Created nextcloud # systemctl status docker | grep running Active: active (running) since Fri 2020-07-10 23:00:53 CEST; 17min a :/volumes# ls -l total 8 drwxr-xr-x 2 root root 4096 Jul 10 23:10 docker drwxr-xr-x 2 root root 4096 Jul 10 23:09 USB_MemoryStick root@TidoNAS:/volumes/USB_MemoryStick# ls -l total 0 root@TidoNAS:/volumes/docker# ls -la total 8 drwxr-xr-x 2 root root 4096 Jul 10 23:10 . drwxr-xr-x 4 root root 4096 Jul 10 23:00 .. 0 Quote
PittPC Posted July 10, 2020 Author Posted July 10, 2020 for Error A: the docker repo isnt fully specified your missing the ariadb at the end instead you have m Quote docker run -d --name nextcloud_mariadb --net=my-network -e MYSQL_ROOT_PASSWORD=password -e MYSQL_DATABASE=nextcloud -e MYSQL_USER=nextcloud -e MYSQL_PASSWORD=password -p 3306:3306 --restart=unless-stopped -v /volumes/YOURDOCKERVOLUMEHERE/docker/nextcloud_mariadb:/config linuxserver/mariadb lets do this stop all your dockers instances and remove them delete the docker directory and recreate it create these directories inside docker folder nextcloud_mariadb nextcloud (inside nextcloud create a dir called data) create nextcloud_data on the root on one of your volume not inside the docker folder create another folder called appdata inside that then rerun the docker run commands and we'll see if we get any errors. 0 Quote
MacBreaker Posted August 2, 2020 Posted August 2, 2020 Hi @PittPC made a test today. Setup my HC2 on a spare SD-card: used "Armbian_20.02.7_Odroidxu4_buster_legacy_4.14.174.img" to write on SD-card 1234 -> 1234 -> >mypassword< reboot loged in as >user< sudo armbian-config -> made my settings.. sudo apt update && sudo apt upgrade installed my basic settings and tools sudo reboot OK! armbianmonitor -u http://ix.io/2sVR ..till now erverything is OK! loged in as root wget https://simpnas.com/install.sh; bash install.sh Spoiler S C:\WINDOWS\system32> ssh master@192.168.63.45 master@192.168.63.45's password: ___ _ _ _ __ ___ _ _ _ / _ \ __| |_ __ ___ (_) __| | \ \/ / | | | || | | | | |/ _` | '__/ _ \| |/ _` | \ /| | | | || |_ | |_| | (_| | | | (_) | | (_| | / \| |_| |__ _| \___/ \__,_|_| \___/|_|\__,_| /_/\_\\___/ |_| Welcome to Armbian buster with Linux 4.14.187-odroidxu4 System load: 0.51 0.17 0.06 Up time: 1 min Memory usage: 5 % of 1995MB IP: 192.168.63.45 CPU temp: 44°C Usage of /: 4% of 30G Last login: Sun Aug 2 10:24:24 2020 from 192.168.63.20 master@HC2:~$ aplay -l **** List of PLAYBACK Hardware Devices **** card 0: OdroidXU4 [Odroid-XU4], device 0: Primary multicodec-0 [Primary multicodec-0] Subdevices: 1/1 Subdevice #0: subdevice #0 master@HC2:~$ alsamixer master@HC2:~$ exit logout Connection to 192.168.63.45 closed. PS C:\WINDOWS\system32> ssh root@192.168.63.45 root@192.168.63.45's password: ___ _ _ _ __ ___ _ _ _ / _ \ __| |_ __ ___ (_) __| | \ \/ / | | | || | | | | |/ _` | '__/ _ \| |/ _` | \ /| | | | || |_ | |_| | (_| | | | (_) | | (_| | / \| |_| |__ _| \___/ \__,_|_| \___/|_|\__,_| /_/\_\\___/ |_| Welcome to Armbian buster with Linux 4.14.187-odroidxu4 System load: 0.34 0.18 0.08 Up time: 3 min Memory usage: 5 % of 1995MB IP: 192.168.63.45 CPU temp: 41°C Usage of /: 4% of 30G Last login: Sun Aug 2 10:01:31 2020 from 192.168.63.20 root@HC2:~# armbianmonitor -u System diagnosis information will now be uploaded to http://ix.io/2sVR Please post the URL in the forum where you've been asked for. root@HC2:~# wget https://simpnas.com/install.sh; bash install.sh --2020-08-02 10:35:01-- https://simpnas.com/install.sh Resolving simpnas.com (simpnas.com)... 209.166.184.226 Connecting to simpnas.com (simpnas.com)|209.166.184.226|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 5733 (5.6K) [text/x-sh] Saving to: ‘install.sh’ install.sh 100%[=================================================>] 5.60K --.-KB/s in 0.002s 2020-08-02 10:35:02 (3.47 MB/s) - ‘install.sh’ saved [5733/5733] ================================================================================== Checking For Updates... ================================================================================== Hit:1 http://security.debian.org buster/updates InRelease Hit:2 http://httpredir.debian.org/debian buster InRelease Hit:3 http://httpredir.debian.org/debian buster-updates InRelease Hit:4 http://httpredir.debian.org/debian buster-backports InRelease Hit:5 http://giteduberger.fr rpimonitor/ InRelease Hit:6 https://mirrors.netix.net/armbian/apt buster InRelease Reading package lists... Done Building dependency tree Reading state information... Done All packages are up to date. ================================================================================== Installing Updates... ================================================================================== Reading package lists... Done Building dependency tree Reading state information... Done Calculating upgrade... Done 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. ================================================================================== Installing Additional Required Packages... Samba, PHP, Rsync, mdadm (RAID), cryptsetup (LUKS Encryption) etc ================================================================================== Reading package lists... Done Building dependency tree Reading state information... Done apt-transport-https is already the newest version (1.8.2.1). dnsutils is already the newest version (1:9.11.5.P4+dfsg-5.1+deb10u1). curl is already the newest version (7.64.0-4+deb10u1). git is already the newest version (1:2.20.1-2+deb10u3). rsync is already the newest version (3.1.3-6). software-properties-common is already the newest version (0.96.20.2-2). The following additional packages will be installed: busybox cryptsetup-bin cryptsetup-initramfs cryptsetup-run libavahi-client3 libcups2 libldb1 libpython-stdlib libpython2-stdlib libpython2.7 libpython2.7-minimal libpython2.7-stdlib libsodium23 libtalloc2 libtdb1 libtevent0 libwbclient0 php-common php7.3-cgi php7.3-cli php7.3-common php7.3-json php7.3-opcache php7.3-readline python python-crypto python-dnspython python-ldb python-minimal python-samba python-talloc python-tdb python2 python2-minimal python2.7 python2.7-minimal samba-common samba-common-bin samba-libs tdb-tools Suggested packages: keyutils cups-common dracut-core php-pear python-doc python-tk python-crypto-doc python2-doc python2.7-doc binfmt-support bind9 bind9utils ctdb ldb-tools smbldap-tools ufw winbind heimdal-clients Recommended packages: default-mta | mail-transport-agent python-gpg attr samba-dsdb-modules samba-vfs-modules The following NEW packages will be installed: busybox cryptsetup cryptsetup-bin cryptsetup-initramfs cryptsetup-run gnupg-agent libavahi-client3 libcups2 libldb1 libpython-stdlib libpython2-stdlib libpython2.7 libpython2.7-minimal libpython2.7-stdlib libsodium23 libtalloc2 libtdb1 libtevent0 libwbclient0 mdadm php-cgi php-common php7.3-cgi php7.3-cli php7.3-common php7.3-json php7.3-opcache php7.3-readline python python-crypto python-dnspython python-ldb python-minimal python-samba python-talloc python-tdb python2 python2-minimal python2.7 python2.7-minimal samba samba-common samba-common-bin samba-libs tdb-tools 0 upgraded, 45 newly installed, 0 to remove and 0 not upgraded. Need to get 19.4 MB of archives. After this operation, 85.7 MB of additional disk space will be used. Get:1 http://httpredir.debian.org/debian buster/main armhf libpython2.7-minimal armhf 2.7.16-2+deb10u1 [395 kB] Get:2 http://security.debian.org buster/updates/main armhf libwbclient0 armhf 2:4.9.5+dfsg-5+deb10u1 [128 kB] Get:3 http://security.debian.org buster/updates/main armhf samba-libs armhf 2:4.9.5+dfsg-5+deb10u1 [4,873 kB] Get:4 http://httpredir.debian.org/debian buster/main armhf python2.7-minimal armhf 2.7.16-2+deb10u1 [1,171 kB] Get:5 http://httpredir.debian.org/debian buster/main armhf python2-minimal armhf 2.7.16-1 [41.4 kB] Get:6 http://httpredir.debian.org/debian buster/main armhf python-minimal armhf 2.7.16-1 [21.0 kB] Get:7 http://httpredir.debian.org/debian buster/main armhf libpython2.7-stdlib armhf 2.7.16-2+deb10u1 [1,837 kB] Get:8 http://httpredir.debian.org/debian buster/main armhf python2.7 armhf 2.7.16-2+deb10u1 [305 kB] Get:9 http://httpredir.debian.org/debian buster/main armhf libpython2-stdlib armhf 2.7.16-1 [20.8 kB] Get:10 http://httpredir.debian.org/debian buster/main armhf libpython-stdlib armhf 2.7.16-1 [20.8 kB] Get:11 http://httpredir.debian.org/debian buster/main armhf python2 armhf 2.7.16-1 [41.6 kB] Get:12 http://httpredir.debian.org/debian buster/main armhf python armhf 2.7.16-1 [22.8 kB] Get:13 http://httpredir.debian.org/debian buster/main armhf python-dnspython all 1.16.0-1 [90.1 kB] Get:14 http://httpredir.debian.org/debian buster/main armhf python-crypto armhf 2.6.1-9+b1 [255 kB] Get:15 http://httpredir.debian.org/debian buster/main armhf libtalloc2 armhf 2.1.14-2 [32.8 kB] Get:16 http://httpredir.debian.org/debian buster/main armhf libtdb1 armhf 1.3.16-2+b1 [39.4 kB] Get:17 http://httpredir.debian.org/debian buster/main armhf libtevent0 armhf 0.9.37-1 [27.7 kB] Get:18 http://httpredir.debian.org/debian buster/main armhf libldb1 armhf 2:1.5.1+really1.4.6-3 [111 kB] Get:19 http://httpredir.debian.org/debian buster/main armhf libpython2.7 armhf 2.7.16-2+deb10u1 [892 kB] Get:20 http://httpredir.debian.org/debian buster/main armhf python-ldb armhf 2:1.5.1+really1.4.6-3 [33.7 kB] Get:21 http://httpredir.debian.org/debian buster/main armhf python-tdb armhf 1.3.16-2+b1 [16.0 kB] Get:22 http://httpredir.debian.org/debian buster/main armhf libavahi-client3 armhf 0.7-4+b1 [54.5 kB] Get:23 http://httpredir.debian.org/debian buster/main armhf libcups2 armhf 2.2.10-6+deb10u3 [291 kB] Get:24 http://httpredir.debian.org/debian buster/main armhf python-talloc armhf 2.1.14-2 [12.2 kB] Get:25 http://httpredir.debian.org/debian buster/main armhf tdb-tools armhf 1.3.16-2+b1 [26.6 kB] Get:26 http://httpredir.debian.org/debian buster/main armhf busybox armhf 1:1.30.1-4 [419 kB] Get:27 http://httpredir.debian.org/debian buster/main armhf cryptsetup-bin armhf 2:2.1.0-5+deb10u2 [297 kB] Get:28 http://httpredir.debian.org/debian buster/main armhf cryptsetup-run armhf 2:2.1.0-5+deb10u2 [197 kB] Get:29 http://httpredir.debian.org/debian buster/main armhf cryptsetup-initramfs all 2:2.1.0-5+deb10u2 [69.6 kB] Get:30 http://httpredir.debian.org/debian buster/main armhf cryptsetup all 2:2.1.0-5+deb10u2 [51.5 kB] Get:31 http://httpredir.debian.org/debian buster/main armhf gnupg-agent all 2.2.12-1+deb10u1 [393 kB] Get:32 http://httpredir.debian.org/debian buster/main armhf libsodium23 armhf 1.0.17-1 [144 kB] Get:33 http://httpredir.debian.org/debian buster/main armhf mdadm armhf 4.1-1 [419 kB] Get:34 http://httpredir.debian.org/debian buster/main armhf php-common all 2:69 [15.0 kB] Get:35 http://httpredir.debian.org/debian buster/main armhf php7.3-common armhf 7.3.19-1~deb10u1 [529 kB] Get:36 http://security.debian.org buster/updates/main armhf python-samba armhf 2:4.9.5+dfsg-5+deb10u1 [1,812 kB] Get:37 http://httpredir.debian.org/debian buster/main armhf php7.3-json armhf 7.3.19-1~deb10u1 [16.3 kB] Get:38 http://httpredir.debian.org/debian buster/main armhf php7.3-opcache armhf 7.3.19-1~deb10u1 [159 kB] Get:39 http://httpredir.debian.org/debian buster/main armhf php7.3-readline armhf 7.3.19-1~deb10u1 [10.5 kB] Get:40 http://httpredir.debian.org/debian buster/main armhf php7.3-cli armhf 7.3.19-1~deb10u1 [1,173 kB] Get:41 http://httpredir.debian.org/debian buster/main armhf php7.3-cgi armhf 7.3.19-1~deb10u1 [1,139 kB] Get:42 http://security.debian.org buster/updates/main armhf samba-common all 2:4.9.5+dfsg-5+deb10u1 [170 kB] Get:43 http://httpredir.debian.org/debian buster/main armhf php-cgi all 2:7.3+69 [6,136 B] Get:44 http://security.debian.org buster/updates/main armhf samba-common-bin armhf 2:4.9.5+dfsg-5+deb10u1 [579 kB] Get:45 http://security.debian.org buster/updates/main armhf samba armhf 2:4.9.5+dfsg-5+deb10u1 [1,024 kB] Fetched 19.4 MB in 3s (5,979 kB/s) Extracting templates from packages: 100% Preconfiguring packages ... Selecting previously unselected package libpython2.7-minimal:armhf. (Reading database ... 37487 files and directories currently installed.) Preparing to unpack .../0-libpython2.7-minimal_2.7.16-2+deb10u1_armhf.deb ... Unpacking libpython2.7-minimal:armhf (2.7.16-2+deb10u1) ... Selecting previously unselected package python2.7-minimal. Preparing to unpack .../1-python2.7-minimal_2.7.16-2+deb10u1_armhf.deb ... Unpacking python2.7-minimal (2.7.16-2+deb10u1) ... Selecting previously unselected package python2-minimal. Preparing to unpack .../2-python2-minimal_2.7.16-1_armhf.deb ... Unpacking python2-minimal (2.7.16-1) ... Selecting previously unselected package python-minimal. Preparing to unpack .../3-python-minimal_2.7.16-1_armhf.deb ... Unpacking python-minimal (2.7.16-1) ... Selecting previously unselected package libpython2.7-stdlib:armhf. Preparing to unpack .../4-libpython2.7-stdlib_2.7.16-2+deb10u1_armhf.deb ... Unpacking libpython2.7-stdlib:armhf (2.7.16-2+deb10u1) ... Selecting previously unselected package python2.7. Preparing to unpack .../5-python2.7_2.7.16-2+deb10u1_armhf.deb ... Unpacking python2.7 (2.7.16-2+deb10u1) ... Selecting previously unselected package libpython2-stdlib:armhf. Preparing to unpack .../6-libpython2-stdlib_2.7.16-1_armhf.deb ... Unpacking libpython2-stdlib:armhf (2.7.16-1) ... Selecting previously unselected package libpython-stdlib:armhf. Preparing to unpack .../7-libpython-stdlib_2.7.16-1_armhf.deb ... Unpacking libpython-stdlib:armhf (2.7.16-1) ... Setting up libpython2.7-minimal:armhf (2.7.16-2+deb10u1) ... Setting up python2.7-minimal (2.7.16-2+deb10u1) ... Setting up python2-minimal (2.7.16-1) ... Selecting previously unselected package python2. (Reading database ... 38246 files and directories currently installed.) Preparing to unpack .../python2_2.7.16-1_armhf.deb ... Unpacking python2 (2.7.16-1) ... Setting up python-minimal (2.7.16-1) ... Selecting previously unselected package python. (Reading database ... 38276 files and directories currently installed.) Preparing to unpack .../00-python_2.7.16-1_armhf.deb ... Unpacking python (2.7.16-1) ... Selecting previously unselected package libwbclient0:armhf. Preparing to unpack .../01-libwbclient0_2%3a4.9.5+dfsg-5+deb10u1_armhf.deb ... Unpacking libwbclient0:armhf (2:4.9.5+dfsg-5+deb10u1) ... Selecting previously unselected package python-dnspython. Preparing to unpack .../02-python-dnspython_1.16.0-1_all.deb ... Unpacking python-dnspython (1.16.0-1) ... Selecting previously unselected package python-crypto. Preparing to unpack .../03-python-crypto_2.6.1-9+b1_armhf.deb ... Unpacking python-crypto (2.6.1-9+b1) ... Selecting previously unselected package libtalloc2:armhf. Preparing to unpack .../04-libtalloc2_2.1.14-2_armhf.deb ... Unpacking libtalloc2:armhf (2.1.14-2) ... Selecting previously unselected package libtdb1:armhf. Preparing to unpack .../05-libtdb1_1.3.16-2+b1_armhf.deb ... Unpacking libtdb1:armhf (1.3.16-2+b1) ... Selecting previously unselected package libtevent0:armhf. Preparing to unpack .../06-libtevent0_0.9.37-1_armhf.deb ... Unpacking libtevent0:armhf (0.9.37-1) ... Selecting previously unselected package libldb1:armhf. Preparing to unpack .../07-libldb1_2%3a1.5.1+really1.4.6-3_armhf.deb ... Unpacking libldb1:armhf (2:1.5.1+really1.4.6-3) ... Selecting previously unselected package libpython2.7:armhf. Preparing to unpack .../08-libpython2.7_2.7.16-2+deb10u1_armhf.deb ... Unpacking libpython2.7:armhf (2.7.16-2+deb10u1) ... Selecting previously unselected package python-ldb. Preparing to unpack .../09-python-ldb_2%3a1.5.1+really1.4.6-3_armhf.deb ... Unpacking python-ldb (2:1.5.1+really1.4.6-3) ... Selecting previously unselected package python-tdb. Preparing to unpack .../10-python-tdb_1.3.16-2+b1_armhf.deb ... Unpacking python-tdb (1.3.16-2+b1) ... Selecting previously unselected package libavahi-client3:armhf. Preparing to unpack .../11-libavahi-client3_0.7-4+b1_armhf.deb ... Unpacking libavahi-client3:armhf (0.7-4+b1) ... Selecting previously unselected package libcups2:armhf. Preparing to unpack .../12-libcups2_2.2.10-6+deb10u3_armhf.deb ... Unpacking libcups2:armhf (2.2.10-6+deb10u3) ... Selecting previously unselected package python-talloc:armhf. Preparing to unpack .../13-python-talloc_2.1.14-2_armhf.deb ... Unpacking python-talloc:armhf (2.1.14-2) ... Selecting previously unselected package samba-libs:armhf. Preparing to unpack .../14-samba-libs_2%3a4.9.5+dfsg-5+deb10u1_armhf.deb ... Unpacking samba-libs:armhf (2:4.9.5+dfsg-5+deb10u1) ... Selecting previously unselected package python-samba. Preparing to unpack .../15-python-samba_2%3a4.9.5+dfsg-5+deb10u1_armhf.deb ... Unpacking python-samba (2:4.9.5+dfsg-5+deb10u1) ... Selecting previously unselected package samba-common. Preparing to unpack .../16-samba-common_2%3a4.9.5+dfsg-5+deb10u1_all.deb ... Unpacking samba-common (2:4.9.5+dfsg-5+deb10u1) ... Selecting previously unselected package samba-common-bin. Preparing to unpack .../17-samba-common-bin_2%3a4.9.5+dfsg-5+deb10u1_armhf.deb ... Unpacking samba-common-bin (2:4.9.5+dfsg-5+deb10u1) ... Selecting previously unselected package tdb-tools. Preparing to unpack .../18-tdb-tools_1.3.16-2+b1_armhf.deb ... Unpacking tdb-tools (1.3.16-2+b1) ... Selecting previously unselected package samba. Preparing to unpack .../19-samba_2%3a4.9.5+dfsg-5+deb10u1_armhf.deb ... Unpacking samba (2:4.9.5+dfsg-5+deb10u1) ... Selecting previously unselected package busybox. Preparing to unpack .../20-busybox_1%3a1.30.1-4_armhf.deb ... Unpacking busybox (1:1.30.1-4) ... Selecting previously unselected package cryptsetup-bin. Preparing to unpack .../21-cryptsetup-bin_2%3a2.1.0-5+deb10u2_armhf.deb ... Unpacking cryptsetup-bin (2:2.1.0-5+deb10u2) ... Selecting previously unselected package cryptsetup-run. Preparing to unpack .../22-cryptsetup-run_2%3a2.1.0-5+deb10u2_armhf.deb ... Unpacking cryptsetup-run (2:2.1.0-5+deb10u2) ... Selecting previously unselected package cryptsetup-initramfs. Preparing to unpack .../23-cryptsetup-initramfs_2%3a2.1.0-5+deb10u2_all.deb ... Unpacking cryptsetup-initramfs (2:2.1.0-5+deb10u2) ... Selecting previously unselected package cryptsetup. Preparing to unpack .../24-cryptsetup_2%3a2.1.0-5+deb10u2_all.deb ... Unpacking cryptsetup (2:2.1.0-5+deb10u2) ... Selecting previously unselected package gnupg-agent. Preparing to unpack .../25-gnupg-agent_2.2.12-1+deb10u1_all.deb ... Unpacking gnupg-agent (2.2.12-1+deb10u1) ... Selecting previously unselected package libsodium23:armhf. Preparing to unpack .../26-libsodium23_1.0.17-1_armhf.deb ... Unpacking libsodium23:armhf (1.0.17-1) ... Selecting previously unselected package mdadm. Preparing to unpack .../27-mdadm_4.1-1_armhf.deb ... Unpacking mdadm (4.1-1) ... Selecting previously unselected package php-common. Preparing to unpack .../28-php-common_2%3a69_all.deb ... Unpacking php-common (2:69) ... Selecting previously unselected package php7.3-common. Preparing to unpack .../29-php7.3-common_7.3.19-1~deb10u1_armhf.deb ... Unpacking php7.3-common (7.3.19-1~deb10u1) ... Selecting previously unselected package php7.3-json. Preparing to unpack .../30-php7.3-json_7.3.19-1~deb10u1_armhf.deb ... Unpacking php7.3-json (7.3.19-1~deb10u1) ... Selecting previously unselected package php7.3-opcache. Preparing to unpack .../31-php7.3-opcache_7.3.19-1~deb10u1_armhf.deb ... Unpacking php7.3-opcache (7.3.19-1~deb10u1) ... Selecting previously unselected package php7.3-readline. Preparing to unpack .../32-php7.3-readline_7.3.19-1~deb10u1_armhf.deb ... Unpacking php7.3-readline (7.3.19-1~deb10u1) ... Selecting previously unselected package php7.3-cli. Preparing to unpack .../33-php7.3-cli_7.3.19-1~deb10u1_armhf.deb ... Unpacking php7.3-cli (7.3.19-1~deb10u1) ... Selecting previously unselected package php7.3-cgi. Preparing to unpack .../34-php7.3-cgi_7.3.19-1~deb10u1_armhf.deb ... Unpacking php7.3-cgi (7.3.19-1~deb10u1) ... Selecting previously unselected package php-cgi. Preparing to unpack .../35-php-cgi_2%3a7.3+69_all.deb ... Unpacking php-cgi (2:7.3+69) ... Setting up cryptsetup-bin (2:2.1.0-5+deb10u2) ... Setting up php-common (2:69) ... Created symlink /etc/systemd/system/timers.target.wants/phpsessionclean.timer → /lib/systemd/system/phpsessionclean.timer. Setting up libsodium23:armhf (1.0.17-1) ... Setting up libtdb1:armhf (1.3.16-2+b1) ... Setting up samba-common (2:4.9.5+dfsg-5+deb10u1) ... Creating config file /etc/samba/smb.conf with new version Setting up libwbclient0:armhf (2:4.9.5+dfsg-5+deb10u1) ... Setting up libpython2.7-stdlib:armhf (2.7.16-2+deb10u1) ... Setting up libtalloc2:armhf (2.1.14-2) ... Setting up busybox (1:1.30.1-4) ... Setting up php7.3-common (7.3.19-1~deb10u1) ... Creating config file /etc/php/7.3/mods-available/calendar.ini with new version Creating config file /etc/php/7.3/mods-available/ctype.ini with new version Creating config file /etc/php/7.3/mods-available/exif.ini with new version Creating config file /etc/php/7.3/mods-available/fileinfo.ini with new version Creating config file /etc/php/7.3/mods-available/ftp.ini with new version Creating config file /etc/php/7.3/mods-available/gettext.ini with new version Creating config file /etc/php/7.3/mods-available/iconv.ini with new version Creating config file /etc/php/7.3/mods-available/pdo.ini with new version Creating config file /etc/php/7.3/mods-available/phar.ini with new version Creating config file /etc/php/7.3/mods-available/posix.ini with new version Creating config file /etc/php/7.3/mods-available/shmop.ini with new version Creating config file /etc/php/7.3/mods-available/sockets.ini with new version Creating config file /etc/php/7.3/mods-available/sysvmsg.ini with new version Creating config file /etc/php/7.3/mods-available/sysvsem.ini with new version Creating config file /etc/php/7.3/mods-available/sysvshm.ini with new version Creating config file /etc/php/7.3/mods-available/tokenizer.ini with new version Setting up cryptsetup-run (2:2.1.0-5+deb10u2) ... insserv: FATAL: service checkroot has to be enabled to use service cryptdisks insserv: FATAL: service cryptdisks-early has to be enabled to use service cryptdisks insserv: FATAL: service checkroot has to be enabled to use service cryptdisks-early Setting up libtevent0:armhf (0.9.37-1) ... Setting up tdb-tools (1.3.16-2+b1) ... update-alternatives: using /usr/bin/tdbbackup.tdbtools to provide /usr/bin/tdbbackup (tdbbackup) in auto mode Setting up gnupg-agent (2.2.12-1+deb10u1) ... Setting up php7.3-opcache (7.3.19-1~deb10u1) ... Creating config file /etc/php/7.3/mods-available/opcache.ini with new version Setting up libavahi-client3:armhf (0.7-4+b1) ... Setting up cryptsetup-initramfs (2:2.1.0-5+deb10u2) ... update-initramfs: deferring update (trigger activated) Setting up mdadm (4.1-1) ... Generating mdadm.conf... done. update-initramfs: deferring update (trigger activated) update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults Setting up libpython2.7:armhf (2.7.16-2+deb10u1) ... Setting up libldb1:armhf (2:1.5.1+really1.4.6-3) ... Setting up python2.7 (2.7.16-2+deb10u1) ... Setting up cryptsetup (2:2.1.0-5+deb10u2) ... Setting up php7.3-json (7.3.19-1~deb10u1) ... Creating config file /etc/php/7.3/mods-available/json.ini with new version Setting up libpython2-stdlib:armhf (2.7.16-1) ... Setting up php7.3-readline (7.3.19-1~deb10u1) ... Creating config file /etc/php/7.3/mods-available/readline.ini with new version Setting up python2 (2.7.16-1) ... Setting up libpython-stdlib:armhf (2.7.16-1) ... Setting up libcups2:armhf (2.2.10-6+deb10u3) ... Setting up php7.3-cli (7.3.19-1~deb10u1) ... update-alternatives: using /usr/bin/php7.3 to provide /usr/bin/php (php) in auto mode update-alternatives: using /usr/bin/phar7.3 to provide /usr/bin/phar (phar) in auto mode update-alternatives: using /usr/bin/phar.phar7.3 to provide /usr/bin/phar.phar (phar.phar) in auto mode Creating config file /etc/php/7.3/cli/php.ini with new version Setting up python (2.7.16-1) ... Setting up php7.3-cgi (7.3.19-1~deb10u1) ... update-alternatives: using /usr/bin/php-cgi7.3 to provide /usr/bin/php-cgi (php-cgi) in auto mode update-alternatives: using /usr/lib/cgi-bin/php7.3 to provide /usr/lib/cgi-bin/php (php-cgi-bin) in auto mode Creating config file /etc/php/7.3/cgi/php.ini with new version Setting up python-crypto (2.6.1-9+b1) ... Setting up python-ldb (2:1.5.1+really1.4.6-3) ... Setting up python-tdb (1.3.16-2+b1) ... Setting up python-dnspython (1.16.0-1) ... Setting up python-talloc:armhf (2.1.14-2) ... Setting up php-cgi (2:7.3+69) ... Setting up samba-libs:armhf (2:4.9.5+dfsg-5+deb10u1) ... Setting up python-samba (2:4.9.5+dfsg-5+deb10u1) ... Setting up samba-common-bin (2:4.9.5+dfsg-5+deb10u1) ... Checking smb.conf with testparm Load smb config files from /etc/samba/smb.conf Loaded services file OK. Server role: ROLE_STANDALONE Done Setting up samba (2:4.9.5+dfsg-5+deb10u1) ... Adding group `sambashare' (GID 118) ... Done. Samba is not being run as an AD Domain Controller: Masking samba-ad-dc.service Please ignore the following error about deb-systemd-helper not finding those services. (samba-ad-dc.service masked) Created symlink /etc/systemd/system/multi-user.target.wants/nmbd.service → /lib/systemd/system/nmbd.service. Failed to preset unit: Unit file /etc/systemd/system/samba-ad-dc.service is masked. /usr/bin/deb-systemd-helper: error: systemctl preset failed on samba-ad-dc.service: No such file or directory Created symlink /etc/systemd/system/multi-user.target.wants/smbd.service → /lib/systemd/system/smbd.service. Processing triggers for initramfs-tools (0.133+deb10u1) ... update-initramfs: Generating /boot/initrd.img-4.14.187-odroidxu4 cryptsetup: WARNING: The initramfs image may not contain cryptsetup binaries nor crypto modules. If that's on purpose, you may want to uninstall the 'cryptsetup-initramfs' package in order to disable the cryptsetup initramfs integration and avoid this warning. update-initramfs: Converting to u-boot format Processing triggers for libc-bin (2.28-10) ... Processing triggers for systemd (241-7~deb10u4) ... Processing triggers for man-db (2.8.5-2) ... Processing triggers for mime-support (3.62) ... ================================================================================= Install Docker Repo ================================================================================= OK Hit:1 http://security.debian.org buster/updates InRelease Hit:2 http://httpredir.debian.org/debian buster InRelease Hit:3 http://httpredir.debian.org/debian buster-updates InRelease Hit:4 http://httpredir.debian.org/debian buster-backports InRelease Hit:5 http://giteduberger.fr rpimonitor/ InRelease Get:6 https://download.docker.com/linux/debian buster InRelease [44.4 kB] Hit:7 https://mirrors.dotsrc.org/armbian-apt buster InRelease Get:8 https://download.docker.com/linux/debian buster/stable armhf Packages [14.5 kB] Get:9 https://download.docker.com/linux/debian buster/stable armhf Contents (deb) [2,415 B] Fetched 61.3 kB in 4s (15.1 kB/s) Reading package lists... Done Building dependency tree Reading state information... Done All packages are up to date. ================================================================================== Installing Backport version of SMARTmonTools ================================================================================== Reading package lists... Done Building dependency tree Reading state information... Done Suggested packages: gsmartcontrol smart-notifier mailx | mailutils The following NEW packages will be installed: smartmontools 0 upgraded, 1 newly installed, 0 to remove and 48 not upgraded. Need to get 480 kB of archives. After this operation, 1,500 kB of additional disk space will be used. Get:1 http://httpredir.debian.org/debian buster-backports/main armhf smartmontools armhf 7.1-1~bpo10+1 [480 kB] Fetched 480 kB in 5s (93.1 kB/s) Selecting previously unselected package smartmontools. (Reading database ... 39830 files and directories currently installed.) Preparing to unpack .../smartmontools_7.1-1~bpo10+1_armhf.deb ... Unpacking smartmontools (7.1-1~bpo10+1) ... Setting up smartmontools (7.1-1~bpo10+1) ... Created symlink /etc/systemd/system/smartd.service → /lib/systemd/system/smartmontools.service. Created symlink /etc/systemd/system/multi-user.target.wants/smartmontools.service → /lib/systemd/system/smartmontools.service. Processing triggers for man-db (2.8.5-2) ... Processing triggers for systemd (241-7~deb10u4) ... ================================================================================= ================================================================================== Adding group admins and adding the group to the sudoers allow list ================================================================================== ================================================================================== Allowing SSH Root Login... ================================================================================== ================================================================================== Downloading the Latest SimpNAS from GIT repo... ================================================================================== Cloning into 'simpnas'... remote: Enumerating objects: 39, done. remote: Counting objects: 100% (39/39), done. remote: Compressing objects: 100% (30/30), done. remote: Total 4621 (delta 16), reused 25 (delta 8), pack-reused 4582 Receiving objects: 100% (4621/4621), 7.46 MiB | 4.82 MiB/s, done. Resolving deltas: 100% (1922/1922), done. ================================================================================== Setting up Samba configuration ================================================================================== ================================================================================== Creating Volumes Directory for Volume mounts ================================================================================== ================================================================================== Installing and Enabling Filebrowser... ================================================================================== Downloading File Browser for linux/armv7... https://github.com/filebrowser/filebrowser/releases/download/v2.6.1/linux-armv7-filebrowser.tar.gz Extracting... Putting filemanager in /usr/local/bin (may require password) Successfully installed Created symlink /etc/systemd/system/multi-user.target.wants/filebrowser.service → /etc/systemd/system/filebrowser.service. ================================================================================== Installing and Enabling SimpNAS Service during Startup... ================================================================================== Created symlink /etc/systemd/system/multi-user.target.wants/simpnas.service → /etc/systemd/system/simpnas.service. =============================================================================================================================== Almost There! Visit http://192.168.63.45:81 in your web browser to complete installation =============================================================================================================================== root@HC2:~# exit Visit http://192.168.63.45:81 in your web browser to complete installation made my settings on webinterface.. than device reboot after reboot i logged in (ssh) as >user<: S C:\WINDOWS\system32> ssh master@192.168.63.45 master@192.168.63.45's password: ___ _ _ _ __ ___ _ _ _ / _ \ __| |_ __ ___ (_) __| | \ \/ / | | | || | | | | |/ _` | '__/ _ \| |/ _` | \ /| | | | || |_ | |_| | (_| | | | (_) | | (_| | / \| |_| |__ _| \___/ \__,_|_| \___/|_|\__,_| /_/\_\\___/ |_| Welcome to Armbian buster with Linux 4.14.187-odroidxu4 System load: 0.06 0.02 0.00 Up time: 11 min Memory usage: 9 % of 1995MB IP: 172.18.0.1 192.168.63.45 CPU temp: 47°C Usage of /: 5% of 30G storage/: 1% of 3.6T Last login: Sun Aug 2 10:30:41 2020 from 192.168.63.20 Could not chdir to home directory /home/master: No such file or directory master@HC2:/$ sudo armbianmonitor -u System diagnosis information will now be uploaded to http://ix.io/2sW5 Please post the URL in the forum where you've been asked for. master@HC2:/$ i've got these message: Could not chdir to home directory /home/master: No such file or directory Something went wrong with your script.. It delete my /home/MYNAME directory AFTER rebooting. http://ix.io/2sW5 I retested the installation twice with the same results. Pls. check regards Markus 0 Quote
Tido Posted August 2, 2020 Posted August 2, 2020 8 hours ago, MacBreaker said: (ssh) as >user<: README.md use root only 0 Quote
MacBreaker Posted August 3, 2020 Posted August 3, 2020 Hi Tido, did you read and understood my post? What you like to point me? Yes, i ran the install script as root.. 0 Quote
Tido Posted August 3, 2020 Posted August 3, 2020 1 hour ago, MacBreaker said: What you like to point me? If you are too lazy to go to the readme, I do it for you, here is the link: https://github.com/johnnyq/simpnas#notes It is mandatory to run the install as root. I exchanged some Emails with the programmer, it is by design to delete all user-profiles and create new ones 'needed' from withing the Web UI. So, login with: ssh root@192.xxx whatever your IP is and maintain your system (not user or groups) from the commandline. Everything else, Web UI. 1 hour ago, MacBreaker said: Yes, i ran the install script as root.. Nope, you ran it with root privileges, but not as root: On 8/2/2020 at 11:58 AM, MacBreaker said: loged in as >user< Ich hoffe jetzt sind alle Unklarheiten beseitigt 0 Quote
MacBreaker Posted August 5, 2020 Posted August 5, 2020 Hi Tido, thanks for clarification of root or root privileges. i didn't know this, sorry. I will read the README.md and start over again on the weekend. Quote Ich hoffe jetzt sind alle Unklarheiten beseitigt Ich hoffe... 1 Quote
MacBreaker Posted August 7, 2020 Posted August 7, 2020 so... on the first try, i was doing everything right. Didn't realize that SimpNAS is BETA and found my problem here LINK . Exept this, it work well... 0 Quote
Guest Posted October 26, 2020 Posted October 26, 2020 wow this is seriously amazing , thanks to @soerenderfor for pointing this project out . I find this clean interface enticing , one thing that bothers me with openmediavault is the complexity of the admin panel , it provides to many options. I have some questions but if required I can ask them on simpnas forum . currently I have openmediavault installed on a rockpro64 and in docker I run HomeAssistant, Radicale caldav server and I'm working on a Jellyfin container. This is behind an nginx reverse proxy container that exposes only HomeAssistant and Radicale containers to outside of my network. I use docker compose to run all said containers, I have to use the latest docker-compose which I install using pip ,because the Radicale container requires an option not available in the docker-compose provided by Debian . So my first question is seeing as all the apps are run using docker do you foresee a problem with me uninstalling the apt installed docker-compose and installing via pip ? My second question is regarding a stable release , do you have a projection of when this will be considered as out of beta ? not that this would prevent me from switching from Openmediavault to Simpnas this is just an open query. Third question do you plan on implement a firewall tab in the network section , or have you already ? otherwise of course adding iptables rules or running ufw via the command line is possible . Final question do you think adding a Portainer app is possible , as visually its a great option to manage container ? thanks in advance for your response and for creating this awesome project . 0 Quote
soerenderfor Posted October 26, 2020 Posted October 26, 2020 @GreyLinux - I can not take credit for SimpNAS, but i did use it very much with my rockpro64 setup. Used it much to test 10-14 sata cards, and many was able to work with Focal with mainline and SimpNAS. Right now i use Armbian buster with mainline and OMV. But as yourself i also like the simple in SimpNAS ;-) 0 Quote
woonaval Posted July 27, 2022 Posted July 27, 2022 Hello, I installed simpnas on an orangepi and went through the initial setup (select disk, create user, etc). After I finish this wizard I get presented with a logon screen and a separate button for "File Manager". I can enter file manager without issues (port 82), with the user I created in the previous wizard. But I have no way (and no idea) of which user should I use to enter the main management of SimpNAS (port 81), I always get credential error. I tried everything (the previously created user, the root user of my armbian....). Around here I've seen a screenshot of a "final configuration" screen asking for an Administrator password. I didn't get asked for any administrator password in my wizard, only a username/password creation (probably for file manager). Could you please help me? thanks! 0 Quote
APD Posted February 15, 2023 Posted February 15, 2023 Hello, Great idea about SimpNAS. Does it work on Armbian Bullseye? 0 Quote
Tido Posted February 15, 2023 Posted February 15, 2023 Hi APD, 5 hours ago, APD said: Does it work on Armbian Bullseye? It is a PHP application, chances are not too shabby. If you search for "simpnas github" you will find it. 0 Quote
APD Posted February 16, 2023 Posted February 16, 2023 Ok, I installed Armbian Buster... apt-get update apt-get upgrade -y reboot wget https://simpnas.com/upload/install.sh; bash install.sh Connect on web interface, user, pass, skip network configuration, configure usb hdd, reboot. After reboot i got this errors: 0 Quote
Igor Posted February 16, 2023 Posted February 16, 2023 8 hours ago, APD said: After reboot i got this errors: Strange thing that software author was actually testing this on Armbian and now it doesn't work properly. Well, I would suggest pinging author(s). "Flash a MicroSD card with the latest armbian image." https://simpnas.com/docs.php @Tido Long time no see. 0 Quote
APD Posted February 18, 2023 Posted February 18, 2023 Ok, where to find author? Edit: I find a way to fix the problem: sudo blkid Check the UUID od the mounted HDD/USB drive. sudo nano /etc/fstab Delete everything in fstab except line with the HDD/USB drive name and UUID. ctrl+o save, ctrl+x exit reboot 0 Quote
APD Posted February 18, 2023 Posted February 18, 2023 How I have another problem. I can't install docker on armbian os. Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details. invoke-rc.d: initscript docker, action "start" failed. ● docker.service - Docker Application Container Engine Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled) Active: activating (auto-restart) (Result: exit-code) since Sat 2023-02-18 17:58:46 CET; 31ms ago Docs: https://docs.docker.com Process: 20548 ExecStart=/usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock (code=exited, status=1/FAILURE) Main PID: 20548 (code=exited, status=1/FAILURE) dpkg: error processing package docker-ce (--configure): installed docker-ce package post-installation script subprocess returned error exit status 1 Processing triggers for man-db (2.8.5-2) ... Processing triggers for systemd (241-7~deb10u8) ... Errors were encountered while processing: docker-ce E: Sub-process /usr/bin/dpkg returned an error code (1) journalctl -xe Feb 18 17:59:02 rk3188 dockerd[21621]: time="2023-02-18T17:59:02.502714810+01:00" level=warning msg="Running modprobe bridge br_netfilter failed with message: modprobe: WARNING: Module bridge not found in directory /lib/modules/5.10.52-r Feb 18 17:59:02 rk3188 dockerd[21621]: time="2023-02-18T17:59:02.525866256+01:00" level=info msg="unable to detect if iptables supports xlock: 'iptables --wait -L -n': `modprobe: FATAL: Module ip_tables not found in directory /lib/module Feb 18 17:59:02 rk3188 dockerd[21621]: time="2023-02-18T17:59:02.848667276+01:00" level=info msg="[core] [Channel #1] Channel Connectivity change to SHUTDOWN" module=grpc Feb 18 17:59:02 rk3188 dockerd[21621]: time="2023-02-18T17:59:02.848895641+01:00" level=info msg="[core] [Channel #1 SubChannel #2] Subchannel Connectivity change to SHUTDOWN" module=grpc Feb 18 17:59:02 rk3188 dockerd[21621]: time="2023-02-18T17:59:02.849079674+01:00" level=info msg="[core] [Channel #1 SubChannel #2] Subchannel deleted" module=grpc Feb 18 17:59:02 rk3188 dockerd[21621]: time="2023-02-18T17:59:02.849234834+01:00" level=info msg="[core] [Channel #1] Channel deleted" module=grpc Feb 18 17:59:02 rk3188 dockerd[21621]: time="2023-02-18T17:59:02.850057004+01:00" level=info msg="stopping event stream following graceful shutdown" error="<nil>" module=libcontainerd namespace=moby Feb 18 17:59:02 rk3188 dockerd[21621]: failed to start daemon: Error initializing network controller: error obtaining controller instance: failed to create NAT chain DOCKER: iptables failed: iptables -t nat -N DOCKER: modprobe: FATAL: Mo Feb 18 17:59:02 rk3188 dockerd[21621]: iptables v1.8.2 (legacy): can't initialize iptables table `nat': Table does not exist (do you need to insmod?) Feb 18 17:59:02 rk3188 dockerd[21621]: Perhaps iptables or your kernel needs to be upgraded. Feb 18 17:59:02 rk3188 dockerd[21621]: (exit status 3) Feb 18 17:59:02 rk3188 systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE -- Subject: Unit process exited -- Defined-By: systemd -- Support: https://www.debian.org/support -- -- An ExecStart= process belonging to unit docker.service has exited. -- -- The process' exit code is 'exited' and its exit status is 1. Feb 18 17:59:02 rk3188 systemd[1]: docker.service: Failed with result 'exit-code'. -- Subject: Unit failed -- Defined-By: systemd -- Support: https://www.debian.org/support -- -- The unit docker.service has entered the 'failed' state with result 'exit-code'. Feb 18 17:59:02 rk3188 systemd[1]: Failed to start Docker Application Container Engine. -- Subject: A start job for unit docker.service has failed -- Defined-By: systemd -- Support: https://www.debian.org/support -- -- A start job for unit docker.service has finished with a failure. -- -- The job identifier is 6504 and the job result is failed. Feb 18 17:59:04 rk3188 systemd[1]: docker.service: Service RestartSec=2s expired, scheduling restart. Feb 18 17:59:04 rk3188 systemd[1]: docker.service: Scheduled restart job, restart counter is at 5. -- Subject: Automatic restarting of a unit has been scheduled -- Defined-By: systemd -- Support: https://www.debian.org/support -- -- Automatic restarting of the unit docker.service has been scheduled, as the result for -- the configured Restart= setting for the unit. Feb 18 17:59:04 rk3188 systemd[1]: Stopped Docker Application Container Engine. -- Subject: A stop job for unit docker.service has finished -- Defined-By: systemd -- Support: https://www.debian.org/support -- -- A stop job for unit docker.service has finished. -- -- The job identifier is 6573 and the job result is done. Feb 18 17:59:04 rk3188 systemd[1]: docker.service: Start request repeated too quickly. Feb 18 17:59:04 rk3188 systemd[1]: docker.service: Failed with result 'exit-code'. -- Subject: Unit failed -- Defined-By: systemd -- Support: https://www.debian.org/support -- -- The unit docker.service has entered the 'failed' state with result 'exit-code'. Feb 18 17:59:04 rk3188 systemd[1]: Failed to start Docker Application Container Engine. -- Subject: A start job for unit docker.service has failed -- Defined-By: systemd -- Support: https://www.debian.org/support -- -- A start job for unit docker.service has finished with a failure. -- -- The job identifier is 6573 and the job result is failed. Feb 18 17:59:04 rk3188 systemd[1]: docker.socket: Failed with result 'service-start-limit-hit'. -- Subject: Unit failed -- Defined-By: systemd -- Support: https://www.debian.org/support -- -- The unit docker.socket has entered the 'failed' state with result 'service-start-limit-hit'. I try to convert iptables to legacy, but the problem persist. sudo update-alternatives --set iptables /usr/sbin/iptables-legacy sudo update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy Any suggestion? 0 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.