Use Newton's Method:
f'(x)=4x3-24x2;
xn+1=xn-f(xn)/f'(xn); start with x0=1, then:
x1=x0-f(x0)/f'(x0)=1-(1-8-375)/(4-24)=-181/10=-18.1;
x2=-13.211...; x3=-9.592...; x4=-6.952...; x5=-5.095...; x6=-3.917...;
x7=-3.356...; x8=-3.227...; x9=-3.221...; ...xn=-3.221062119 approx is one solution.
A rough graph of f(x) shows another solution near x=9, so let x0=9:
after several iterations xn=8.591352743 approx is another solution.
There are no other real zeroes for x; the complex zeroes can be found by dividing by the discovered factors x+3.221062119 and x-8.591352743 to obtain the quadratic quotient, which can then be solved using the quadratic formula.