Archive | February, 2011

Tags:

Install FFMPEG on a RedHat based OS using yum

Posted on 28 February 2011 by Chris

If you need to install FFMPEG, the easiest way to do it is with yum. You can run this command to install it.

root@server[/]#yum install ffmpeg ffmpeg-devel

If you run that command and you get package not found, you just need to add the repository for the dag packages to yum. To do that, you will want to create the file /etc/yum.repos.d/dag.repo

root@server[/]#nano /etc/yum.repos.d/dag.repo

then add this in it

[dag]
name=Dag RPM Repository for Red Hat Enterprise Linux
baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag
gpgcheck=1
enabled=1

Then save the file.

After that, go ahead and add the key for the repository so you don’t receive any key errors.

root@server[/]#rpm -Uhv http://apt.sw.be/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.i386.rpm

Once you do that, you should be able to install those packages with yum without a problem.

Comments (2)

Tags:

Workaround for installing Subversion on a cPanel server

Posted on 28 February 2011 by Chris

When you are installing subversion using yum on a server that has cPanel on it, you will receive an error about missing dependencies for perl(URI), which will look something like this:

root@server [~]# yum install subversion
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* addons: mirror.team-cymru.org
* base: dist1.800hosting.com
* extras: mirror.5ninesolutions.com
* updates: mirror.team-cymru.org
Excluding Packages in global exclude list
Finished
Setting up Install Process
Resolving Dependencies
–> Running transaction check
—> Package subversion.i386 0:1.4.2-4.el5_3.1 set to be updated
–> Processing Dependency: perl(URI) >= 1.17 for package: subversion
–> Processing Dependency: neon >= 0.25.5-6.el5 for package: subversion
–> Processing Dependency: libneon.so.25 for package: subversion
–> Processing Dependency: libapr-1.so.0 for package: subversion
–> Processing Dependency: libaprutil-1.so.0 for package: subversion
–> Running transaction check
—> Package apr.i386 0:1.2.7-11.el5_3.1 set to be updated
—> Package apr-util.i386 0:1.2.7-7.el5_3.2 set to be updated
—> Package neon.i386 0:0.25.5-10.el5_4.1 set to be updated
—> Package subversion.i386 0:1.4.2-4.el5_3.1 set to be updated
–> Processing Dependency: perl(URI) >= 1.17 for package: subversion
–> Finished Dependency Resolution
subversion-1.4.2-4.el5_3.1.i386 from base has depsolving problems
–> Missing Dependency: perl(URI) >= 1.17 is needed by package
subversion-1.4.2-4.el5_3.1.i386 (base)
Error: Missing Dependency: perl(URI) >= 1.17 is needed by package
subversion-1.4.2-4.el5_3.1.i386 (base)
You could try using –skip-broken to work around the problem
You could try running: package-cleanup –problems
package-cleanup –dupes
rpm -Va –nofiles –nodigest

To work around this issue, you can edit your /etc/yum.conf file to remove the part that tells the package that it needs those dependencies. So first you will want to back up the current configuration to make sure that you can go back to the original when you are done.

root@server [/]# cp /etc/yum.conf /etc/yum.conf-bak

Then the file will look like this.

root@server [/]# nano /etc/yum.conf

[main]
exclude=apache* bind-chroot courier* dovecot* exim* httpd* mod_ssl* mysql* nsd* perl* php* proftpd* pure-ftpd* ruby* spamassassin* squirrelmail*
cachedir=/var/cache/yum
keepcache=0
debuglevel=2
logfile=/var/log/yum.log
distroverpkg=redhat-release
tolerant=1
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1

# Note: yum-RHN-plugin doesn’t honor this.
metadata_expire=1h

# Default.
# installonly_limit = 3

# PUT YOUR REPOS HERE OR IN separate files named file.repo
# in /etc/yum.repos.d

On the second line, you will want to delete perl*, then save the file and exit out. Once you do that, you will be able to install the subversion package using yum as normal. Once the package is installed successfully, just rename the original file back to yum.conf and overwrite the edited one, and it is installed!

Comments (0)

Tags:

Installing PHPShield loader on CentOS 64 Bit

Posted on 26 February 2011 by Chris

There are some scripts that you install that will require some extra PHP elements to be able to run. When installing PHPMotion, I came across this error.

Warning: dl() [function.dl]: Temporary module name should contain only filename in /home/user/public_html/site.com/classes/config.php on line 2
PHP script /home/user/public_html/site.com/classes/config.php is protected by phpSHIELD and requires the phpSHIELD loader phpshield.5.2.lin. The phpSHIELD loader has not been installed, or is not installed correctly. Please visit the phpSHIELD php encoder site to download required loader.

That is saying that you need to install the phpSHIELD loader. So, the first thing that you will need to do is to download the loader. I was able to get that from http://www.phpshield.com/loaders/ixed4.lin.x86-64.zip for CentOS 5.5 64 bit. You can also find the rest of the loaders at http://www.phpshield.com/loaders if you need it for a different operating system.

Then, we will need to check what the path is to the folder that holds the modules for PHP, which you can find in the php.ini. On the version of CentOS that I am using, that is found at /usr/local/lib/php.ini. You will want to find the part that says
; Directory in which the loadable extensions (modules) reside.
extension_dir = “/usr/local/lib/php/extensions/no-debug-non-zts-20060613″

You can also just use grep as a shortcut to find this so you dont have to look in the php.ini or create a phpinfo page. This will do that for you.

root@server [~]# grep extension_dir /usr/local/lib/php.ini
extension_dir = “/usr/local/lib/php/extensions/no-debug-non-zts-20060613″
; extension_dir directive above.

After that, you will want to check the version of PHP that you are using so you can choose the correct module to move to the modules folder that goes with your version of PHP. In our case, it is 5.2.9.

root@server [/]# php -v
PHP 5.2.9 (cli) (built: Feb 22 2011 10:26:40)
Copyright (c) 1997-2009 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies

Then you can create a folder, move the zip file with the modules into that folder, and decompress it. it will give you a few files, but you are going to only need one of those.
root@server [~]# unzip ixed4.lin.x86-64.zip
Archive: ixed4.lin.x86-64.zip
inflating: ixed.4.3.lin
inflating: ixed.4.3ts.lin
inflating: ixed.4.4.lin
inflating: ixed.4.4ts.lin
inflating: ixed.5.0.0.lin
inflating: ixed.5.0.0ts.lin
inflating: ixed.5.0.1.lin
inflating: ixed.5.0.1ts.lin
inflating: ixed.5.0.2.lin
inflating: ixed.5.0.2ts.lin
inflating: ixed.5.0.lin
inflating: ixed.5.0ts.lin
inflating: ixed.5.1.lin
inflating: ixed.5.1ts.lin
inflating: ixed.5.2.lin
inflating: ixed.5.2ts.lin
inflating: ixed.5.3.lin
inflating: ixed.5.3ts.lin

root@server# [~]#ls
./ ixed.4.3ts.lin ixed4.lin.x86-64.zip ixed.5.0.1.lin ixed.5.0.2ts.lin ixed.5.1.lin ixed.5.2ts.lin
../ ixed.4.4.lin ixed.5.0.0.lin ixed.5.0.1ts.lin ixed.5.0.lin ixed.5.1ts.lin ixed.5.3.lin
ixed.4.3.lin ixed.4.4ts.lin ixed.5.0.0ts.lin ixed.5.0.2.lin ixed.5.0ts.lin ixed.5.2.lin ixed.5.3ts.lin

Then for the 2.9 version of PHP that we have, we only will need the ixed.5.2.lin file. When we checked for our extensions directory, it came out to be /usr/local/lib/php/extensions/no-debug-non-zts-20060613, so that is where we need to move that file.

root@server# [~]#mv ixed.5.2.lin /usr/local/lib/php/extensions/no-debug-non-zts-20060613

Then, all you have left to do is to add a line to your php.ini file and you are done. You will want to use a text editor to add extension=”ixed.5.2.lin” to the line below where it specifies the extension directory. So, it should go from looking like this:

; Directory in which the loadable extensions (modules) reside.
extension_dir = “/usr/local/lib/php/extensions/no-debug-non-zts-20060613″

to

; Directory in which the loadable extensions (modules) reside.
extension_dir = “/usr/local/lib/php/extensions/no-debug-non-zts-20060613″
extension=”ixed.5.2.lin”

Then, just save the php.ini with your change and it is done! If that is the only error that you had with the site, it should be up and working now!

Comments (0)

Tags:

Find which version of CentOS that you are using

Posted on 25 February 2011 by Chris

To find which version you are using in CentOS, you can check the redhat-release file in /etc. When you check that file, you will see something like this:

root@server [~]# cat /etc/redhat-release
CentOS release 5.5 (Final)

Comments (0)

Tags:

Getting your kernel information

Posted on 21 February 2011 by Chris

You can check the kernel information as well as a few other things using the uname command. Using just uname alone will usually just show you that you are using the Linux kernel.

[root@server ~]# uname
Linux

To see just the kernel release, you can use the -r flag.

[root@server ~]# uname -r
2.6.18-194.26.1.el5.028stab079.2

Then the -v to see the version of the kernel that you are using.

[root@server ~]# uname -v
#1 SMP Fri Dec 17 19:25:15 MSK 2010

To check the processor type, you use the -p flag

[root@server ~]# uname -p
x86_64

Then, you can check the operating system with the -o flag.

[root@server ~]# uname -o
GNU/Linux

Along with the hostname command, you can use uname to see your hostname.

[root@server ~]# uname -n
server

Finally, if you want to see all of this information at the same time, you can use the -a flag for all, which is the one that i use anytime i need to see this information.

[root@server ~]# uname -a
Linux server 2.6.18-194.26.1.el5.028stab079.2 #1 SMP Fri Dec 17 19:25:15 MSK 2010 x86_64 x86_64 x86_64 GNU/Linux

Comments (0)

Tags:

Using the calendar in the terminal

Posted on 21 February 2011 by Chris

Linux has a the ability to show a full visual calendar from the terminal. If you just type in the “cal” command, you will show a visual of the current month, which will look something like this:

user@server:~$ cal
February 2011
Su Mo Tu We Th Fr Sa
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28

You can also use the “ncal” command, which will show the calendar in a more vertical format, such as this:

user@server:~$ ncal
February 2011
Mo 7 14 21 28
Tu 1 8 15 22
We 2 9 16 23
Th 3 10 17 24
Fr 4 11 18 25
Sa 5 12 19 26
Su 6 13 20 27

Furthermore, you can also show the previous, current and next month all at the same time by adding -3 to the cal command:

user@server:~$ cal -3
January 2011 February 2011 March 2011
Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa
1 1 2 3 4 5 1 2 3 4 5
2 3 4 5 6 7 8 6 7 8 9 10 11 12 6 7 8 9 10 11 12
9 10 11 12 13 14 15 13 14 15 16 17 18 19 13 14 15 16 17 18 19
16 17 18 19 20 21 22 20 21 22 23 24 25 26 20 21 22 23 24 25 26
23 24 25 26 27 28 29 27 28 27 28 29 30 31
30 31

If you have a particular month that you need to see, you can add -m and the month to display the calendar for that month. it also does not matter if you use the full month, the abbreviation of it, or the number of the month.

user@server:~$ cal -m nov
November 2011
Su Mo Tu We Th Fr Sa
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30

user@server:~$ cal -m november
November 2011
Su Mo Tu We Th Fr Sa
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30

user@server:~$ cal -m 11
November 2011
Su Mo Tu We Th Fr Sa
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30

To see a particular month of a different year, you can use the month number and year in the cal command:

user@server:~$ cal 11 2015
November 2015
Su Mo Tu We Th Fr Sa
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30

Lastly, if you need to see the entire calendar for a full year, just use cal and the year that you would like to see:

user@server:~$ cal 2015
2015

January February March
Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa
1 2 3 1 2 3 4 5 6 7 1 2 3 4 5 6 7
4 5 6 7 8 9 10 8 9 10 11 12 13 14 8 9 10 11 12 13 14
11 12 13 14 15 16 17 15 16 17 18 19 20 21 15 16 17 18 19 20 21
18 19 20 21 22 23 24 22 23 24 25 26 27 28 22 23 24 25 26 27 28
25 26 27 28 29 30 31 29 30 31

April May June
Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa
1 2 3 4 1 2 1 2 3 4 5 6
5 6 7 8 9 10 11 3 4 5 6 7 8 9 7 8 9 10 11 12 13
12 13 14 15 16 17 18 10 11 12 13 14 15 16 14 15 16 17 18 19 20
19 20 21 22 23 24 25 17 18 19 20 21 22 23 21 22 23 24 25 26 27
26 27 28 29 30 24 25 26 27 28 29 30 28 29 30
31
July August September
Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa
1 2 3 4 1 1 2 3 4 5
5 6 7 8 9 10 11 2 3 4 5 6 7 8 6 7 8 9 10 11 12
12 13 14 15 16 17 18 9 10 11 12 13 14 15 13 14 15 16 17 18 19
19 20 21 22 23 24 25 16 17 18 19 20 21 22 20 21 22 23 24 25 26
26 27 28 29 30 31 23 24 25 26 27 28 29 27 28 29 30
30 31
October November December
Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa
1 2 3 1 2 3 4 5 6 7 1 2 3 4 5
4 5 6 7 8 9 10 8 9 10 11 12 13 14 6 7 8 9 10 11 12
11 12 13 14 15 16 17 15 16 17 18 19 20 21 13 14 15 16 17 18 19
18 19 20 21 22 23 24 22 23 24 25 26 27 28 20 21 22 23 24 25 26
25 26 27 28 29 30 31 29 30 27 28 29 30 31

Have some tricks that you like to use with the Linux calendar? Let us know what you do in the comments below or over in our forum!!

Comments (0)

Tags: , ,

Joomla tip: White page on site or admin page

Posted on 20 February 2011 by Chris

If you have a white page when you go to your Joomla site or when you go to or login at the administration page, try going into the plugins, modules and components folders in your document root and rename the 3rd party plugins and modules that you have installed and many times it will fix the issue. This is usually caused by plugins that are not compatible with the version of Joomla that you are using. If you rename them and you are able to log into the site, you can then go back and re-enable them one by one to find the exact problem addon.

Comments (0)

Sorting Files By Date and Time

Posted on 15 February 2011 by Chris

There is more than one way to display files that are sorted by date, but I prefer to use the ll command to list the files, then the r to list them in reverse order and the t flag to sort them by the time.

So, we start out with a list of files such as this.
# ll
total 332
drwxr-xr-x 2 user user 4096 Nov 27 17:29 cgi-bin
-rwxr-xr-x 1 user user 397 May 25 2008 index.php
-rwxr-xr-x 1 user user 15410 Dec 6 2008 license.txt
-rwxr-xr-x 1 user user 9122 Jul 22 2010 readme.html
-rwxr-xr-x 1 user user 4391 Apr 19 2010 wp-activate.php
drwxr-xr-x 7 user user 4096 Jul 29 2010 wp-admin
-rwxr-xr-x 1 user user 40284 Jul 25 2010 wp-app.php
-rwxr-xr-x 1 user user 220 Oct 14 2008 wp-atom.php
-rwxr-xr-x 1 user user 274 May 25 2008 wp-blog-header.php
-rwxr-xr-x 1 user user 3926 May 6 2010 wp-comments-post.php
-rwxr-xr-x 1 user user 238 Oct 14 2008 wp-commentsrss2.php
-rwxr-xr-x 1 user user 3494 Nov 27 17:32 wp-config.php
-rwxr-xr-x 1 user user 3173 Oct 6 04:31 wp-config-sample.php
drwxr-xr-x 6 user user 4096 Nov 28 23:03 wp-content
-rwxr-xr-x 1 user user 1255 Mar 16 2010 wp-cron.php
-rwxr-xr-x 1 user user 240 Apr 19 2010 wp-feed.php
drwxr-xr-x 7 user user 4096 Jul 29 2010 wp-includes
-rwxr-xr-x 1 user user 2002 Mar 18 2010 wp-links-opml.php
-rwxr-xr-x 1 user user 2441 Feb 28 2010 wp-load.php
-rwxr-xr-x 1 user user 26059 Jun 1 2010 wp-login.php
-rwxr-xr-x 1 user user 7774 May 25 2010 wp-mail.php
-rwxr-xr-x 1 user user 487 Apr 20 2009 wp-pass.php
-rwxr-xr-x 1 user user 218 Oct 14 2008 wp-rdf.php
-rwxr-xr-x 1 user user 316 May 25 2008 wp-register.php
-rwxr-xr-x 1 user user 220 Oct 14 2008 wp-rss2.php
-rwxr-xr-x 1 user user 218 Oct 14 2008 wp-rss.php
-rwxr-xr-x 1 user user 9177 May 2 2010 wp-settings.php
-rwxr-xr-x 1 user user 18695 Jul 21 2010 wp-signup.php
-rwxr-xr-x 1 user user 3702 Feb 24 2010 wp-trackback.php
-rwxr-xr-x 1 user user 94184 Jul 14 2010 xmlrpc.php

Then, using ll -rt, you will show the files like this, in reverse order of date and time.
# ll -rt
total 332
-rwxr-xr-x 1 user user 316 May 25 2008 wp-register.php
-rwxr-xr-x 1 user user 274 May 25 2008 wp-blog-header.php
-rwxr-xr-x 1 user user 397 May 25 2008 index.php
-rwxr-xr-x 1 user user 218 Oct 14 2008 wp-rss.php
-rwxr-xr-x 1 user user 220 Oct 14 2008 wp-rss2.php
-rwxr-xr-x 1 user user 218 Oct 14 2008 wp-rdf.php
-rwxr-xr-x 1 user user 238 Oct 14 2008 wp-commentsrss2.php
-rwxr-xr-x 1 user user 220 Oct 14 2008 wp-atom.php
-rwxr-xr-x 1 user user 15410 Dec 6 2008 license.txt
-rwxr-xr-x 1 user user 487 Apr 20 2009 wp-pass.php
-rwxr-xr-x 1 user user 3702 Feb 24 2010 wp-trackback.php
-rwxr-xr-x 1 user user 2441 Feb 28 2010 wp-load.php
-rwxr-xr-x 1 user user 1255 Mar 16 2010 wp-cron.php
-rwxr-xr-x 1 user user 2002 Mar 18 2010 wp-links-opml.php
-rwxr-xr-x 1 user user 4391 Apr 19 2010 wp-activate.php
-rwxr-xr-x 1 user user 240 Apr 19 2010 wp-feed.php
-rwxr-xr-x 1 user user 9177 May 2 2010 wp-settings.php
-rwxr-xr-x 1 user user 3926 May 6 2010 wp-comments-post.php
-rwxr-xr-x 1 user user 7774 May 25 2010 wp-mail.php
-rwxr-xr-x 1 user user 26059 Jun 1 2010 wp-login.php
-rwxr-xr-x 1 user user 94184 Jul 14 2010 xmlrpc.php
-rwxr-xr-x 1 user user 18695 Jul 21 2010 wp-signup.php
-rwxr-xr-x 1 user user 9122 Jul 22 2010 readme.html
-rwxr-xr-x 1 user user 40284 Jul 25 2010 wp-app.php
drwxr-xr-x 7 user user 4096 Jul 29 2010 wp-includes
drwxr-xr-x 7 user user 4096 Jul 29 2010 wp-admin
-rwxr-xr-x 1 user user 3173 Oct 6 04:31 wp-config-sample.php
drwxr-xr-x 2 user user 4096 Nov 27 17:29 cgi-bin
-rwxr-xr-x 1 user user 3494 Nov 27 17:32 wp-config.php
drwxr-xr-x 6 user user 4096 Nov 28 23:03 wp-content

or you can leave out the r to list them in order of newest to oldest.
# ll -t
total 332
drwxr-xr-x 6 user user 4096 Nov 28 23:03 wp-content
-rwxr-xr-x 1 user user 3494 Nov 27 17:32 wp-config.php
drwxr-xr-x 2 user user 4096 Nov 27 17:29 cgi-bin
-rwxr-xr-x 1 user user 3173 Oct 6 04:31 wp-config-sample.php
drwxr-xr-x 7 user user 4096 Jul 29 2010 wp-admin
drwxr-xr-x 7 user user 4096 Jul 29 2010 wp-includes
-rwxr-xr-x 1 user user 40284 Jul 25 2010 wp-app.php
-rwxr-xr-x 1 user user 9122 Jul 22 2010 readme.html
-rwxr-xr-x 1 user user 18695 Jul 21 2010 wp-signup.php
-rwxr-xr-x 1 user user 94184 Jul 14 2010 xmlrpc.php
-rwxr-xr-x 1 user user 26059 Jun 1 2010 wp-login.php
-rwxr-xr-x 1 user user 7774 May 25 2010 wp-mail.php
-rwxr-xr-x 1 user user 3926 May 6 2010 wp-comments-post.php
-rwxr-xr-x 1 user user 9177 May 2 2010 wp-settings.php
-rwxr-xr-x 1 user user 240 Apr 19 2010 wp-feed.php
-rwxr-xr-x 1 user user 4391 Apr 19 2010 wp-activate.php
-rwxr-xr-x 1 user user 2002 Mar 18 2010 wp-links-opml.php
-rwxr-xr-x 1 user user 1255 Mar 16 2010 wp-cron.php
-rwxr-xr-x 1 user user 2441 Feb 28 2010 wp-load.php
-rwxr-xr-x 1 user user 3702 Feb 24 2010 wp-trackback.php
-rwxr-xr-x 1 user user 487 Apr 20 2009 wp-pass.php
-rwxr-xr-x 1 user user 15410 Dec 6 2008 license.txt
-rwxr-xr-x 1 user user 220 Oct 14 2008 wp-atom.php
-rwxr-xr-x 1 user user 238 Oct 14 2008 wp-commentsrss2.php
-rwxr-xr-x 1 user user 218 Oct 14 2008 wp-rdf.php
-rwxr-xr-x 1 user user 220 Oct 14 2008 wp-rss2.php
-rwxr-xr-x 1 user user 218 Oct 14 2008 wp-rss.php
-rwxr-xr-x 1 user user 397 May 25 2008 index.php
-rwxr-xr-x 1 user user 274 May 25 2008 wp-blog-header.php
-rwxr-xr-x 1 user user 316 May 25 2008 wp-register.php

I also like to add in an awk command if I am just looking for the dates to make it easier to read.

# ll -rt |awk '{print $6, $7, $8, $9}'

May 25 2008 wp-register.php
May 25 2008 wp-blog-header.php
May 25 2008 index.php
Oct 14 2008 wp-rss.php
Oct 14 2008 wp-rss2.php
Oct 14 2008 wp-rdf.php
Oct 14 2008 wp-commentsrss2.php
Oct 14 2008 wp-atom.php
Dec 6 2008 license.txt
Apr 20 2009 wp-pass.php
Feb 24 2010 wp-trackback.php
Feb 28 2010 wp-load.php
Mar 16 2010 wp-cron.php
Mar 18 2010 wp-links-opml.php
Apr 19 2010 wp-activate.php
Apr 19 2010 wp-feed.php
May 2 2010 wp-settings.php
May 6 2010 wp-comments-post.php
May 25 2010 wp-mail.php
Jun 1 2010 wp-login.php
Jul 14 2010 xmlrpc.php
Jul 21 2010 wp-signup.php
Jul 22 2010 readme.html
Jul 25 2010 wp-app.php
Jul 29 2010 wp-includes
Jul 29 2010 wp-admin
Oct 6 04:31 wp-config-sample.php
Nov 27 17:29 cgi-bin
Nov 27 17:32 wp-config.php
Nov 28 23:03 wp-content

If your machine does not have the ll command, you can achieve the same thing by using ls -lrt, or ls -lt.

Comments (1)





Download v1 of the RandomLinux.com Android app! Stay up to date on everything that's Linux right from your phone or tablet! Download below!