@subzero79 That's it! Thanks a lot!
Posts by sieben
-
-
It's ext4.
Now on OMV 3.x, used it previously on 2.x
And fsck returns no errors. -
Hey, I have a similar problem with mounting a SATA-HDD and tried this testing suggested by @subzero79 (sda2 instead of sdh1)
mount -o defaults,nofail,user_xattr,noexec,usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0,acl /dev/sdh1 /mnt/diskThis way the mount fails, but with these options (without "usrjquota=aquota.user,grpjquota=aquota.group")
mount -o defaults,nofail,user_xattr,noexec,jqfmt=vfsv0,acl /dev/sda2 /mnt/disk
it works.
How is it possible to solve this error? Thanks a lot! -
Ok, Danke. Ich nehme an das sind USB-HDDs..
Aber der Anfang ist schonmal gleich!Ich versuche eine SATA-HDD zu mounten.
-
Hi Wolf2000,
ich habe es nach diesem Guide probiert, das funktioniert soweit auch.
https://forum.htpcguides.com/T…blem-pointing-boot-to-hddErst einmal will ich das OMV richtig läuft und ich die HDD mounten kann.
Wie sieht denn deine /etc/fstab aus?
Hast du mit OMV 3.x eine HDD gemountet?Danke
-
@tommi32 Could you post how you solved it, please?
-
Slightly off-topic:
Ok, das habe ich mir gedacht. Bei Armbian gibt es leider auch Probleme das auf eine HDD zu schieben, die root Partition wird nur als read-only gemountet, ein Workaround funktioniert zwar, aber wohl nicht zu 100%....
--- end off-topic@Wolf2000 How does your /etc/fstab/ look like?
Something else, I run OMV 3 now with armbian from the SD card. My HDD I used before with OMV 2.x is unable to be mounted via OMV WebGui.
I get the Error 6000
Error #6000:exception 'OMVException' with message 'Failed to mount 'db8f7c0c-b1da-4da9-9ae3-e6aa74668032': mount: wrong fs type, bad option, bad superblock on /dev/sda2, missing codepage or helper program, or other errorIn some cases useful info is found in syslog - try dmesg | tail or so.' in /usr/share/openmediavault/engined/module/fstab.inc:90
However I can mount the partition without any errors via CLI.
-
@Wolf2000 Hast du das armbian OS auf der SD-Karte belassen?
-
Hi, then I can not help you any further. I'm sorry!
-
Um sicher zu gehen, dass nur die richtigen Dateien gelöscht werden kannst du auch sowas noch angeben
-name "*.sql"
-
Hätte da noch einen anderen Vorschlag
Mit find funktioniert das in einem Befehl ohne Pipes.
maxdepth sorgt dafür dass nur in diesem Ordner gesucht wird
mtime bezeichnet das alter der Dateien (hier 3 Tage alt)
type bezeichnet das nur Dateien (f für files) ausgegeben werde und
delete löscht die gefunden DateienDu kannst das wunderbar ohne -delete erst mal testen, dann bekommst du einfach eine Liste der gefundenen Dateien zurück.
Also so:
find /yourdirectory/backup/mysql-backup -maxdepth 1 -mtime 3 -type f -
Did you check the autoshutdown plugin, the WOL plugin and the WOL settings for your network interface?
You might not need a guide to enable that -
Da ich eh noch das bananian 15.08 am laufen habe werde ich das vorher mal testen.
EDIT:
I think the reason might be that bananian 15.08 keeps SysVinit instead of systemd by default, when upgrading bananian. Even though there is the option to switch so systemd during the upgrade.
I tried to change it afterwards now, but probably did something wrong... -
Right now I have bananian-15.08 with the 4.3.3 kernel.
You would prefer armbian over bananian? At least I see armbian comes with a newer kernel...
-
Danke votdev für die schnelle Antwort!!
OMV ist ne top SacheDann werde ich mich da mal dran machen die Tage.
Thanks.
-
Hey all,
I have a quick and maybe easy question:
Is the OMV 3.x beta available for ARM devices like Banana or Raspberry PI?And if yes, where can I find it and is it possible to install it on top of a fresh Debian Jessie installation?
I am aware of the early beta status!Thank you!
EDIT: Everything went well on armbian for banana pi and this Install OMV3 on Cubox-i. Additionally I moved the OS to a HDD with nand-sata-install, a tool provided by armbian.
-
I'm happy that I could help!
I always wanted to write a how-to, but I was too lazy to do it. So thanks to you! -
I went through the installation wizard again using option 1 to automatically create the database. I wanted to see if I could choose another user instead of root but it’s not possible. For some reason the MySQL server plugin isn't allowing root user connections. I have set the root password in the plugin settings but this makes no difference if you can’t connect. Creating the databases manually seems to be the only option that works so far, unless someone knows of another way I haven’t found yet.
At first, yes it's not 127.0.0.1 it should be "localhost"
You can, it defintely works
-->use option 1. Here is how-to:Create a unprivileged user with home-directory, e.g. /srv/seafile
useradd -m -d /srv/seafile -s /bin/false seafileEven before installing seafile you change to the "seafile" user, to install and configure everything with his permissions
su - seafile -s /bin/bashInstall python and seafile as you said, but with the seafile user.
Then you setup seafile for mysql:
./setup-seafile-mysql.sh
What is the name of the server? It will be displayed on the client.
3 – 15 letters or digits
[ server name ] servernameWhat is the ip or domain of the server?
For example: http://www.mycompany.com, 192.168.1.101
[ This server’s ip or domain ] cloud.domain.tld——————————————————-Please choose a way to initialize seafile databases:——————————————————-
[1] Create new ccnet/seafile/seahub databases
[2] Use existing ccnet/seafile/seahub databases[ 1 or 2 ] 1
What is the host of mysql server?
[ default „localhost“ ] <depending on your config>What is the port of mysql server?
[ default „3306“ ] <depending on your config>What is the password of the mysql root user?
[ root password ] <depending on your config>verifying password of user root … done
Enter the name for mysql user of seafile. It would be created if not exists.
[ default „root“ ] seafileusr (for example)Enter the password for mysql user „seafileusr“:
[ password for seafileusr ] Password for new user „seafileusr“———————————This is your configuration———————————
[…]------------------------------------
For your HTTPS problem, please send your seafile config files (ccnet.conf, seahub_settings.py, seafile.conf)
I actually I got most of my advice from this website (it's german though, I don't know if you can speak german )
https://www.debinux.de/2014/05/seafile-nginx-mysql/ -
@omavoss OT:
Jein, habe die HDD über SATA, nicht über USB angeschlossen.
Zudem läuft das OS auf der HDD und wird daher nie deaktivert oder ausgeschaltet, läuft 24/7.Für weitere Fragen kannst du auch gerne ein neues Topic aufmachen, PM bekommt ja sonst keiner mit...
Grüße -
2.1 müsste die testing-version sein, ich habe die weiteren Buttons oben neben "Anzeigen" nicht.
Aber ist ja dann solved