Jump to content

EggieIV

Member
  • Posts

    13
  • Joined

  • Last visited

Awards

This user doesn't have any awards

EggieIV's Achievements

  1. I would suggest to get at least an Rx 5xx or an 1660ti initially If you can find one, but definitely get a GPU cuz otherwise your pc Will be rotting in a corner cuz you can't get any video out. The 3090 is definitely out of your price range... If you can find a comparable OEM with a 3070 / 3080 I would go for it, otherwise I'm rocking your config with an Rx570 and blender works totally fine, rendering will take some time but otherwise 4k Cyberpunk 2077 medium is in the high 50's
  2. P500a - love it I'm rocking it too. Maybe if the price difference over there in the US is as bad as here, look for 3800x or 5800x CPUs to get more value out of it 3950x over ire is like +300€ compared... For your ram consider the infinity fabric clock when you choose ram Clock and minimize the latency when possible... Storage : personally I would prefer, 1tb TLC SSD with DRAM and an bigger HDD Like 4tb
  3. I would say shorting the clear CMOS Jumper should do the trick... Removing the CMOS battery will do that to ... How long had you disconnected the battery? Maybe remove it, press the pwr button for 3 mins and putting it back to remove some leftover energy that keeps the CMOS saved.
  4. Hm, i could try that at least. Yeah they still exist, but I don't think there will be any fix software wise, bcuz of the fact that they usually just sell Cableextensions / brackets and stuff like that and it was already hard enough to get the manual, for that thing. This looks more like a Chinese Product they slapped their name onto tbh. Just have to wait 4 more hours until their live support can be contacted...
  5. "PCIe Slot Configuration Allows you to set the operation mode of the PCI Express slots to Gen 1, Gen 2, Gen 3, or Gen 4 (Note). Actual operation mode is subject to the hardware specification of each slot. Auto lets the BIOS automatically configure this setting. (Default: Auto)" According to the Manual it should work. Putting an pcie2.0 x1 card in the pcie3.0 x4 or x8 slot
  6. Maybe i will try, if the card works on an 10800k build a friend bought... Or i could try to dig out my Geforce 6 with pcie connectivity, to see if the backwards compatibility ist really there...
  7. The mobo has pcie 2 and Pcie1 mode, so that shouldn't be the problem, i think but somehow the bios is tripping up with the second Sata Controller i think..
  8. Yupp, thats why i have the sata addin card. Had it already in my previous build. Also, when i use a NVME drivr one sata will be disabled.
  9. Had that happen to me, while i encountered an error when i compiled Java code on Linux like 3 times ... Check with Data recovery tools if you still see data on the drive or everything has been zero-d. If this is the case you can recover the ehole drive including the necessary data structure to boot from it, with a Simple recovery Tool.
  10. I Have my system working fine so far, and hadn't had any boot problems (except when i Touch Trident Z RGB values (another story, dont care to explain rn)). Anyways, if i plug in my PCIE Sata expansion Card (Bold in Specs) on my Ryzen system. The B550 Board will be stuck on [[A2]] ( Detect and install all currently connected IDE devices.) and freezes instantly after Post screen (cannot Access Bios - Stuck on Device Identification). Otherwise the System is working fine without it. The wierd thing is on much older Amd (Athlon) and Intel Pentium 4, 4470k, 4790k, 7700K (RIP) it works absolutely fine. Connected Sata Deviceswill even show up in Bios and i could /can boot from them. Troubleshooting i did: Up and downgraded Bios where Zen3 Support is listed. Tried card with & without drives Plugged into it. Tried to boot with only Sata addin card and Ram, CPU,GPU. Cleared Cmos Multiple Times. Installed Supplied working Win10 Drivers before installing card. Tried without drivers... Changing Pcie Compatibility for all generations on specified board. changed Pcie Slot I'm at a Total loss ... And having only two drives and an ODD is a total pain in the a**. Turning the Computer off to swap Sata Connections for the drive i currently need the data from is time consuming and an unnecessary step i think. Has anyone else experienced Problems with Pcie Storage expansion cards on Ryzen ? Specs: Gigabyte B550 Vision D rev 1.0b Ryzen 5800X RX 570 2x16gb Trident Z Neo 3600Mhz 16-19-19-36 Phanteks RevoltX 1200W as (system 2) InLine 76617g 8Port Pcie 2.0 x1 16 TB on 2x Nvme, 3x Sata SSD, 1x SSHD, 7x HDD ( 1x 6TB, 3× 1TB, 2x 500GB, 1x 80GB)Legacy Drive collection over 12 yrs of Use, still waiting for a Drive to finally die ...
  11. I am currently writing a Website, with a Html based 3D canvas. So far so good, now i am facing a Problem with sliders to manipulate a 3D object in space. everytime one slider changes the Object reverts to its original Position first and then the manipulation of its Position in space is Computed. I tried several ways to bypass this limitation, but i always end up with the same result that multiplies the current rotation with 0, is there something i'm missing or is that not possible and i have to write Javascript code to link both sliders to a variable in hard coded css? <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>PnP_Javascript</title> <link rel="stylesheet" type="text/css" href="css/style.css"> </head> <body> <main> <button style="cursor:pointer; grid-row: 1 / span 2; width: min-content;" class="drawerButton" onclick="toggleNav()">&#9776;</button> <div class="title" style="grid-column: 2/span2; width:100%;">title</div> <div class="subtitle" style="grid-column: 2/span2; width:100%;">Subtitle </div> <div class="lSidebar"> <input class="verticalSlider" id="viewingAngle" type="range" min="0" max="90" value="0" data-units="deg" onchange="document.getElementById('map').style.transform='rotate3d(1,0,0,'+ this.value +'deg)'"> <input class="verticalSlider" id="centerRotation" type="range" min="0" max="360" value="360" data-units="deg" onchange="document.getElementById('map').style.transform='rotate3d(0,0,1,'+ this.value +'deg)'"> </div> <div class="canvas"> <div class="container" id="map"> <div class="face north"></div> <div class="face east"></div> <div class="face south"></div> <div class="face west"></div> <div class="face image"> <embed src="https://cdn.pixabay.com/photo/2017/02/20/18/03/cat-2083492_960_720.jpg" width=100% height=100%> </div> </div> </div> <div class="item5">Right</div> <div class="item6" style="grid-column: 1/span3; width:100%;">Footer</div> </main> </body> </html> https://jsfiddle.net/stbdznw1/8/
×