sparek-3
- Total activity 1538
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 487
Comments
Recent activity by sparek-3-
This is the issue with people relying on old technologies and the "you can take my old school technology from my cold dead hands" attitude. SMTP - as it is now - is never going to be able to full...
-
root@servidor [~]# telnet domain.com.br 25 What server are you on when you do this telnet command? If you're on the same server that is hosting domain.com.br then at best, this is trivial. By an...
-
Yea... I get that you're writing a PHP script that uses a shell_exec to run the uptime command. That level of information is known and has been established. But how you are you running this file?...
-
There's not a lot of information being given here. How are you accessing this PHP script? That will go a long ways towards resolving this issue.
-
Would probably lose it's luster before it gets through the requisite feature request bureaucracy. The main point would be to identify those users that are still using browsers/OSs that rely on TLS...
-
Assuming since these are such large drives, that these are spinning SATA drives. Yea, it's going to take a while if you are using 4TB disks, that's one of the downsides of using such large disks. ...
-
The nature of a backup process is just going to create a load. It takes disk i/o to read all of the files that you are backing up. It takes disk i/o to write files (copying) that you are backing ...
-
KVM and Xen are virtualization technologies. I am assuming (given the low memory) that you have a VPS and not a full dedicated server. So the server you have is using some type of virtualization....
-
To make an extra swap file on the server: dd if=/dev/zero of=/extraswap bs=1M count=4096 mkswap /extraswap swapon /extraswap This will create an extra 4GB of swap memory on the server. Again, th...
-
Is the VPS KVM or Xen based? Since the hard drive space is SSD, you could create a swap file and use it for swap memory. With SSD swap space, you're probably not going to notice a lot of performa...