Skip to main content

Posts

Showing posts with the label ubuntu

Simple Step Installing WordPress in Ubuntu 24.04

Using ols1clk.sh Script This step will: Install OpenLiteSpeed Install PHP Secure your server Install MySQL Set up WordPress Run the script: bash <( curl -k https://raw.githubusercontent.com/litespeedtech/ols1clk/master/ols1clk.sh ) -w  Configuring WordPress Open your browser and navigate to your domain: http://yourdomain.com You’ll be greeted by the famous WordPress installation wizard. Follow these steps: Select your preferred language. Enter your site title, username, and password for the WordPress admin account. Click "Install WordPress." And just like that, you’ve done it!

:: How to Recompile Nginx in Ubuntu

  Recompiling Nginx on Ubuntu can be a crucial task for those who need to customize their web server to meet specific requirements. Whether you need to add new modules, optimize performance, or apply patches, recompiling Nginx allows you to tailor the server to your needs. This guide will walk you through the process step-by-step, ensuring you have a smooth and successful recompilation.   Understanding the Need for Recompilation Why Recompile Nginx? Recompiling Nginx is often necessary when you need to add or remove modules that are not included in the default package. For instance, if you need to integrate a third-party module for enhanced security or performance, recompilation is the way to go. Additionally, recompiling allows you to apply custom patches or optimizations that can significantly improve your server's efficiency. Benefits of Custom Compilation Custom compiling Nginx offers several advantages. Firstly, it provides greater control over the server's

:: Enable suPHP in Apache2 on Linux Ubuntu

  :: How to enable suPHP in Apache2 + Installing libapache2-mod-suphp in Ubuntu $ sudo apt-get install libapache2-mod-suphp + Enable mod_suphp for Apache2 in Ubuntu $ sudo a2enmod suphp + Restarting Apache2 for enable suphp on the fly $ sudo service apache2 restart + Checking suphp is enable create php file and add this line: <?php phpinfo(); ?> open that file and see on this line: Server API CGI/FastCGI :: Links + Google

:: install thunderbird 3.1.10 on linux

:: download thunderbird 3.1.10 email client # wget http://mozilla.cdn.leaseweb.com/thunderbird/releases/3.1.10/linux-i686/en-US/thunderbird-3.1.10.tar.bz2 or you can download on thunderbird download page :: installing thunderbird from source on linux # tar -xjf thunderbird-3.1.10.tar.bz2 -C /usr/local/ :: open / running thunderbird 3.1.10 $ /usr/local/thunderbird/thunderbird :: add thunderbird shortcut on gnome-panel 0. right-click gnome panel and select Add to Panel.. 1. select Custom Application Launcher.. 2. add value on Add Louncher, like: Type: Aplication Name: thunderbird Command: /usr/local/thunderbird/thunderbird 3. click OK button :: links + google + thunderbird

:: error while loading shared libraries: libgtk-x11

:: if you running thunderbird / firefox and get error like: /usr/local/firefox/firefox-bin: error while loading shared libraries: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory or /usr/local/thunderbird/thunderbird: error while loading shared libraries: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory :: how to fix error libgtk-x11 on linux debian / ubuntu # aptitude install ia32-libs ia32-libs-gtk :: links + google

:: setup qemu bridged networking on linux ubuntu

:: setup qemu bridged network + make / setup bridge on interface $ sudo vi /etc/network/interfaces # setup like : auto lo iface lo inet loopback auto br0 iface br0 inet static address 10.100.100.81 netmask 255.255.255.0 network 10.100.100.0 broadcast 10.100.100.255 gateway 10.100.100.1 bridge_ports eth0 bridge_fd 9 bridge_hello 2 bridge_maxage 12 bridge_stp off + restarting network interfaces $ sudo /etc/init.d/networking restart :: starting qemu add network options: -net nic,vlan=0 -net tap,vlan=0,ifname=tap0,script=/etc/qemu-ifup ex: $ sudo qemu -cdrom install-x86-minimal-20110111.iso -hda gentoo -net nic,vlan=0 -net tap,vlan=0,ifname=tap0,script=/etc/qemu-ifup :: link + googlelinux + iank