Disable iPhone Backup Process in iTunes

Most people are familiar with iTunes as it is not only a simple music player but a useful tool to manage music and videos in iOS devices. Whenever you plug your iPhone, iPod or iPad into computer with iTunes, iTunes will attempt to automatically scan and back up your device. Generally back up device is great in case of losing data accidently, but sometimes you may want to disable iPhone backup in iTunes due to the following reasons:

stop backup
  • You are hurry to access something in your device but the scanning takes too long and you cannot implement any operation.
  • The storage space of your computer is limited and you don’t want to back up all the large data and documents in iTunes.
  • You have already backed up the device and need to avoid erasing the former backup.

The most efficient method to disable iTunes Backup Process Permanently

There’s a little difference to turn off the iPhone backup in iTunes between Windows and Mac, here’s quick guide for different systems:

For Windows:

    • Close the iTunes and hold the Windows Key, press «R» and you will see the Run dialog box
    • Type the following command on your Windows:

32-bit

"C:\Program Files (x86)\iTunes\iTunes.exe" /set PrefInt Automatic Device Backups Disabled 1
  • After that, press «Enter» to finish the process.
    If you wish iTunes to back up your device again, just replace «1» with «0» in the above command.

64-bit

"C:\Program Files\iTunes\iTunes.exe" /setPrefInt Automatic Device Backups Disabled 1

For Mac:

  • Close iTunes and open the «Utilities» folder, launch «Terminal»
  • Type the following command and then press «Enter», you’ll be successful in disabling iTunes auto backup iPhonedefaults write
  •  com.apple.iTunes DeviceBackupsDisabled -bool true

If you want to enable backups, change the terminal command to:
defaults write com.apple.iTunes DeviceBackupsDisabled -bool false

Note: Many people are used to locking their iTunes with password to keep the safety of the file. But sometimes they may forget the passcode and cannot get access to the backups. You can free to try iPhone Backup Unlocker to restore all your precious data form iTunes.
Опубликовано в Apple, iTunes

Что такое Anti-DDoS защита?

Принципы функционирования DDoS-атакservices-sans-protection

 

Шансы стать мишенью DDoS атаки большие и атаки многочисленные. Конечной целью DDoS атаки является неработающий сервер, сервис или инфраструктура. Делается это путем перегрузки пропускной способности сервера или монополизирования его ресурсов до точки истощения. Во время DDoS атаки, множество запросов отправляются одновременно из нескольких точек через Интернет. Интенсивность такого «перекрестного огня» делает сервис нестабильным или, что еще хуже, недоступным.

Подробнее »

Опубликовано в Articles

How To Use Git Effectively

This article assumes that you have git installed and that your global configuration settings (namely username and email) are properly set. If this is not the case, please refer to the git introduction tutorial.

Git is a very useful piece of software to help streamline development for programming projects. It comes with no language requirements nor file structure requirements, leaving it open for the developers to decide how they want to structure their workflow.

Before using git for your development, it’s a good idea to plan out your workflow. The workflow decision is typically based on the size and scale of your project. To gain a basic understanding of git for now, a simple, single-branch workflow will suffice. By default, the first branch on any git project is called «master». In a following tutorial in this series, you will learn how to create other branches.

Let’s create our first project and call it «testing». (If you already have a project that you want to import to git you can skip down to that section.)

Подробнее »

Опубликовано в git

How To Set Up a Private Git Server on a VPS

Introduction

This tutorial will show you how to set up a fully fledged Git server using SSH keys for authentication. It will not have a web interface, this will just cover getting Git installed and your access to it set up. We’ll use the host «git.droplet.com» in place of the domain you will use for your VPS.

This can be a great option if you want to keep your code private while you work. While open-souce tends to be the status quo, there are some times when you don’t want to have your code freely available. An example would be if you are developing a mobile app, especially a paid one. Keep in mind this code can be read by anyone if they know the URL address to use for a clone, but that is only if they know it.

There is one major concern for many and that is a web interface to your repositories. GitHub accomplishes this amazingly well. There are applications that you can install such as Gitosis, GitList, and Goblet. We don’t go over those in this tutorial, but if you rely heavily on a graphic interface then you may want to look over those and think about installing one of them as soon as you done installing your Git server.

Подробнее »

Опубликовано в git

Отключение «Спящего режима» в Windows 7. Удаление файла hiberfil.sys

Спящий режим — это режим пониженного потребления электроэнергии, который позволяет быстро возобновить работу в режиме обычного потребления энергии (обычно в течение нескольких секунд) по требованию пользователя. Перевод компьютера в спящий режим напоминает нажатие кнопки «Пауза» на проигрывателе DVD: компьютер немедленно останавливает все операции и в любой момент готов к продолжению работы.

Режим гибернации — это режим пониженного потребления электроэнергии, разработанный в первую очередь для ноутбуков. При переходе в спящий режим все открытые документы и параметры сохраняются в памяти и компьютер переходит в режим пониженного потребления электроэнергии, а при переходе в режим гибернации все открытые документы и программы сохраняются на жестком диске и затем компьютер выключается. Из всех энергосберегающих режимов, используемых в ОС Windows, для поддержания режима гибернации требуется наименьшее количество электроэнергии. Если в течение длительного промежутка времени не планируется использовать ноутбук и нет возможности подзарядить батарею, рекомендуется перевести ноутбук в режим гибернации.

Подробнее »

Опубликовано в Windows, Электропитание

Рубрики