Jump to content

Helibert

Member
  • Posts

    53
  • Joined

  • Last visited

Awards

This user doesn't have any awards

1 Follower

About Helibert

  • Birthday Nov 11, 1985

Profile Information

  • Gender
    Male
  • Location
    Germany

System

  • CPU
    i7-6700K
  • Motherboard
    ASRock Z170 Extreme6
  • RAM
    16GB Kingston HyperX Savage 3000
  • GPU
    Gigabyte Aorus 1080TI
  • Case
    Fractal Design Refine R5
  • Storage
    Samsung 840 Evo 120GB + 500GB + Samsung HDDs 10TB
  • PSU
    750W Enermax
  • Display(s)
    Asus PG278Q + Benq GW2750 + Samsung Syncmaster 2443BW
  • Cooling
    Noctua NH-D14
  • Keyboard
    Roccat Ryos MK Glow
  • Mouse
    Logitech G502
  • Sound
    Sound Blaster X-Fi Surround 5.1 Pro + Beyerdynamics MMX 300 + Teufel Motiv 2
  • Operating System
    Win 10

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Try to change the Steam Server Location under Settings -> Downloads to another server near you. i have this sometimes too. my guess is that something goes wrong ín the routing temporarly.
  2. LVM is a abstraction layer between your operating system and physical hard drives. What that means is your physical hard drives and partitions are no longer tied to the hard drives and partitions they reside on. Rather, the hard drives and partitions that your operating system sees can be any number of separate hard drives pooled together or in a software RAID. From Quick Google Search: https://www.howtogeek.com/211937/how-to-use-lvm-on-ubuntu-for-easy-partition-resizing-and-snapshots/ https://www.howtogeek.com/howto/40702/how-to-manage-and-use-lvm-logical-volume-management-in-ubuntu/
  3. i think LVM is what you are looking for
  4. @echo off dir /b /s Movies\*.* > list1.txt for /f "tokens=*" %%A in (list1.txt) do echo %%~nxA >> movieslist.txt del list1.txt instead of changing the path just use the path in the dir command itself. First line creates a temporary list.txt with all files with full path recursively in the specified path . Second line does a for loop over every entry an only prints the filename instead of the full path third line deletes the temporary file
  5. you could use wget on either linux or win10 (with the linux subsystem ) if you want all files in one big file you could tell wget to output to webarchiveformat ( --warc-file=YOUR_FILENAME). but you need a special tool to look at it like https://github.com/webrecorder/webrecorder-player
  6. i also thought wtf.. than googled pdf2excel and well look what i found.. not gonna lie i'm suprised https://acrobat.adobe.com/us/en/acrobat/how-to/pdf-to-excel-xlsx-converter.html
  7. if the files are proper named Kodi is nice
  8. if you are using win10 https://windows10gadgets.pro/network/networkmonitorii/networkmonitorii.html
  9. Never used nextcloud so i am shooting blind: what owner does the data have that you got to put in within the 10 minutes? what owner does your '/media/pi/RAID1/nextcloud/data' '/media/pi/RAID1/nextcloud/' and '/media/pi/RAID1/' have? did you use sudo to chown the 0770 ? what filesystem is the raid in? ntfs or ext? i believe on ntfs it is not possible to change the permissions with chown you would have to mount the raid with a fstab entry what does your /etc/fstab ( open it with a editor like nano vim joe) say?
  10. Also your classname for the login box in css is .login-box and in html it is "login box"
  11. a <- seq(1,10,1) b <- rep(c("protein","somethingelse"),5) lala <- matrix(nrow=10,ncol=2,data=c(a,b),byrow=FALSE) lala[which(lala[,2]=="protein"),] lala[which(lala[,2]=="protein"),][,1] The only line interesting are the last two. with which you find the rows that only have protein in column 2 and then using that to retrieve only the first column in the last line for only the data edit: Using subset subset(lala, lala[,2] == "protein") for only data column use: subset(lala, lala[,2] == "protein")[,1] change lala to your dataobject name
  12. there is a step by step tutorial on how to change the data directory in the link you posted?! Did you try that out? One thing i could imagine not working correctly is when you copied over the original data folder you copied only the content and not the whole folder, so you didn't copied over the permissions of the folder. check with an ls -rtlh the permissions of the folder on the raid drive if it is not www-data:www-data nextcloud wouldn't be able write to it
×