Have you installed the libsfml-dev package? DLL files are only used on Windows. If you have installed SFML correctly you should not have to move any library files anywhere.
||warning: libGLEW.so.1.5, needed by /home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so, not found (tryusing -rpath or -rpath-link)|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewUniform1fARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__GLEW_ARB_shader_objects'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewGetObjectParameterivARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__GLEW_ARB_vertex_shader'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewFramebufferTexture2DEXT'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewUniformMatrix4fvARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewGenFramebuffersEXT'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewUniform3fARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewRenderbufferStorageEXT'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__GLEW_ARB_fragment_shader'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewActiveTextureARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewShaderSourceARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `glewInit'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewBindFramebufferEXT'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewFramebufferRenderbufferEXT'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewLinkProgramARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewUseProgramObjectARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewBlendFuncSeparateEXT'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewGenRenderbuffersEXT'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewUniform2fARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewUniform4fARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewCreateProgramObjectARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `glewGetErrorString'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewCompileShaderARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewDeleteRenderbuffersEXT'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewDeleteObjectARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewGetUniformLocationARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewGetInfoLogARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__GLEW_EXT_blend_func_separate'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewDeleteFramebuffersEXT'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewCheckFramebufferStatusEXT'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewUniform1iARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__GLEW_ARB_texture_non_power_of_two'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__GLEW_ARB_shading_language_100'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewCreateShaderObjectARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewBindRenderbufferEXT'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__GLEW_EXT_framebuffer_object'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewAttachObjectARB'|
/home/bolbi/bolbi/SFML-2.1/lib/libsfml-graphics.so||undefined reference to `__glewGetHandleARB'|
||=== Build finished: 39 errors, 1 warnings (0 minutes, 4 seconds) ===|
Edit: ... There is a problem with GLEW, but I dont use GLEW, I just use Codeblocks on ubuntu with sfml, why he says something about GLEW?
SFML graphics uses GLEW. It says it can't find libGLEW.so so I guess that's the problem.
Did you build SFML from source? If so, I guess you already have GLEW installed so maybe you just need to add the compiler flag -lGLEW (and maybe also -lGLU -lGL) to link the GLEW library, but that's just a guess.
If you have downloaded some precompiled library files you might have to manually install the correct version of GLEW that was used when building the library. Building from source might be easier because it's probably not so picky about the exact version.
If you use Ubuntu Trusty or later you can install SFML 2.1 from the package manager. That would be the easiest way because it installs all dependencies you need automatically.