Jump to content

BurningSmile

Member
  • Posts

    26
  • Joined

  • Last visited

Everything posted by BurningSmile

  1. Stop running DBAN, it doesn't do anything for SSD's except wear them out. You should use the secure erase functions found in the drives documentation. As for getting the disk to be shown, it might be dead, Most SSDS will go into a read only state when they die. You could also try to redo its partition layout using something like fdisk from a live Linux ISO. However, it sounds like the disk is just dead.
  2. A lot of people have this misconception that you should host public facing game servers on a home connection. Here is the problems with that. You really need to have your servers hosted in a proper data center with real bandwidth. Yes this costs money but you can avoid the massive problems of bandwidth shortages on a home connection. First lets state the obvious.: - 15MB/s upload is no where good enough for this. - Hosting public facing game servers from a home connection is likely against your ISP's terms of service. And ISP's have been known to terminate the users contract over this. Now lets state some other issues: - Don't try to build a server using off the shelf consumer level components. If you're not going to take my advice of not hosting this at home then buy a used dell r710 off of ebay with lots of ram and cpu for cheap and call it a day. (I've gotten servers with 2x 6 core 12 thread cpus (24 threads of processing) and 48 gb of ram with a tb of hdd space for 150 dollars plus shipping) - Your home router is unlikely to have the proper horsepower to route players traffic cleanly without dropping packets. (That's a way oversimplified explanation but it gets the point across) Frankly ANY router marketed toward consumers is complete shit. (Yes even the 300 dollar plus units) Build a PfSense box for your routing if you really want to do this at home. (Or buy a dual port intel NIC, install it in the server, and setup a libvirt pfsense VM with the nic passed through) - Your home IP address is dynamic, this means it likely changes a lot. The IP of your game server is not consistent. - DDOS attacks. Lets be frank here, they are common in the gaming scene. Knocking out a home connection is a piece of cake for attackers. A real game server hosting company has the networking available to mitigate DDOS attacks by null routing the attackers traffic. - What if you wish to download a file or actually use your connection while players are connected? Be prepared for clients on the server to have their connections cut due to the routers routing table clearing connections. (Assuming your router is any kind of consumer grade unit) If you still want to host this at home, Learn how to administer a Linux box. You're going to want to run something like Debian, Ubuntu server LTS, or CentOs. The reasons for this are the following: - Linux systems are actually built to be stable for server workloads. - You want the OS to get out of the way as much as possible and leave as many resources for applications as possible - Better remote management system. (ssh) - You aren't paying for a windows license. (Linux is free) A much better solution to your problem would be: - Buy a used dell r710 from Ebay. Configure it then buy co-location hosting from a data center and ship it off to them. - Buy a Linux VPS from a hosting company and setup your server there. - Buy a dedicated Minecraft server from a game hosting company. (for 300 slots, be ready to pay out the noose for a managed solution.)
  3. Apt should work on modern distros. Try apt-get to see that does anything. I have never messed with kali. So it may not be in the repos. In which case do it manually. First insert the virtualbox guest additions cd image. You can do this from the devices menu. Next open a terminal sudo mount /dev/cdrom /mnt cd /mnt sh ./VBoxLinuxAdditions.run Also just an fyi bluetooth under linux is finicky at best.
  4. Here's is how I partition my uefi based systems. How you should partition your drive depends on if your system has uefi. 513 MB as your /boot/efi partition as fat32 The rest of drive as / [root partition] After the install make a swapfile. this way you aren't locked into a partition sudo fallocate -l 8G /swapfile sudo chmod 600 /swapfile sudo mkswap /swapfile sudo swapon /swapfile Next to make it permanent we need to edit your /etc/fstab file First make a backup sudo cp /etc/fstab /etc/fstab.bak now echo the partition to /etc/fstab echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab Finally verify that /etc/fstab has taken affect cat /etc/fstab You should see a line of '/swapfile none swap sw 0 0' at the bottom. Reboot and run 'free -m' to make sure the swap file has taken effect.
  5. sudo apt install virtualbox-guest-additions-iso
  6. It is possible that one system is booting into a UEFI mode resulting in that screen on the left. Do you get the same result if you switch USB keys in the different computers? Also I personally recommend Rufus for making USB drives under Windows since it has never failed me. (If your on Linux learn dd!) If you want easy persistence you can install it to a USB from another USB installer. I have done this in the past and it works well enough for USB speed anyhow.
  7. My favorite distros that I have experience with. Debian (and derivatives) RHEL/CentOS Slackware I can't think of any terrible distros other than the ones that were made as jokes. (Or script kiddies using Kali and not using it for what is actually built for being security testing)
  8. If you want easy but can learn more in the future Ubuntu. If you want to deep dive right away Arch, its all command line based install and it is all extremely well documented on their wiki. To make a bootable Linux USB use rufus and point it at the USB key and the ISO image. If you want to try Linux i suggest you visualize it. Use virtualbox to try out different distributions. You'll need a CLI text editor at some point. The main ones are vim, emacs, and nano. There are debates over which to use so I am not going to push my opinion on which to use. try them all and see which one you prefer. There are some good resources online as well as man pages. I usually point people at this YouTube playlist I wish you the best of luck with using Linux! PM me or post agian if you need more help!
  9. As other have said ZFS is a good option for storage that needs reliability. [Your ram is ECC right? The usual thinking is 1gb of ram per terabyte of Raw storage] While ECC ram is not a requirement it is STRONGLY recommended for the best data reliability. You can create storage pools. As for your ssds do NOT use your motherboard raid. Instead create a mirrored drive configuration for your root drive in the Ubuntu server install config.
  10. What is your budget for the router? What features do you need? 5ghz support yes or no? How many dhcp leases? (clients.) What is your ISP speeds? If you want a good reliable unit a PFSense box would be best.
  11. Run a malware bytes scan. Have you tried different web clients?
  12. You should probably just RMA the ram.(RAM usually has a lifetime warranty.) Test the motherboard with different ram.
  13. Ubuntu server 16.04.1. You still need to know CLI after you get it installed but the install process is strait forward.
  14. First you want to remove your current drives from your old gpu. - Reinstall your old gpu - Download Display Driver Uninstaller [DDU] - Run DDU in the main screen you will see options for boot, select safe mode. - When asked to reboot reboot. - once rebooted click clean and shutdown - Remove your old gpu and install the new gpu - IMMEDIATELY install the driver you downloaded earlier. (Don't give Windows times to install an old driver.)
  15. Anything Linux server based. Windows on a server is a bad joke. Ubuntu Server Debian (Install without a desktop env) CentOs RHEL [Red Hat Enterprise Linux](probably way overkill for this) PM if you need help with setting up a Linux server via CLI. I will happy to help. For your SRCDS games there are scripts to automate the setup and install process https://gameservermanagers.com/lgsm/ For monitoring servers you can use ssh with your choice of monitoring software. (I like htop personally)
  16. Samsung ssds are the golden standard now a days. 850 pro 1tb https://www.amazon.com/Samsung-850-PRO-2-5-Inch-MZ-7KE256BW/dp/B00LF10KTE?th=1 850 evo 1 tb https://www.amazon.com/dp/B00OBRFFAS/ref=twister_B00PRDMHLU?_encoding=UTF8&psc=1
  17. At that price point used parts are really the only decent option. Take a look on Craigslist or whatever you have in your area.
  18. Get a dual or quad port gigabit nic for both your computer and server. dual port quad port (Ebay sorry, its cheaper to buy this stuff here) Put linux on the server and set up a samba share. Also an ssd would be a good idea.
  19. The point is it will out perform in game that don't use crossfire to its full potential. Look up benchmarks for your games to see what the fps looks like. Here is what a better build would look like (With higher quality parts) https://pcpartpicker.com/list/dm8Hpb For that keyboard try out different key switches and buy the one you like best.
  20. Air coiling for that price point makes more seance that a water cooling loop. https://www.amazon.com/Noctua-Single-Tower-Cooler-NH-U14S/dp/B00C9FLSLY/ref=sr_1_7?ie=UTF8&qid=1482893593&sr=8-7&keywords=noctua+cpu+cooler https://www.amazon.com/noctua-NH-U12S-Noctua-CPU-Cooler/dp/B00C9EYVGY/ref=sr_1_4?ie=UTF8&qid=1482893593&sr=8-4&keywords=noctua+cpu+cooler If you are set on water cooling just get an All in one unit. It is far cleaner than a ghetto loop. (Seriously though a air cooler is quieter and will perform the same with less points of failure. Water cooling makes no sense about 70% of the time.) https://www.amazon.com/Corsair-Extreme-Performance-Liquid-Cooler/dp/B019954Y2Q/ref=sr_1_4?ie=UTF8&qid=1482893741&sr=8-4&keywords=corsair+liquid+cooling https://www.amazon.com/Corsair-Cooling-Performance-Liquid-Cooler/dp/B00FZHWFEW/ref=sr_1_6?ie=UTF8&qid=1482893741&sr=8-6&keywords=corsair+liquid+cooling As for your question look for a pump with the correct size. It would cost about the same as the fittings needed to convert the tube size.
  21. 1 What chipset? 2 What cpu(s) are you running? 3 ECC ram support? 4 What features do you need? 5) What are the rest of the system specifications? Or is this in a progress build plan? At a blind shot in the dark any of the asus WS series should work, They are solid boards. Don't bother with thous expensive "gaming" mother boards. They are a waste of money with dumb "features." any of the Asus -a series should work fine. (As well as most of Gigabytes offerings are totally fine and stable) This honestly seems like a troll post. Reasons are that there is no info given on what the rest of the system specs are. Second no one in their right mind would spend that much on a "gaming" motherboard.
×