Posts
Origin site: Analysis and Design of Web-based Information Systems Abstract We have developed a method for analysis and design of Web-based information systems (WBISs), and tools to support the method, WebArchitect …
Origin site: Customizing the Login Form The Login Form is your gateway to using and configuring the WordPress publishing platform. It controls access to the Administration Screens, allowing only registered users …
A note of my django site deployment~~~~ Firstly, debug django site with: ./manager runserver 0.0.0.0:8000 And access from web browser, then try the followed steps. Reference Documentation: Setting up Django and …
Found a tool to display qrcode in terminal -- qrcode-termimal, funny tool~~~ 1. Install npm: ~]# wget https://nodejs.org/dist/v6.11.1/node-v6.11.1.tar.gz ~]# tar xf node-v6.11.1.tar.gz node-v6.11.1]# configure node-v6.11.1]# make; make install 2. Install qrcode-termimal: ~]# …
OS: Neokylin Linux Advanced Server 6.8 build06 x86_64Machine: virtual machine on 32.179 with conditions:CPU: 1Memory: 1024MBDisk: 25GBOS install options:Install option: Partitions: /boot(ext4 200MB) + /(ext4 20GB) + swap(2048MB)HA Software and Required …
Kernel versions of linux releases~~ References: RedHat CentOS Ubuntu ... Where I find distrowatch.com: https://www.quora.com/Is-there-a-list-of-Linux-distribution-releases-compared-to-Linux-Kernel-versions Attention: centos is based on redhat, so the kernel version should be found in Redhat distributions. ===================================================================================================== RedHat …
Generally, we install system with CD/DVD or on windows, only need to execute setup.exe, then follow the graphic steps. Here I tried to install centos from disk storage, and make …
Server World http://www.server-world.info Red Hat Docs https://access.redhat.com/documentation/en/ Linux Test Tools http://ltp.sourceforge.net/tooltable.php Excelib (A personal site, from which I learnt a lot about how to handle firewalld) http://www.excelib.com/ Autotools( how to …
Take reference from: http://blog.csdn.net/wmj2004/article/details/53215944 As described in django documentation, mysql is supported by build in models, but in ./manage.py shell: >>> from django.db import backends There is no backends.mysql, and ./manage.py would pop errore: Error …