Your problem describes the Frechet Derivative of the function $f(x,y,z) = x^3 + y^3 + z^3$ at the point $(1,1,1)$ evaluated in the direction $(1,2,4)$.
Here is how to do this from first principles. If such a map $L$ exists, then we have
$$
\begin{align*}
0 &= \lim_{(h,0,0) \to 0} \frac{f(1+h,1,1) - f(1,1,1) - L(h,0,0)}{h}\\
&= \lim_{h \to 0} \frac{f(1+h,1,1) - f(1,1,1)}{h} - \frac{L(h,0,0)}{h}\\
&= \lim_{h \to 0} \frac{(1+h)^3 + 1 + 1 - (1+1+1)}{h} - \frac{hL(1,0,0)}{h}\\
&= \lim_{h \to 0} \frac{3h+3h^2+h^3}{h} - L(1,0,0)\\
&= 3 - L(1,0,0)
\end{align*}$$
So $L(1,0,0) = 3$. Note that this is exactly $\frac{\partial f}{\partial x} \big|_{(1,1,1)}$.
Similarly, by symmetry, we have $L(0,1,0) = L(0,0,1) = 3$.
Thus $L$ must be the linear map with the matrix $\begin{bmatrix} 3 & 3 & 3\end{bmatrix}$ if it exists. To show that $L$ actually does satisfy the definition you need to go back to the original limit and verify that it actually does equal $0$.
Once you very this, $L(1,2,4) = \begin{bmatrix} 3 & 3 & 3\end{bmatrix} \begin{bmatrix} 1 \\ 2 \\ 4\end{bmatrix} = 3(1) + 2(3) + 4(3) = 21$.