arrow_upward

Posted by: tryp4vps - 05-06-2018, 05:07 PM - Forum: General - Replies (14)
In the last few days, I continuously receive email notifications from Twitter alerting me to change the passwords of my Twitter accounts (I have quite many of them).

It is found that Twitter had user passwords written to an internal log in plaintext.

https://www.zdnet.com/article/twitter-sa...plaintext/

The bug had been there for "several months" already. So, apparently all Twitter accounts should be affected by this bug.

If you guys have any Twitter account but still have not received their email notification yet, do go change your password immediately.
Posted by: chanalku91 - 05-06-2018, 02:43 PM - Forum: General Gaming Discussion - Replies (17)
Hello whatever I need help everyone to solve my problem is that I can not menyet pterodactyl in my vps. Yes web server configuration problem! The reason when I want to reboot apache2 always appear error message! Another one with the first install !!
Posted by: Conan - 05-06-2018, 10:17 AM - Forum: VPS Protection - Replies (11)
I. Don't use the root account! Create a new sudoer account
Spoiler Expand
(Make sure you install sudo from your package manager if it's not installed)

1. Create the account. Enter all the details that is prompted.
Code:
useradd <username>

2. Add the user to the sudoer group
Code:
echo '<username> ALL=(ALL) ALL' >> /etc/sudoers

3. Disable root login!
Code:
echo 'PermitRootLogin no' >> /etc/ssh/sshd_config

4. Restart sshd
Code:
systemctl restart sshd

II. Use SSH Keys!

Linux/Mac client
Spoiler Expand
1. Generate the key.
If prompted for the path, just press enter.
As for the password, it's your choice to use it or not. (Though it's recommended to use a password for the key file)
Code:
ssh-keygen -t rsa
2. Copy over the public key to your server
Code:
ssh-copy-id <username>@<host>

You can now connect to the server using ssh keys.
Windows
Spoiler Expand
In Progress...

III. Disable password authentication!
Spoiler Expand
1. Just run this command to disable
Code:
echo 'PasswordAuthentication no' >> /etc/ssh/sshd_config
2. Restart sshd
Code:
systemctl restart sshd

IV. Install fail2ban
CentOS
Spoiler Expand
1. Install
Code:
yum install epel-release #Needed repo
yum install fail2ban
2. Run and enable run at startup
Code:
systemctl enable fail2ban
systemctl start fail2ban
Debian
Spoiler Expand

Code:
apt-get install fail2ban
2. Run and enable run at startup
Code:
systemctl enable fail2ban
systemctl start fail2ban

Posted by: deanhills - 05-04-2018, 03:13 AM - Forum: General - Replies (8)
I'm just wondering how many members of post4vps are using the myBB alerts system and how you are working with it?  Also, are you using a desktop computer or mobile phone to work with the Forum or both?

I only use desktop as I find it much more fun to use it that way.  I think the alerts are probably one of the neatest inventions of myBB.  When I log in, it's the first place I check and respond to. Once I've checked the alerts I delete them, so that I only have new alerts showing during my next visit to the Forum.

I also like to work through all of the active forums and posts and find the on/off highlighted buttons against the Forums and threads very useful to navigate to and also to check whether I've missed something.

I also like it that the last posts are linked in the right hand column of the Forum.  I often use that to navigate to the last posts that have been made. The old fashioned design of myBB is great for me. It's a very user-friendly design for me and makes it very easy to follow posts and to make posts.

So would be great to hear how other members use the Forum and whether your preference is desktop or mobile phone or both.
Posted by: deanhills - 05-03-2018, 07:09 PM - Forum: Software - Replies (19)
I've been using Mozilla Firefox, Google Chrome, Safari and Internet Explorer for a long while now.  Firefox is my main browser with Google Chrome being used at the same time for deep searches that don't require logins. 

Tonight I was Googling for an alternative browser and came across Comodo Dragon for the first time.  Are there any users out there of Comodo Dragon and can you recommend the use of it?  Only concern I have before I download it is that it doesn't automatically make itself the default browser like Opera did when I downloaded it a couple or more years ago.  I just want to try out Comodo Dragon to see whether it is as fast and as secure as they say it is.  But before I do that I'd like to hear feedback from users in the Forum.  Is anyone using it and how does it compare with the main browsers?
Posted by: Littlemaster - 05-02-2018, 04:55 AM - Forum: Suggestions and Feedback - Replies (5)
Google Web Translate is a tool to translate websites into around 100+ languages, it is easy to implement.  This will help the visitors who are not well aware of English and will give more localized look to the post4vps community.
So I suggest to implement this feature. The free Website Translator plugin is free of cost and can be installed by javascript by just copy - pasting the code into footer templates of themes.
Here is a snap of the installed plugin.
[Image: rkRAZp8pz.png]
Posted by: perry - 05-01-2018, 07:20 PM - Forum: VPS Giveaways - Replies (59)
5 VPSs are Available
  • 1x VPS 1
  • 1x VPS 3
  • 2x VPS 10
  • 1x VPS 11
Note: For users who have VPS Plans like VPS 5, VPS 11, VPS 12 whose providers are using Virtualizor Panel but haven't provided any account for users, will soon be getting Access to a Custom VPS Panel account( made from Virtualizor's API).The winners will be decided as soon as possible and giveaway will remain open until 10st of may.Please Read before Applying
  1. Read Our Forum Rules before applying.
  2. You should have met our minimum requirements to get VPS.
  3. Read Application Format before applying. (If the application format is wrong then your Request will be rejected)
  4. You must post your VPS application in VPS Request Forum.
  5. Read TOS of VPS providers before applying.

Posted by: HarisHayat - 04-30-2018, 04:18 PM - Forum: Software - Replies (23)
Hi Guys,
I'm Haris Hayat.

Driverpack is free for all PC's, All drivers will be installed automatically.
It's is 100% free and Good for OLD/New Pc drivers.
Link for download : https://drp.su/en
Thanks.
Posted by: HarisHayat - 04-29-2018, 09:35 AM - Forum: Tutorials - Replies (13)
Hello Guys,
There are some useful commands for VPS and also good for beginners!



1. Used for Checking RAM!

Code:
free -m

2. Used for Checking SSD/HDD

Code:
df -h

3. Used for Switching directories. 

Code:
cd [ folder/file name ]
4. Used for making Directory.

Code:
mkdir [ folder name ]
5. Used for moving Files or Folder

Code:
mv [ filename or folder ] [ New folder or Location ]


6. Renaming File or folder

Code:
mv [ old name ] [ new name ]
7. Copy files or folders

Code:
cp [ file or folder ] [ new location or folder ]
8. Removing/Delete files.

Code:
rm -rf
9. Checking files and folders in which directory in you are.

Code:
ls


10. Download any file or URL

Code:
wget [ filename or URL ]

11. Changing your VPS/SSH password

Code:
passwd
12. Giving folder/file permissions.

Code:
chmod -777 [ filename or foler ]

13. Unzip zip files!

Code:
unzip [ filename ]
14. Creating or extracting tar commands example:

Code:
Create a new tar archive.
tar cvf archive_name.tar dirname/


Extract from an existing tar archive.
tar xvf archive_name.tar

15. Create or Extract gzip files:

Code:
To create a *.gz compressed file:
$ gzip test.txt


To uncompress a *.gz file:
$ gzip -d test.txt.gz

16. Creating .txt document!

Code:
Following example creates a .txt file called test.txt under your home directory.
nano test.txt
17. Checking the users controlling your VPS/accounts.

Code:
whoami

18. Checking network status.
Code:
netstat

19. Checking VPS Running programs!
Code:
top

20. Creating a manually document file.
Code:
touch [ filename with extension ]

ALL THESE 20 Commands are Very useful.. and very helpful.

THANKS FOR Reading!


***************Vuluts's post merged with thread***************
The following commands shared with by us @Vuluts
****************************************************************


Would like to add something too:

1. Switching user

Code:
su "user"

2. Entering MySQL

Code:
mysql -u "user" -p

3. Adding user

Code:
adduser "user"

4. Changing directory

Code:
cd "directory"

5. Installing packages

Code:
yum (CentOS) / apt-get (Debian) "package"


***************Vuluts's post merged with thread***************
The following commands shared with by us @deanhills
****************************************************************


Great list there thanks for posting it @HarisHayat. Here are some more useful ones:

1. How to get out of VPS:

Code:
exit


2.Check what OS VPS is running on:
Code:
cat /etc/*-release


3. Check whether OS is 32 or 64 bit:

Code:
uname -a

4. How to reboot VPS:

Code:
reboot

5. How to show log of previous reboots of VPS:
Code:
last reboot

Posted by: HarisHayat - 04-28-2018, 08:21 PM - Forum: Free VPS Providers - Replies (4)
This is the project managed by crazycoder13, and He is also trying to open his own host organization.
From which he will provide free resources. Free VPS and Much more.
For VPS Contact him on Facebook!
Only for FOSS Developers,
[font=Tahoma, Verdana, Arial, sans-serif]Facebook Page: http://www.facebook.com/freeboxvps[/font]
[font=Tahoma, Verdana, Arial, sans-serif]VM specifications:
CPU: 20% of one Xeon core
RAM: 128M RAM
Disk: 1GB
Two accessory ports and SSH port per VM.
Powered by SliTaz and KVM

--------------------------------
[/font]
Hosting Owner: Crazycoder13
Posted by : HarisHayat

Pages (306): Jump to page 
Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 2,271
» Latest member: orzpainter
» Forum threads: 3,102
» Forum posts: 34,786

Full Statistics

Online Users
There are currently 103 online users.
» 0 Member(s) | 102 Guest(s)
Bing

Latest Threads
Windows VPS @ $31.5/Year ...
Forum: Cheap Providers
Last Post: DewlanceHosting
08-16-2025, 03:12 AM
» Replies: 0
» Views: 157
Buy DemoTiger Videos on c...
Forum: Others
Last Post: DewlanceHosting
08-16-2025, 03:10 AM
» Replies: 8
» Views: 4,853
Budget Dedicated Servers ...
Forum: Others
Last Post: HostNamaste
08-13-2025, 04:54 AM
» Replies: 2
» Views: 1,024
☁️ How to Use VCCPRO Virt...
Forum: Cheap Providers
Last Post: bestadvisor
07-13-2025, 09:36 AM
» Replies: 0
» Views: 312
[Promo] 30% Discount – VP...
Forum: Cheap Providers
Last Post: LLHOST
07-11-2025, 12:56 PM
» Replies: 0
» Views: 243
How Virtual Cards Are Cha...
Forum: Offtopic
Last Post: bestadvisor
07-07-2025, 08:35 PM
» Replies: 0
» Views: 352
LLHOST — 40% OFF Netherla...
Forum: Free VPS Providers
Last Post: LLHOST
07-02-2025, 08:42 AM
» Replies: 0
» Views: 575
✅ Affordable VPS Hosting ...
Forum: Cheap VPS Providers
Last Post: RIYAD
07-02-2025, 03:02 AM
» Replies: 0
» Views: 620
15% Lifetime Discount on ...
Forum: Cheap Providers
Last Post: LLHOST
06-25-2025, 05:03 AM
» Replies: 0
» Views: 283
Get 50% Off Your First Ne...
Forum: Others
Last Post: LLHOST
06-19-2025, 10:09 AM
» Replies: 0
» Views: 501

Sponsors: VirMach - Host4Fun - CubeData - Evolution-Host - HostDare - Hyper Expert - Shadow Hosting - Bladenode - Hostlease - RackNerd - ReadyDedis - Limitless Hosting