1) ติดตั้ง lampp โดยเลือกแพกเกจที่มี PHP เวอร์ชั่น 5.3.8
1.1) ให้ดาวน์โหลดไฟล์จากเว็บ https://www.apachefriends.org/download.html
เลือกเวอร์ชั่น xampp-linux-1.7.7.tar.gz ดาวน์โหลดเสร็จย้ายไปที่ home
1.2) แตกไฟล์ไปที่ /opt
sudo tar xvfz xampp-linux-1.7.7.tar.gz -C /opt
1.3) เริ่มทำงาน
sudo /opt/lampp/lampp start
1.4) กำหนดรหัสผ่าน
sudo /opt/lampp/lampp security
อ้างอิง : http://www.youtube.com/watch?v=xaDzyo0ObvU&list=PLN-8Ywrbia66ZmYKdeu7aPEMAzd4M82IT&index=2
2)กำหนดสิทธิ์ให้เรียกไฟล์ได้
2.1 To change all the directories to 755 (-rwxr-xr-x):
find /opt/lampp/htdocs -type d -exec chmod 755 {} \;
2.2 To change all the files to 644 (-rw-r--r--):
find /opt/lampp/htdocs -type f -exec chmod 644 {} \;
อ้างอิง : http://stackoverflow.com/questions/3740152/how-to-set-chmod-for-a-folder-and-all-of-its-subfolders-and-files-in-linux-ubunt
3) ตั้งค่าให้ Start lampp อัตโนมัติ(เมื่อเปิดเครื่อง)
3.1) Open terminal and run following command.sudo gedit /etc/init.d/lampp
3.2) paste following code in open file
#!/bin/bash
/opt/lampp/lampp start
save and close the file
3.3) run following command to install init scripts to all runlevel
sudo update-rc.d lampp defaults
restart the system
อ้างอิง : http://computernetworkingnotes.com/ubuntu-12-04-tips-and-tricks/how-to-start-xampp-automatically-in-ubuntu.html
ความคิดเห็น
แสดงความคิดเห็น