![]() |
|
How to share files in BackTrack 5 using apache2 - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Computers (https://sinister.li/Forum-Computers) +--- Forum: Operating Systems (https://sinister.li/Forum-Operating-Systems) +--- Thread: How to share files in BackTrack 5 using apache2 (/Thread-How-to-share-files-in-BackTrack-5-using-apache2) |
How to share files in BackTrack 5 using apache2 - LiXon - 02-19-2013 1. Open your terminal and create a new directory "files" Code: mkdir /var/www/files2. Change mode for the files folder into 755 Code: chmod -R 755 /var/www/files/3. Change the ownership into www-data Code: chown -R www-data:www-data /var/www/files/4. Type Code: ls -la /var/www/ | grep files![]() 5. Now we need to activate the apache server by running Code: " service apache 2 start "( If you didn't have apache2 installed, run apt-get install apache2 command ) 6. Now our web server is up, so let's copy some file into our files folder. ![]() ( /root/Desktop/ => your file location ; /var/www/files => your folder used for sharing ) 7. For accesing the files folder, check your Backtrack ip adress by running " ifconfig " command. 8. Open your ip in windows or everywhere you want with web browser. ![]() To stop your apache server, run " service apache2 stop " Happy sharing ! :lol: Created by LiXon for HackCommunity.com - Enjoy !
![]() RE: How to share files in BackTrack 5 using apache2 - moroaddict - 02-19-2013 thanks, very useful, keep your hard work
RE: How to share files in BackTrack 5 using apache2 - LiXon - 02-20-2013 (02-19-2013, 10:01 PM)moroaddict Wrote: thanks, very useful, keep your hard work Thanks man, my pleasure
|