This is an elaboration of Gerry Myerson's answer (and user6312's comment).
As you derived, we want to find an integer $b$ such that for some integer $k$,
$$(2.011)10^k < 2^b < (2.012)10^k$$
which, taking logarithms to base 10 etc., is equivalent to ($\{x\}$ denotes the fractional part of $x$):
$$\log_{10}{2.011} < \{b~\log_{10}{2}\} < \log_{10}{2.012}.$$
Because $\log_{10}{2}$ is irrational, the sequence $\{b~\log_{10}{2}\}$ (for $b$ varying over positive integers) is dense in $[0,1]$, so you are guaranteed that there are infinitely many $b$ for which $\{b~\log_{10}{2}\}$ lies in the interval $(\log_{10}2.011, \log_{10}2.012)$. In fact, the sequence is also uniformly distributed in the unit interval, so that $\log_{10}2.012 - \log_{10}2.011 \approx 0.0002159$ is the fraction of integers with this property, and indeed a computer search finds 21 such integers in the first 100000 and 216 in the first 1000000.
Given an irrational number $\theta$, issues about making $\{q\theta\}$ close to $0$ (for integer $q$) are called homogeneous diophantine approximation; making it close to some arbitrary number $\alpha$ is called inhomogeneous diophantine approximation, which is what we have here.
Here is one way, possibly not the simplest, to find such $q$ (based on Module 16 of Edward Burger's Exploring the Number Jungle, a great book):
Using the continued fraction of $\theta$ etc., find relatively prime integers $m$ and $n$ such that $|\theta n - m| < \frac1n$.
Let $N$ be the closest integer to $\alpha n$ (so that $|\alpha n - N| \le \frac12$).
Write $N$ as $vm - un$ with $|v| \leq \frac{n}2$ (using Euclidean algorithm etc.)
Then, for $q = n + v$ and $p = m + u$, we have
$$ |\theta q - p - \alpha| < \frac{3}{q} $$
Proving all this (after the first step) is just some elementary algebra. For our problem with $\theta = \log_{10}2$ and $\alpha = \log_{10}2.011$, the first convergent that is good enough is $m/n = 643/2136$. Then $N$ is the closest integer to $n\alpha = 2136\alpha$ so $N = 648$. We write it as $N = v(643) - u(2136)$ with $v = -288$ and $u = -87$. So $q = n + v = 2136 - 288 = 1848$ and $p = m + u = 643 - 87 = 556$. And indeed, we have $1848\log_{10}2 \approx 556.30343$ and its fractional part lies between $\log_{10}{2.011} \approx 0.30341$ and $\log_{10}{2.012} \approx 0.30363$.