This file is too big. Files must be less than 1500 KB in size. Back
How to fix the error "This file is too big. Files must be less than 1500 KB in size. Back" Go to Network Admin: Network Settings > Max upload file size Done !
Just another Yipp.ca Blogs site
How to fix the error "This file is too big. Files must be less than 1500 KB in size. Back" Go to Network Admin: Network Settings > Max upload file size Done !
Solution: $> sudo gedit /etc/selinux/config Then put the ones you want : # enforcing - SELinux security policy is enforced. # permissive - SELinux prints warnings instead of enforcing. # disabled - No...
Sometime as a programmer things take unusually long to achieve and magically work after many hours of struggle. This article is a tribute to the God and Goddess in the sky that watches upon...
PHP Fatal error: Class 'XMLWriter' not found in /var/www/hydra/control/write_xml_preset.php Solution : $> sudo yum install php-xml Et voila !! We like it simple like this
Find files in linux Solution using GREP $> grep -ilR 'edma3' /usr/local/ti/* -i == ignore case -R == recursive directories Another often used command for developers $> grep --include=\*.{c,cpp,h} -rnw 'directory' -e "pattern"...
List all packages installed $> rpm -qa see also RPM delete in batch with xargs
$> sudo gedit /etc/sysconfig/network-scripts/ifcfg-eth0 Make sure to have these lines like this : ONBOOT=yes NM_CONTROLLED=yes Note: This work for a Virtual Machine using Bridge Mode adaptor in VirtualBox.
$> sudo /etc/init.d/iptables save $> sudo /etc/init.d/iptables stop $> sudo chkconfig iptables off
$> sudo yum remove mysql-server $> sudo rm -fr /var/lib/mysql Everything is gone!! Users, privileges, databases cleared. Note: the /var/lib/mysql folder will be refurnished on the next time you run sudo service mysqld start
Initial install $> sudo yum install mysql-client mysql-server $> sudo service mysqld start $> sudo chkconfig mysqld on Set a root password (optional) $> /usr/bin/mysqladmin -u root password 'new-password' Uninstall mysql completely including databases...
Recent Comments