Jump to content

Khoomn

Member
  • Posts

    250
  • Joined

  • Last visited

Everything posted by Khoomn

  1. Ok, I know maybe 4-5 years ago when I first got my SSD, i cloned from a hdd to the ssd and im still currently using that ssd and its fine, didn't know if there were any major differences between NVMe and SSD that would change it like that
  2. neither have I so thats why I was confused
  3. So I was talking in the discord about cloning my friends really old HDD to his brand new NVMe 970 evo and someone said never to clone from HDD to NVMe as "You will ruin the Block Size Alignment (Performance Tank), The Trim Capabilities (Endurance/Lifetime of the NVMe)" I wanted to know how true this is and if there is some way a round it so I would be able to clone it.
  4. I thought the max amount of ports was 65355? And just to test to make sure 100% the port is open, im using iperf3
  5. VPS, I'm trying to open the port on the VPS and using a vpn, use that port on a windows machine for a program
  6. So I'm trying to open a port for a program on my server. I feel like I've tried everything and nothing works. I'm just using port 58585 for the hell of it. I did ufw allow 58585, ufw allow 58585/tcp, ufw allow 58585/udp, ive done iptables and all that. I did "nc -l 58585" and that works 100%, only until the port gets checked then it stops What other things could I try or do to open the port?
  7. ah ok, im gonna get 2 64gb sd cards from microcenter for like $12.50, thanks.
  8. I have a Micro SD card for my car dash camera that ive been using for around like 8 months. I took it out the other day to get a video off of it and i put it back in today and it gave me an error on the dash cam, i took the Micro SD card to my pc and I was able to pull all the videos off of it but im not able to format the disk no matter what I do. I tried formating it through my dash camera and through my computer and it just will not format. Is there anything I can do to fix that or would I just have to order another micro sd card from somewhere?
  9. So I've recently done some testing and to my surprise it works for once. I have an laptop running ubuntu 20.04 with a VPN running on it. I opened up a port on the VPN and for this example lets say the port is 55555. On the laptop I did "sudo ufw allow 55555" and then a command to turn it into a socks5 proxy. "ssh -f -N -D 0.0.0.0:55555 localhost" which works. I can use it online as a proxy with the VPN serving as the proxy. Now my question is, is it using my home internet or the VPN server for all the requests? Like is the traffic through that proxy now going directly through the server or is it going to my home ip, then the server? I understand the out ip is the VPN ip but im wondering since its going through the laptop first if its going through my home ip or the vpn since on 'iftop' i can see all the activity on it. I hope im making sense on what I mean. If anyone wants to test this out for themselves I also did it on a virtual machine which worked the exact same and i could show you how to do it step by step if needed to get an answer.
  10. I just need to know how to have an sh file run on reboot for my server. I have the sh file in my /root/ folder because thats the default location when i login to the server. so whenever i type reboot into the commandline or do it from the web panel, i need it to run that sh file the second it starts up so i dont have to manually do it.
  11. So I currently have a VPS which i run some things on and one of them is a python program that hosts a website with flask. it takes up the default port of 80. I want to host my main website I have with apache2 on a different port since they both cant be running the same port. I remember trying to change the port on apache2 and it never worked and I dont remember why. Is there a way to host a website on apache with a different port such as 8080 or something like that so when you goto mysite.com it will automatically load the 8080 port instead? I know there is ports.conf in the settings but like i said, i forget why it didnt work.
  12. I thought i posted the full fix but apparently i didnt, this was around the time that vanguard broke all pc monitoring tools. Vanguard for valorant broke this tab for me and i just uninstalled it. Im pretty sure thats what the problem was, dont fully remember but i havent had the problem since
  13. So I got the xbox game pass for PC last night and started played forza horizon 4 and was finally able to play online but when I pressed play online it just loaded infinitely. I found out that you are able to test the connectivity through settings -> gaming -> xbox network. Currently my Xbox Live Multiplayer is NAT Type - Teredo is unable to qualify Server connectivity - Blocked I have tried everything under the sun to get this working. The closest ive gotten was NAT type strict but server connectivity was still blocked. I opened one of my Windows VMs and did the same thing except this time in the VM it either said NAT type strict or moderate and server connectivity connected. I need to know what exactly is wrong with my computer. I've tried everything that is listed under microsoft's help thread nothing worked. Ive tried enabling ipv6 for mullvad and all that, didnt work. I tried restarting IP helper and Xbox Live services. I've restarted my PC over 20 times now. The only closest fix which was switching nat type to strict was when I pressed the Fix It button through the settings but it just reverts to unable to qualify. I do not have a network device called teredo or anything and I'm not able to install one that had it. I have reset my entire firewall and it did not work. I just do not know what the hell to do. I am perplexed as to why a VM can connect to xbox live services but my main PC can not. I'm not going to reinstall my entire windows just to run this game. If you can recommend anything I can do to get this to work, that would be appreciated but I've probably tried it already and nothing.
  14. Hey im opening this back up because I need almost the same thing with a different parameter. I need it to restart every X amount of minutes, doesnt matter if its active or not, just close the program and open it back up. I feel it should be as simple as the last but just need to know. Thanks
  15. My current one from my ISP is a modem + router, I'm pretty sure.
  16. Hey, was wondering if there are any good routers to get that support OpenVPN configs to be put into them. Trying to also convince my parents to get it instead of paying $14 a month for renting a router from our ISP. I need it to also have good coverage as the router will be in the basement, be able to change the MAC Address on it so I can change my IP at will, and not be too expensive, since I'm trying to convince them to get this. Thanks
  17. So ontop of the fact that the program surprisingly still works lol, i did that and it just says 0 then stops.
  18. so it runs, but it doesnt restart it. this is what my sh file looks like. I feel like something is wrong as its not telling the program to restart #!/bin/sh until java -jar Discordbot.jar; do echo "Bash: CrashApp crashed, restarting..."; sleep 1 done
  19. Thank you! I will try this and get back to you if it works. Yeah, thats what I intend on doing it with.
  20. Hey all, didn't realize there were so many comments, it can honestly be any kind of script, preferably it be python bc i can actually understand that, so the program I'm running is a simple .jar file, All i need it to do is if it dies or stops itself, have it re run the program so it is in an infinite loop of starting up when dying until i stop it manually. I was told to use "watch" in ubuntu but it never worked for me.
  21. So I have a windows RDP that has a batch file that auto restarts a jar file every 30 minutes. I want to do that with ubuntu but instead of every 30 minutes, I want it to restart on fail. The fail being that it loses connection to the site it is connecting to so it stops the program. I don't know if it should be in a .sh file or if there is some app to do it for me but I just want to know if it is possible. My friend told me to use the "watch" command in ubuntu but it never worked out. So i now need an sh file that will restart a program every 30 minutes for ubuntu
  22. So I have my VPN setup on softether vpn and for some reason im limited at 300Kbps, I have tried every other vpn to test speed and its normal. I even setup openvpn on the exact same vpn on a different port and im getting normal speeds. I'm just wondering if anyone has any ideas on why softether vpn would possibly be slowing my connection down, i dont think it would have anything to do with port but it might? I tried reinstalling the network devices and still the same
  23. This is still happening, happened 4 times total already
  24. They would see the encrypted data go into the vps which also has an ip linked to that request. And you just said in the message above that all data that goes out would be encrypted and now you say they can see the web request go out
×