arrow_upward

Posted by: Dynamo - 10-22-2015, 06:20 AM - Forum: VPS Downtimes - Replies (6)
[Image: svgclock.svg]
IgniteServers are Migrating from CANADA to LONDON node,
VPS 1 users should backup there files as the vpses will be removed and new vpses would be assigned to them after 10 hours , so you guys have only 10 hours to backup your files.

Sorry for our inconvenience

Kind Regards,
Dynamo
Posted by: Dudi - 10-21-2015, 04:45 PM - Forum: Tutorials - Replies (4)
Hello everyone,

In this tutorial I'm going to show that how can you create passwordless login to VPS.

1. Download PuTTY Key Generator from here: http://the.earth.li/~sgtatham/putty/late...ttygen.exe
And then start it.
[Image: K_pkiv_g_s001_www.kepfeltoltes.hu_.jpg]

2. You can change "number of bits in a generated key" to "4096" if you would like to be more secure.
[Image: K_pkiv_g_s002_www.kepfeltoltes.hu_.png]

3. Then click to  Generate and make some random moves with your mouse.

4. When It's finished, then save Public and then save Private key to a safe location on your HDD and to a second place too, for example a flashdrive.
It will ask that "Are you sure that you want to save this key without passphrase to protect it?".
Simple click to Yes.

5. Create a new text file with authorized_keys.txt name and copy the PuTTY Key Generator's windows content into this file.

6. Login to your VPS over SSH with root.

7. Enter these commands:
Code:
pwd
To check where you are, you must be in your home directory
Code:
cd ~
If you are not in home, then you must go there
Code:
mkdir .ssh
To create a new .ssh directory
Code:
nano .ssh/authorized_keys
To create and edit authorized_keys file
(if you get a "-bash: nano: command not found" error then you must first install nano with "apt-get install nano" command)
Simple copy your authorized_keys.txt file's content to this newly created file or you can copy directly from PuTTY Key Generator's windows content into this file.
Save and exit.

8. Enter these command to modify permissions
Code:
chmod -R 700 .ssh/

9. Open and edit sshd_config file
Code:
nano /etc/ssh/sshd_config
Search the PermitRootLogin line.
Delete "Yes" or "No" and replace with "without-password".
Code:
PermitRootLogin without-password
Save changes and exit from nano.

9. Restart your VPS
Code:
reboot

10. Locate your private key in Putty
[Image: 816138115K_pkiv_g_sputtysaveprivatekey00...es.hu_.png]
/Connection/SSH/Auth/Browse

11. Save connection in Putty and Connect
[Image: K_pkiv_g_sputtyconnect004_www.kepfeltoltes.hu_.png]
In this example I entered Google's DNS IP address (8.8.8.8). You have to replace it with your own VPS's IP address.
If you changed your SSH port in the previous tutorial then don't forget to use the right port.
Under the "Saved Sessions" enter your VPS's name (for example Post4VPS) and then click to save.

And you are ready. Putty won't ask for password anymore!

Please use the [Image: thumbsup.png] button below. Thx.
Posted by: KBStorm - 10-21-2015, 04:44 PM - Forum: Hardware & Technology - Replies (3)
Sony has finally launched the Xperia Z5 Dual and Xperia Z5 Premium in India. The Xperia Z5 Dual has been priced at whopping Rs. 52,990, while the Xperia Z5 Premium has will be retailing at even higher price of Rs. 62,990. The Z5 Dual will be up for sale from October 23, while the Z5 Premium will go on sale from November 7.

Sony Xperia Z5 specifications

* 5.2-inch Full HD 1080p IPS LCD display (1920×1080 pixels)
* Snapdragon 810 octa-core 64 bit processor paired with 3GB of RAM
* Android 5.1 Lollipop
* 32GB of internal storage, further expandable up to 2TB via microSD card
* 23MP primary camera with world’s fastest focus at 0.3 seconds
* 5MP front-facing camera
* dual-SIM, 4G LTE, 3G, Wi-Fi, Bluetooth 4.1, GPS/ GLONASS, NFC
* 2,900 mAh battery with up to 2 day backup

Sony Xperia Z5 Premium specifications

* 5.5-inch 4K UHD display (3840×2160 pixels)
* Snapdragon 810 octa-core 64 bit processor paired with 3GB of RAM
* Android 5.1 Lollipop
* 32GB of internal storage, further expandable up to 2TB via microSD card
* 23MP primary camera with world’s fastest focus at 0.3 seconds
* 5MP front-facing camera
* dual-SIM, 4G LTE, 3G, Wi-Fi, Bluetooth 4.1, GPS/ GLONASS, NFC
* 3,430 mAh battery with up to 2 day backup

Times Of India
Posted by: Dudi - 10-21-2015, 11:42 AM - Forum: Tutorials - Replies (14)
Hello Everyone,

In this tutorial I'm going to show you that how can you make the basic things that you can secure your Debian/Ubuntu based VPS server.

Let's start!
  • 1. Login to your VPS server over SSH.

    If you have a root account, then login with root.
    If do not have a root account then you must login with the user that is available, but  you must write sudo before every commands.

  • 2. If you are on your server first update the packages list with

    Code:
    apt-get update

  • 3. After that update and install the newest packages with

    Code:
    apt-get upgrade

  • 4. Install unattended-upgrades

    Code:
    apt-get install unattended-upgrades


    With this package you can easily install security updates in the future.

  • 5. Run unattended-upgrades

    Code:
    unattended-upgrade -v

    This will install security updates. This will take 1-2 minutes.
    After it is finished then restart your VPS.

    Code:
    reboot

  • 6. Set the correct date, time and timezone

    Code:
    dpkg-reconfigure tzdata

    First choose the continent that you are on. http://kepfeltoltes.hu/151021/1_continen...es.hu_.png
    Then select the city where you are living. http://kepfeltoltes.hu/151021/2_citiy_se...es.hu_.png
    Nota bene: If you would like to see your local time then do this above.
    But you can choose your VPS's physical location too if you would like to see how much is the time where the VPS is located at.

  • 7. Disable answering to PING requests

    First install my favorite command line text editor which is nano.

    Code:
    apt-get install nano

    Then open and edit a text config file with nano

    Code:
    nano /etc/sysctl.conf

    Simple copy and paste these two lines to the end of the file:
    Code:
    net.ipv4.icmp_echo_ignore_all = 1
    net.ipv4.icmp_echo_ignore_broadcasts = 1

    Then press CTRL and X at the same time to exit from Nano.
    Then save and overwrite the old file by pressing Y then ENTER keys.

  • 8. Change default SSH port, lower login grace time and disable root login with nano

    Code:
    nano /etc/ssh/sshd_config

    Find these lines:

    Code:
    Port 22
    You can change this to anything, but I advise to choose from 10000 to 65535 range.

    Code:
    LoginGraceTime 120
    Lower it 12

    Code:
    PermitRootLogin yes
    Change it to no.
    :exclamation: Warning! Disable root login is advised only if you have got at least one other account on your VPS that you can login with.
    If you don't have an another user on your VPS other than root and you disable root login then you won't be able to login to your VPS server anymore.

    Then press CTRL and X at the same time to exit from Nano.
    Then save and overwrite the old file by pressing Y then ENTER keys.

    :idea: But you can create a second user easily.
    Use numbers in the username and if someone would like to hack your server then he has much harder work to guess the username with numbers and then guess the password too.

    Code:
    adduser Sec0ndUser --force-badname

    Then enter the new user's password, then repeat it.
    You don't have to fill the other fields, simple press ENTERs.
           Full Name []:
           Room Number []:
           Work Phone []:
           Home Phone []:
           Other []:
    Is the information correct? [Y/n]

    If you logged in to your VPS with normal user and would like to do modifications then you can use sudo before every command to gain root access, or simple change user with the su command.

  • 9.Install and configure Fail2ban

    Your VPS is a public server on the web and everyone can see it.
    A lot of hackers would like to get into it and steal your data and resources to send SPAM emails or attack other servers with your VPS.
    To prevent this we disabled ping answers, root login over SSH, changed SSH ports. But we always can do more.
    To install one of the best security software for Linux enter this:
    Code:
    apt-get install fail2ban

    To configure we have to edit config files with nano:
    Code:
    nano /etc/fail2ban/jail.conf

    Find these lines and make changes like I did:
    Code:
    bantime  = 80000
    findtime = 30000
    maxretry = 2
    [ssh]
    enabled  = true
    port     = ssh,12345

    Note: 12345 should be your previously chosen SSH port number in Step 8.
    Then save it.

    You can check when and where the hackers from want to access your VPS by typing:
    Code:
    cat /var/log/fail2ban.log

    Don't worry, of course fail2ban successfully stopped them.
    Here you can see their IP addresses.
    If you would like to know that where they are from, then enter this:
    Code:
    wget -qO- http://getipaddr.net/more/index.php?ip=8.8.8.8

    Code:
    8.8.8.8
    Country: United States
    Country code: US
    Region: CA
    Region code: California
    City: Mountain View
    94040
    Latitude: 37.386
    Longitude: -122.0838
    Timezone: America/Los_Angeles
    ISP: Google
    Organization: Google
    ASN: AS15169 Google Inc.
    rDNS: 8.8.8.8

    This just example, you must replace Google's IP address with the hackers' IP address that you can find in fail2ban.log.

  • +1 Choose the right password
    Your passwords should be very long and very complex.
    You don't have to remember to it, simple use a password manager application.
    I suggest to use KeePass. It's free and opensource.
    You can donwload it from here: http://keepass.info/

Congratulations!
If you did all of the above then you are ready with securing with your VPS server.

Please use the [Image: thumbsup.png] button below. Thx.
Posted by: Dudi - 10-21-2015, 08:08 AM - Forum: Other Free Service Providers - Replies (11)
Panda Global Protection 2016 - Get six months free license

Tutorial how can you get the license
  • 1. You must register on this website:  http://promo.pandasecurity.com/tp-link/
  • 2. Tu nombre means in Spanish that Enter your name here
  • 3. Tu e-mail meas in Spanish that Enter your email address here
  • 4. N de serie TP-LINK Enter this code here: "GP15TPLINK56"

They will send you the license by email.
You can download the software from Panda's official website: http://acs.pandasoftware.com/Panda2015/G...DAGP15.exe

GENERAL CONDITIONS
  • Free for six months from product activation.
  • This activation must be done at an earlier date than December 31, 2015.
  • 5 Licences: once activated and registered the product can be used in 5 different devices associated with a single account Panda.
  • Multidevice: supports Android ™, Windows and MAC.
  • You can use it in tablets, smartphones and computers.
  • Promotion valid until December 31, 2015.

N.B. Just a side note:
There will be no ads, nags, or any other pop ups.
This is not a trial, this is a full version software for 6 months.
Posted by: Sagnik - 10-20-2015, 05:55 AM - Forum: Tutorials - No Replies
Hello guys...today I am going to teach you how to create a BASIC SA:MP server in linux(CentOS).
Requirements:
1. One VPS or a Dedicated Server.
2. PuTTy and some knowledge of SSH.
3. Time and a cup of tea of you like...
Procedure:
First of all we will be creating a new user for SA:MP(NEVER run SA:MP in root)
So, Enter
Code:
adduser -m samp
Then, set a password
Code:
passwd samp
Enter any password.
If you are not used to PuTTy, let me tell you that the letters will not appear while you are typing the password.
Next close the root window.
Login with your newly created account.
Then...
1. Enter:
Code:
cd ~
2.Then:
Code:
wget http://files.sa-mp.com/samp037svr_R2-1.tar.gz
3. Un'tar'
Code:
tar zxf samp037svr_R2-1.tar.gz
4.You can verify whether it is properly done by entering the {code}ls[/code]command.
5.Now
Code:
cd samp03
5. Edit the config file. (DON'T FORGET TO CHANGE RCON Password)
Code:
nano server.cfg
When done, Ctrl+0 and then Ctrl+X
6. Then we must chmod some files as 'executable'
Code:
chmod +x samp-npc samp03svr announce
7. NOW IT'S TIME TO START THE SERVER.:
Code:
nohup ./samp03svr &
WOW!!! YOU NOW HAVE A WORKING SA:MP SERVER.
Posted by: c0re - 10-18-2015, 12:42 PM - Forum: Other Free Service Providers - Replies (10)
So, here I am sharing how to get 6 months licence of the No.1 ranked antivirus, Bitdefender.
It has been the greatest av from a lot of years.
It has won many awards. It's signatures are great.

Pro's
Worlds best protection, great signatures and zero day protection.
Easy to use and automated.
Good UI.

Con's
Resource hungry
Little buggy
Huge size of installer

How to get licence.
1-Go to the link below
2-enter email id and fill captcha
3-Press the button. You will get your licence in your email id.

After that install the product and put the licence. Enjoy. Product can be downloaded from their site (www.bitdefender.com)


Linkto giveaway:-
http://www.bitdefender.com/media/html/ad...oval-tool/
Posted by: c0re - 10-18-2015, 12:18 PM - Forum: Other Free Service Providers - No Replies
One of my threads from FreeVPS.us I wanted to share here.
(06-18-2015, 11:46 AM)c0re_03 Wrote: Hi, Here is a small giveaway. This giveaway is valid for Czech Republic only, but you can use any proxy and put your country and get the licence... Smile 
Features:-
[font=sans-serif]•Protects you from Online Threats[/font]
[font=helvetica, arial, sans-serif][font=sans-serif]•Protects your devices from viruses, trojans and other malware. (Includes dual engines, Bitdefender + F-Secure, which provides excellent protection)[/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=sans-serif]•Anti-Theft[/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=sans-serif]•Banking protection to make banking safe[/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=sans-serif]•Quick and easy installation[/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=sans-serif]•Light-weight on system and automated[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=sans-serif]•Includes 3 devices, could be Windows, Mac or Android.[/font][/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]How to get:-[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]1-Use any Czech Proxy and go here - [font='Trebuchet MS', Helvetica, Arial, sans-serif]http://www.f-secure.com/chipcz[/font][/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]2-Fill all the fields [/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]3-Press enter[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]4-You will get a page telling your licence expiry date[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]5-Go to your F-Secure safe account page [font=arial, sans-serif]https://mysafe.f-secure.com/login )[/font][/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]6-Login to your account [/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]7-Click on "How to use F-Secure SAFE" button[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]8-A popup will come[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]9-Click on the -> arrow above, and move to the fourth picture (Next arrow)[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]10-Click the X button (Cross button)[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]11-You will find a "Install" button below along with the licences remaining[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]12-Click the "Install" button[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]13-A pop-up will come, with three options to download on current device, get by email, get my sms.[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]14-Use the first option and click the "Download" button[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]15-Select your platform/OS[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]16-Click next button[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]17-Name your device[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]18-Click on the next button[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]19-Click on "Download" button[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]20-Your installer will download[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]21-Open the installer and follow the instructions[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]22-Congrats, you have a installed Security Suite with 7 months of licence absolutely free! Smile[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]Enjoy the giveaway, and share it with everyone![/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]Extra Info [/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]Czech proxy you can use for getting licence- www.unblocksurfproxy.com[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]I have provided in-depth steps for newbies too. If you aren't one, you can just simply follow me till 5th step, after which it's very easy to install.[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]The words in Bold are to emphasize the importance of them in the step.[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]I am not responsible for the Proxy, it is just put here my me, in case you want to use. If it causes any problems it's not my responsibility.[/font][/font][/font][/font][/font][/font]
[font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif][font=helvetica, arial, sans-serif]F-Secure is neither promoted by me, nor am I their partner.[/font][/font][/font][/font][/font][/font]
E: I updated the proxy link
Posted by: Sagnik - 10-17-2015, 05:41 PM - Forum: Free VPS Providers - Replies (9)
May be some of you already already know this but I am posting this here as it is a working site and gives real VPS...
https://www.cloudrino.net
Posted by: thispc - 10-14-2015, 10:02 PM - Forum: Hardware & Technology - Replies (15)
Post your recently acquired tech items here..

Mine was nexus 9 tab
*awesome display
*awesome looks (htc obviously)
*awesome gaming(nvidia tegra)


Just upgraded its OS to Android M..

Worth my Money..
(This is not an advertisement :p)

Your turn..
Pages (305): 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,092
» Forum posts: 34,815

Full Statistics

Online Users
There are currently 268 online users.
» 0 Member(s) | 265 Guest(s)
Bing, Google, Applebot

Latest Threads
Get 25% OFF all LLHOST ne...
Forum: Cheap VPS Providers
Last Post: LLHOST
04-22-2025, 11:04 AM
» Replies: 0
» Views: 53
LLHOST: VPS in the Nether...
Forum: Others
Last Post: LLHOST
04-15-2025, 07:32 PM
» Replies: 0
» Views: 133
Hello all!
Forum: Meet & Greet!
Last Post: perry
03-26-2025, 11:28 AM
» Replies: 1
» Views: 236
Buy DemoTiger Videos on c...
Forum: Others
Last Post: DewlanceHosting
03-25-2025, 02:07 PM
» Replies: 5
» Views: 3,288
VisualWebTechnologies | 7...
Forum: Others
Last Post: visualwebtechnologies
03-11-2025, 02:58 AM
» Replies: 0
» Views: 189
Post2Host.com domain on a...
Forum: Others
Last Post: Variable
03-10-2025, 04:04 PM
» Replies: 0
» Views: 144
KVM & OpenVZ Yearly VPS f...
Forum: Cheap VPS Providers
Last Post: HostNamaste
03-05-2025, 12:15 PM
» Replies: 0
» Views: 348
Create Unlimited Virtual ...
Forum: Hardware & Technology
Last Post: bestadvisor
03-01-2025, 09:47 AM
» Replies: 0
» Views: 509
VisualWeb offers cPanel H...
Forum: Others
Last Post: visualwebtechnologies
01-23-2025, 03:38 AM
» Replies: 0
» Views: 250
How you can Create unlimi...
Forum: Other Free Service Providers
Last Post: vps-rdp
01-08-2025, 05:12 PM
» Replies: 1
» Views: 449

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