<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Linux Explore &#187; technology</title>
	<atom:link href="https://blog.linuxexplore.com/tag/technology/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.linuxexplore.com</link>
	<description>Exploring Linux</description>
	<lastBuildDate>Mon, 07 Apr 2014 00:30:50 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.38</generator>
	<item>
		<title>Chroot SFTP Users for Web Hosting Server.</title>
		<link>https://blog.linuxexplore.com/2013/02/20/chroot-sftp-users-for-web-hosting-server/</link>
		<comments>https://blog.linuxexplore.com/2013/02/20/chroot-sftp-users-for-web-hosting-server/#comments</comments>
		<pubDate>Tue, 19 Feb 2013 20:37:25 +0000</pubDate>
		<dc:creator><![CDATA[linuxexplore]]></dc:creator>
				<category><![CDATA[Linux Explore How to]]></category>
		<category><![CDATA[centos 6]]></category>
		<category><![CDATA[chroot]]></category>
		<category><![CDATA[chroot jail]]></category>
		<category><![CDATA[chroot sftp]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[internal-sftp]]></category>
		<category><![CDATA[kernel version]]></category>
		<category><![CDATA[Linux Security]]></category>
		<category><![CDATA[openssh]]></category>
		<category><![CDATA[openssh-server]]></category>
		<category><![CDATA[openssh-server-5.3]]></category>
		<category><![CDATA[public_html]]></category>
		<category><![CDATA[restorecon]]></category>
		<category><![CDATA[selinux chroot]]></category>
		<category><![CDATA[setsebool]]></category>
		<category><![CDATA[SFTP]]></category>
		<category><![CDATA[SFTP CentOS]]></category>
		<category><![CDATA[sftp chroot]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ssh public key]]></category>
		<category><![CDATA[SSH server]]></category>
		<category><![CDATA[sshd_config]]></category>
		<category><![CDATA[ssh_chroot_rw_homedirs]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[unix operating systems]]></category>
		<category><![CDATA[web hosting]]></category>

		<guid isPermaLink="false">http://linuxexplore.com/?p=717</guid>
		<description><![CDATA[A chroot on Unix operating systems is an operation that changes the apparent root directory for the current running process and its children. A program that is run in such a modified environment cannot name (and therefore normally not access) files outside the designated directory tree. The term &#8220;chroot&#8221; may refer to the chroot(2) system&#8230;]]></description>
				<content:encoded><![CDATA[<p>A <b>chroot</b> on Unix operating systems is an operation that changes the apparent root directory for the current running process and its children. A program that is run in such a modified environment cannot name (and therefore normally not access) files outside the designated directory tree. The term &#8220;chroot&#8221; may refer to the <tt>chroot(2)</tt> system call or the <tt>chroot(8)</tt> wrapper program. The modified environment is called a &#8220;chroot jail&#8221;. From <a title="Chroot" href="http://en.wikipedia.org/wiki/Chroot" target="_blank">Wikipedia</a>.</p>
<p>Why it is required? If you want to set up your Linux box as a web hosting server for its users, you may need to give SFTP access. But they can get access to whole system Linux tree, just for reading but still very unsecure. So it is mandatory to lock them in their home directory.</p>
<p>There are many other applications, it&#8217;s just a common example, so lets start its configuration.</p>
<h2>Linux Box Detail:</h2>
<p>Its mine Linux Box, your Linux system may vary. Only thing to take care is the openssh-server version, because openssh-server-5.3p1 support SFTP chroot. Older version supports but its tricky, please let me k now if you want to know that too.</p>
<p lang="en-IN"><strong>Operating System:</strong> CentOS 6.3/x86_64</p>
<p lang="en-IN"><strong>Kernel Version:</strong> 2.6.32-279.19.1.el6/x86_64</p>
<p lang="en-IN"><strong>Openssh Server Version:</strong> openssh-server-5.3p1-81.el6_3/x86_64</p>
<pre><a href="http://linuxexplore.files.wordpress.com/2013/02/chroot-ori12.png"><img class="aligncenter size-large wp-image-728" alt="chroot-ori1" src="http://linuxexplore.files.wordpress.com/2013/02/chroot-ori12.png?w=610" width="610" height="328" /></a></pre>
<h2>sshd Server Configuration:</h2>
<p>Add the following tail output to your Linux box&#8217;s SSH</p>
<p>server configuration file /etc/ssh/sshd_config.</p>
<pre>[rahulpanwar@myhost ~]# tail -6 /etc/ssh/sshd_config
#Subsystem sftp /usr/libexec/openssh/sftp-server
Subsystem sftp internal-sftp
Match Group www-hosting
ChrootDirectory %h
ForceCommand internal-sftp
AllowTcpForwarding no</pre>
<p lang="en-IN">Then restart sshd service to enable this configuration.</p>
<pre>[rahulpanwar@myhost ~]# sudo /etc/init.d/sshd restart</pre>
<h2>Create Chroot Users:</h2>
<pre>[rahulpanwar@myhost ~]# sudo mkdir /etc/skel/public_html
[rahulpanwar@myhost ~]# sudo groupadd www-hosting
[rahulpanwar@myhost ~]# sudo useradd -s /sbin/nologin -g www-hosting linuxexplore.com</pre>
<h2>Setting Permissions:</h2>
<pre>[rahulpanwar@myhost ~]# sudo chown root:www-hosting /home/linuxexplore.com
[rahulpanwar@myhost ~]# sudo chmod 755 /home/linuxexplore.com</pre>
<p lang="en-IN">That’s all now create multiple users for web hosting, and offer the secure sftp access to your customers.</p>
<h2>Shell Script to Create Web Hosting Users:</h2>
<pre>#!/bin/bash
HOSTING_DIR="/etc/skel/public_html"
CHROOT_GRP="www-hosting"
USR_NAME="$1"

[ ! -d "$HOSTING_DIR" ] &amp;&amp; mkdir -p $HOSTING_DIR
grep ^"${CHROOT_GRP}:" /etc/group || /usr/sbin/groupadd www-hosting
grep ^"${USR_NAMEP}:" /etc/passwd || /usr/sbin/useradd -s /sbin/nologin -g $CHROO_GRP $USR_NAME
chown root:$CHROOT_GRP /home/$USR_NAME
chmod 755 /home/$USR_NAME</pre>
<h2>Selinux Configuration:</h2>
<p lang="en-IN"><a title="Selinux disable temporarily or permanently" href="http://linuxexplore.com/2012/08/04/selinux-disable-temporarily-or-permanently/" target="_blank">Disable the selinux permanently</a> or configure it for read write user&#8217;s home directory in SSH chroot.</p>
<pre>[rahulpanwar@myhost ~]# sudo setsebool -P ssh_chroot_rw_homedirs on
<span style="color:#333333;"><span style="font-family:Monaco, Consolas, Andale Mono, DejaVu Sans Mono, monospace;"><span style="font-size:small;">[rahulpanwar@myhost ~]# sudo restorecon -R /home/$USERNAME</span></span></span></pre>
<h2>Troubleshooting</h2>
<p lang="en-IN">From: <span style="color:#0000ff;"><span style="text-decoration:underline;"><a href="https://wiki.archlinux.org/index.php/SFTP-chroot">https://wiki.archlinux.org/index.php/SFTP-chroot</a></span></span></p>
<pre>sshd[3505]: fatal: bad ownership or modes for chroot directory "/home/linuxexplore.com"</pre>
<p>It&#8217;s ChrootDirectory ownership problem, sshd will reject sftp connections to accounts that are set to chroot into any directory that has ownership/permissions that sshd doesn&#8217;t consider secure. sshd&#8217;s apparently strict ownership/permissions requirements dictate that every directory in the chroot path must be owned by root and only writable for the owner. So, for example, if the chroot environment is in a user&#8217;s home directory both /home and /home/username must be owned by root and have permissions like 755 or 750 ( group ownership should allow user to access ).</p>
<p>If you are using sftp with public key check the following link:</p>
<p><a href="http://www.centos.org/modules/newbb/viewtopic.php?topic_id=37903&amp;forum=59">http://www.centos.org/modules/newbb/viewtopic.php?topic_id=37903&amp;forum=59</a></p>
<p>If chroot environment is in user&#8217;s home directory, make sure user have access to its home directory, or user would not be able to access its publickey, produce the error given in above <a title="CentOS 6" href="http://centos.org" target="_blank">CentOS</a> forum link.</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.linuxexplore.com/2013/02/20/chroot-sftp-users-for-web-hosting-server/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to Install LibreOffice 4.0.0 on CentOS 6/RHEL 6.3</title>
		<link>https://blog.linuxexplore.com/2013/02/09/how-to-install-libreoffice4-0-0-on-centos-6rhel-6-3/</link>
		<comments>https://blog.linuxexplore.com/2013/02/09/how-to-install-libreoffice4-0-0-on-centos-6rhel-6-3/#comments</comments>
		<pubDate>Fri, 08 Feb 2013 21:05:45 +0000</pubDate>
		<dc:creator><![CDATA[linuxexplore]]></dc:creator>
				<category><![CDATA[Linux Explore How to]]></category>
		<category><![CDATA[document foundation]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[Install libreoffice4.0]]></category>
		<category><![CDATA[Libreoffice]]></category>
		<category><![CDATA[libreoffice 4]]></category>
		<category><![CDATA[libreoffice 4.0]]></category>
		<category><![CDATA[libreoffice 4.0.0]]></category>
		<category><![CDATA[LibreOffice CentOS 6]]></category>
		<category><![CDATA[LibreOffice installation]]></category>
		<category><![CDATA[LibreOffice RHEL 6]]></category>
		<category><![CDATA[libreoffice4]]></category>
		<category><![CDATA[Linux Howto]]></category>
		<category><![CDATA[Openoffice]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://linuxexplore.com/?p=697</guid>
		<description><![CDATA[LibreOffice 4 is launched and I was very exited to install it on my CentOS 6. It was really a good experience to install and use it. I am very happy to see that its performance is enhanced a lot. Documents are opening very fast than the earlier versions. I would like to share its&#8230;]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.libreoffice.org" target="_blank">LibreOffice 4</a> is launched and I was very exited to install it on my <a href="http://www.centos.org/" target="_blank">CentOS 6</a>. It was really a good experience to install and use it. I am very happy to see that its performance is enhanced a lot. Documents are opening very fast than the earlier versions. I would like to share its installation procedure here for CentOS 6.</p>
<p><a href="http://linuxexplore.files.wordpress.com/2013/02/libreoffice4.png"><img class="aligncenter size-large wp-image-700" alt="LibreOffice4" src="http://linuxexplore.files.wordpress.com/2013/02/libreoffice4.png?w=610" width="610" height="342" /></a></p>
<h2>Preparation of installation of LibreOffice 4.0.0:</h2>
<p>First of all download the newer version of <a title="LibreOffice 4.0.0 Stable Download" href="http://download.documentfoundation.org/libreoffice/stable/4.0.0/rpm/x86/LibreOffice_4.0.0_Linux_x86_rpm.tar.gz" target="_blank">LibreOffice 4.0.0</a> using wget command as follows.</p>
<pre>wget http://download.documentfoundation.org/libreoffice/stable/4.0.0/rpm/x86/LibreOffice_4.0.0_Linux_x86_rpm.tar.gz</pre>
<p>This tar file contains RPMs of LibreOffice 4.0.0 package. Extract this tar file to some location, I like /opt.</p>
<pre>tar -xf Libreoffice_4.0.0_Linux_x86_rpm.tar.gz -C /opt</pre>
<h2>Uninstall Previous version of LibreOffice Package:</h2>
<p>Previously existing installation of LibreOffice package must be removed before proceeding to installation of newer version. You can use <a title="Yum A Package Management Tool" href="http://linuxexplore.com/2010/10/03/yum-a-package-management-tool/" target="_blank">yum erase command</a> to remove old LibreOffice package.</p>
<pre>yum erase libreoffice*</pre>
<p>You can use any method to uninstall earlier LibreOffice package but it must be uninstalled first. Check my earlier post <a title="Yum A Package Management Tool" href="http://linuxexplore.com/2010/10/03/yum-a-package-management-tool/" target="_blank">How to use yum for package management</a>.</p>
<h2>Installation of LibreOffice 4.0.0 RPMs:</h2>
<p>To install the RPM, you can use yum command again.</p>
<pre>cd /opt/LibreOffice_4.0.0.3_Linux_x86_rpm/RPMS/
yum localinstall *.rpm</pre>
<p>It will install all LibreOffice RPMs from RPMS directory.</p>
<h2>Finalizing the installation:</h2>
<p>The above command(s) does the first part of the installation process. To complete the process, you also need to install the desktop integration packages. To do this, change directory to the <code>desktop-integration</code> directory that is within the <code>RPMS</code> directory, by entering the following command at the command line of a terminal window:</p>
<pre><code>cd desktop-integration</code></pre>
<p>Now run the installation command again:</p>
<pre><code>yum localinstall libreoffice4.0-freedesktop-menus-4.0.0-103.noarch.rpm</code></pre>
<p><code><span style="font-family:Liberation Serif, serif;">The installation process is now completed, and you should have icons for all the LibreOffice.</span></code></p>
<p><a href="http://linuxexplore.files.wordpress.com/2013/02/screenshot-libreoffice.png"><img class="aligncenter size-large wp-image-701" alt="LibreOffice-Start" src="http://linuxexplore.files.wordpress.com/2013/02/screenshot-libreoffice.png?w=610" width="799" height="406" /></a></p>
<p style="text-align:center;"><a href="http://linuxexplore.files.wordpress.com/2013/02/screenshot-libreoffice-4-0.png"><img class="aligncenter  wp-image-702" alt="LibreOffice-about" src="http://linuxexplore.files.wordpress.com/2013/02/screenshot-libreoffice-4-0.png" width="307" height="241" /></a></p>
<p><code><span style="font-family:Liberation Serif, serif;">Now you are ready to enjoy the power of opensource. Try this version, you will feel proud to be an Open Source user or supporter. Thanks a lot to <a href="http://www.documentfoundation.org/" target="_blank">Document Foundation</a> for such a great product.</span></code></p>
<p><code><span style="font-family:Liberation Serif, serif;">If you like this please don't forget to share this with others, Thanks.</span></code></p>
]]></content:encoded>
			<wfw:commentRss>https://blog.linuxexplore.com/2013/02/09/how-to-install-libreoffice4-0-0-on-centos-6rhel-6-3/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Linux File System and Windows File System, Difference</title>
		<link>https://blog.linuxexplore.com/2012/10/01/linux-file-system-and-windows-file-system-difference/</link>
		<comments>https://blog.linuxexplore.com/2012/10/01/linux-file-system-and-windows-file-system-difference/#comments</comments>
		<pubDate>Sun, 30 Sep 2012 19:52:46 +0000</pubDate>
		<dc:creator><![CDATA[linuxexplore]]></dc:creator>
				<category><![CDATA[Linux Explore Tips & Tricks]]></category>
		<category><![CDATA[ext2]]></category>
		<category><![CDATA[ext3]]></category>
		<category><![CDATA[ext4]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux file systems]]></category>
		<category><![CDATA[Linux filesystem]]></category>
		<category><![CDATA[Linux partitions]]></category>
		<category><![CDATA[Linux VS Windows]]></category>
		<category><![CDATA[master boot record]]></category>
		<category><![CDATA[Nigel McFarlane]]></category>
		<category><![CDATA[NTFS]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Windows filesystem]]></category>
		<category><![CDATA[Windows partitions]]></category>

		<guid isPermaLink="false">http://linuxexplore.com/?p=648</guid>
		<description><![CDATA[Windows vs Linux Windows uses FAT and NTFS as file systems, while Linux uses a variety of file systems. Unlike Windows, Linux is bootable from a network drive. In contrast to Windows, everything is either a file or a process in Linux. Please see one of my earlier post What “Everything Is a File” Means on Linux.&#8230;]]></description>
				<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://linuxexplore.files.wordpress.com/2012/10/ubuntu-910-vs-windows-7.jpg"><img class="size-full wp-image-649 aligncenter" title="ubuntu-910-vs-windows-7" src="http://linuxexplore.files.wordpress.com/2012/10/ubuntu-910-vs-windows-7.jpg" alt="Linux vs Windows" width="640" height="390" /></a>Windows vs Linux</p>
<p>Windows uses FAT and NTFS as file systems, while Linux uses a variety of file systems.</p>
<p>Unlike Windows, Linux is bootable from a network drive.</p>
<p>In contrast to Windows, everything is either a file or a process in Linux. Please see one of my earlier post <a title="What “Everything Is a File” Means on Linux" href="http://linuxexplore.com/2012/07/28/intowire-what-everything-is-a-file-means-on-linux/" target="_blank">What “Everything Is a File” Means on Linux</a>.</p>
<p>Linux has two kinds of major partitions called data partitions and swap partitions. Because of the existence of swap partitions, you never run out of memory in Linux (like in windows).</p>
<p>In terms of recovery tools, only a limited number of tools can be used on Windows, while there is a large number of UNIX based recovery tools available for Linux file systems.</p>
<p><a href="http://linuxexplore.files.wordpress.com/2012/10/primary-extended-logical-linux-windows-file-system.png"><img class=" wp-image-650 aligncenter" title="primary extended logical Linux windows file system" src="http://linuxexplore.files.wordpress.com/2012/10/primary-extended-logical-linux-windows-file-system.png" alt="Linux Windows filesystem" width="362" height="349" /></a></p>
<p><strong> From the author </strong><strong>Nigel McFarlane:</strong></p>
<p>Both <strong>Windows</strong> and <strong>Linux</strong> organize disk-based files into a hierarchy of directories. Such directories are usually called &#8220;<strong>folders</strong>&#8221; when viewed in a GUI. One whole hierarchy is called a &#8220;<strong>file system</strong>&#8221; on both platforms. The architecture of Windows and Linux file systems is similar in some points, but diverges greatly when tools are considered. Here&#8217;s a quick comparison.</p>
<p>On hardware derived from <strong>Intel</strong> or <strong>IBM</strong> PCs, both <strong>Windows</strong> and <strong>Linux</strong> use the Master Block Record/ Master Boot Record (<strong>MBR</strong>). That is the bit of disk used to boot the operating system and to state whether the disk is partitioned or not. On both <strong>Windows</strong> and <strong>Linux</strong>, it is common to have at most one file system per partition. That is about the end of the similarity.</p>
<p>Each <strong>Windows</strong> file system gets a drive letter, like &#8220;C:&#8221;. On <strong>Linux</strong>, each file system gets a device, like /dev/hda1 (&#8220;hard disk A part 1&#8243;), which is represented as a file. Such a file is a device file (since a disk is a device), hence the &#8220;dev&#8221; part of the path name. Also, the device file is not an ordinary text file, it is a &#8220;<strong>special file</strong>.&#8221; Since disks are block devices (unlike a serial mouse), such a file is fully described as a &#8220;<strong>block special device file</strong>.&#8221; The numbered part of the path can be a little weird to get right; it&#8217;s best to be guided by documentation there or extract the right name from a report.</p>
<p>On <strong>Windows</strong>, file systems can be <strong>FAT16</strong>, <strong>FAT32</strong> or <strong>NTFS</strong>, to name a few. Recall <strong>FAT16</strong> is the ancient standard responsible for <strong>Windows</strong> file names with the &#8220;<strong>8.3</strong>&#8221; file name length restriction. On <strong>Linux</strong>, filesystems can be &#8220;<strong>minix</strong>,&#8221; &#8220;<strong>ext</strong>,&#8221; or &#8220;<strong>ext2</strong>,&#8221; to name a few. Also, &#8220;<strong>minix</strong>&#8221; is an example of the ancient standard responsible for <strong>UNIX</strong> file names once being limited to 14 characters. Linux also has &#8220;<strong>msdos</strong>&#8221; and &#8220;<strong>vfat</strong>&#8221; file systems for compatibility with <strong>Windows</strong> and <strong>DOS</strong>, plus more.</p>
<p>Windows uses <strong>FORMAT.EXE</strong> to format a disk. Linux uses &#8220;<strong>mkfs</strong>&#8221; (&#8220;make file system&#8221;) in various specialist forms.</p>
<p>Each Windows file system has a File Allocation Table (<strong>FAT</strong>, <strong>VFAT</strong>, or similar) that states which disk blocks hold the topmost directory. On <strong>Linux</strong>, the equivalent on most filesystems is the <strong>superblock</strong>. A <strong>Linux</strong> file system has multiple copies of the <strong>superblock</strong> physically saved on the disk. This provides redundancy in case of a partial disk corruption. The <strong>superblock</strong> is just about always in memory on <strong>Linux</strong>; that is not the case for ancient <strong>DOS</strong>-like file systems. There are no special restrictions on files placed in the topmost directory on <strong>Linux</strong>, either.</p>
<p>On <strong>Windows</strong>, there is one drive letter per mounted file system: for example, C: for C: and D: for D:. On <strong>Linux</strong> there are no drive letters, so one file system is mounted on &#8220;/&#8221; and all other file systems are mounted on subdirectories of &#8220;/.&#8221; This arrangement is like the little-used <strong>MS-DOS</strong> command <strong>SUBST</strong>, or the <strong>NET USE</strong> command that supports <strong>Novell</strong>&#8216;s <strong>NetWare</strong>. The equivalent <strong>Linux</strong> command is &#8220;<strong>mount</strong>.&#8221;</p>
<p>You can see all this at work on <strong>Linux</strong>, but for some of it you need to be logged in as <strong>root</strong>. Type &#8220;<strong>cat /etc/fstab</strong>&#8221; to see all the mountable devices, including floppy disks and CD players. Type &#8220;<strong>df</strong>&#8221; to see the devices currently mounted, and their free space. In the usual case you can even see the <strong>superblock</strong>: try &#8220;<strong>/sbin/dumpe2fs /dev/hda1</strong>&#8221; where <strong>hda1</strong> comes from the output of &#8220;<strong>df</strong>.&#8221; The name &#8220;<strong>dumpe2fs</strong>&#8221; is a casualty of history; it replaces the older &#8220;<strong>dumpfs</strong>.&#8221; The information produced is really just for diagnostic purposes.</p>
<p>Mostly file systems work for you silently. If you want to dig into Linux further, then there are plenty of tools that can be used as inspection points.</p>
<p><strong>About the author</strong><br />
<strong>Nigel McFarlane</strong> is an open source software analyst and technologist with a broad background in technology and software engineering. He has an extensive programming background and degrees in computer science and physics. His latest book is &#8220;<strong>Rapid Application Development with Mozilla</strong>&#8221; from Prentice Hall PTR.</p>
<p><strong>Source:</strong><br />
<a href="http://searchopensource.techtarget.com/tip/1,289483,sid39_gci990200,00.html" rel="nofollow" target="_blank">http://searchopensource.techtarget.c&#8230;990200,00.html</a></p>
]]></content:encoded>
			<wfw:commentRss>https://blog.linuxexplore.com/2012/10/01/linux-file-system-and-windows-file-system-difference/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Ubuntu 12.10 Beta 2 Release</title>
		<link>https://blog.linuxexplore.com/2012/09/29/ubuntu-12-10-beta-2-release/</link>
		<comments>https://blog.linuxexplore.com/2012/09/29/ubuntu-12-10-beta-2-release/#comments</comments>
		<pubDate>Fri, 28 Sep 2012 19:06:28 +0000</pubDate>
		<dc:creator><![CDATA[linuxexplore]]></dc:creator>
				<category><![CDATA[Linux Distro]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[cloud images]]></category>
		<category><![CDATA[Distrowatch]]></category>
		<category><![CDATA[Download ubuntu]]></category>
		<category><![CDATA[Edubuntu DVD]]></category>
		<category><![CDATA[enterprise-it]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Lubuntu]]></category>
		<category><![CDATA[Quantal Quetzal]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Software download]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ubuntu 12.10]]></category>
		<category><![CDATA[Ubuntu Core Products]]></category>
		<category><![CDATA[Ubuntu Desktop]]></category>
		<category><![CDATA[Ubuntu Netboot]]></category>
		<category><![CDATA[Ubuntu news]]></category>
		<category><![CDATA[Ubuntu Server]]></category>
		<category><![CDATA[Ubuntu Studio]]></category>
		<category><![CDATA[xubuntu]]></category>

		<guid isPermaLink="false">http://linuxexplore.com/?p=637</guid>
		<description><![CDATA[Ubuntu released the second and final beta of Ubuntu 12.10 version, code name &#8220;Quantal Quetzal&#8221;, just two days before. It is a development release, the Ubuntu developers are moving quickly to bring an absolute latest and greatest software. From the release announcement &#8220;The Ubuntu team is pleased to announce the final beta release of Ubuntu&#8230;]]></description>
				<content:encoded><![CDATA[<p>Ubuntu released the second and final beta of <a href="https://wiki.ubuntu.com/QuantalQuetzal/TechnicalOverview/Beta2" target="_blank">Ubuntu</a> 12.10 version, code name &#8220;Quantal Quetzal&#8221;, just two days before. It is a development release, the Ubuntu developers are moving quickly to bring an absolute latest and greatest software. From the <a href="https://lists.ubuntu.com/archives/ubuntu-announce/2012-September/000163.html" target="_blank">release announcement</a> &#8220;The Ubuntu team is pleased to announce the final beta release of Ubuntu 12.10 Desktop, Server, Cloud, and Core products. Some of the new features available since beta 1 are: Quantal beta 2 includes the 3.5.0-15.23 Ubuntu Linux kernel which is based on the 3.5.4 upstream Linux kernel; Unity has been updated to version 6.6 which contains the new default web application in the launcher, a new shopping lens, improvements to the dash and multiple bug fixes; GNOME has been updated to 3.5.92 for most components (some to 3.6.0); accessibility is turned on by default.</p>
<p><a href="http://linuxexplore.files.wordpress.com/2012/09/ubuntu.png"><img class="wp-image-638 aligncenter" title="ubuntu" src="http://linuxexplore.files.wordpress.com/2012/09/ubuntu.png" alt="" width="640" height="512" /></a></p>
<h2 id="Download_the_Beta_2">Download the Beta 2</h2>
<p>Beta 2 images can be downloaded from a location near you.<br />
<strong>Note:</strong> The Ubuntu Desktop images are now bigger than a standard CD, and you should use a USB or DVD for installation. Some image consolidation has occurred as well.</p>
<p>You can download Beta 2 ISOs from:</p>
<p><a href="http://releases.ubuntu.com/12.10/">http://releases.ubuntu.com/12.10/</a> (Ubuntu Desktop and Server)<br />
<a href="http://cloud-images.ubuntu.com/releases/12.10/beta-2/">http://cloud-images.ubuntu.com/releases/12.10/beta-2/</a> (Ubuntu Cloud Server)<br />
<a href="http://cdimage.ubuntu.com/netboot/12.10/">http://cdimage.ubuntu.com/netboot/12.10/</a> (Ubuntu Netboot)<br />
<a href="http://cdimage.ubuntu.com/ubuntu-core/releases/12.10/beta-2/">http://cdimage.ubuntu.com/ubuntu-core/releases/12.10/beta-2/</a> (Ubuntu Core)<br />
<a href="http://cdimage.ubuntu.com/kubuntu/releases/12.10/beta-2/">http://cdimage.ubuntu.com/kubuntu/releases/12.10/beta-2/</a> (Kubuntu)<br />
<a href="http://cdimage.ubuntu.com/kubuntu-active/releases/12.10/beta-2/">http://cdimage.ubuntu.com/kubuntu-active/releases/12.10/beta-2/</a> (Kubuntu Active)<br />
<a href="http://cdimage.ubuntu.com/lubuntu/releases/12.10/beta-2/">http://cdimage.ubuntu.com/lubuntu/releases/12.10/beta-2/</a> (Lubuntu)<br />
<a href="http://cdimage.ubuntu.com/edubuntu/releases/12.10/beta-2/">http://cdimage.ubuntu.com/edubuntu/releases/12.10/beta-2/</a> (Edubuntu DVD)<br />
<a href="http://cdimage.ubuntu.com/ubuntustudio/releases/12.10/beta-2/">http://cdimage.ubuntu.com/ubuntustudio/releases/12.10/beta-2/</a> (Ubuntu Studio)<br />
<a href="http://cdimage.ubuntu.com/xubuntu/releases/12.10/beta-2/">http://cdimage.ubuntu.com/xubuntu/releases/12.10/beta-2/</a> (Xubuntu)</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.linuxexplore.com/2012/09/29/ubuntu-12-10-beta-2-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Helpful Commands in Linux</title>
		<link>https://blog.linuxexplore.com/2012/08/24/more-helpful-commands-in-linux/</link>
		<comments>https://blog.linuxexplore.com/2012/08/24/more-helpful-commands-in-linux/#comments</comments>
		<pubDate>Thu, 23 Aug 2012 19:26:36 +0000</pubDate>
		<dc:creator><![CDATA[linuxexplore]]></dc:creator>
				<category><![CDATA[Linux Explore Tips & Tricks]]></category>
		<category><![CDATA[awk]]></category>
		<category><![CDATA[backdrop image]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[cat]]></category>
		<category><![CDATA[command line tools]]></category>
		<category><![CDATA[cut]]></category>
		<category><![CDATA[echo]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[enterprise-it]]></category>
		<category><![CDATA[inkscape]]></category>
		<category><![CDATA[intowire]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[KStars]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Administrator]]></category>
		<category><![CDATA[Linux hacks]]></category>
		<category><![CDATA[Linux Howto]]></category>
		<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[Linux Tricks]]></category>
		<category><![CDATA[macros]]></category>
		<category><![CDATA[Operating system]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[sed]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[SVG file]]></category>
		<category><![CDATA[tar]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://linuxexplore.wordpress.com/?p=609</guid>
		<description><![CDATA[A backdrop of stars Difficulty: Easy Application: KStars You may already have played with KStars, but how about creating a KStars backdrop image that&#8217;s updated every time you start up? KStars can be run with the &#8211;dump switch, which dumps out an image from your startup settings, but doesn&#8217;t load the GUI at all. You&#8230;]]></description>
				<content:encoded><![CDATA[<h2>A backdrop of stars</h2>
<ul>
<li>Difficulty: Easy</li>
<li>Application: KStars</li>
</ul>
<p>You may already have played with KStars, but how about creating a KStars backdrop image that&#8217;s updated every time you start up?</p>
<p>KStars can be run with the &#8211;dump switch, which dumps out an image from your startup settings, but doesn&#8217;t load the GUI at all. You can create a script to run this and generate a desktop image, which will change every day (or you can just use this method to generate images).</p>
<p>Run KStars like this:</p>
<pre>kstars --dump --width 1024 --height 768 --filename = ~/kstarsback.png</pre>
<p>You can add this to a script in your ~/.kde/Autostart folder to be run at startup. Find the file in Konqueror, drag it to the desktop and select &#8216;Set as wallpaper&#8217; to use it as a randomly generated backdrop.</p>
<h2>Open an SVG directly</h2>
<ul>
<li>Difficulty: Easy</li>
<li>Application: Inkscape</li>
</ul>
<p>You can run Inkscape from a shell and immediately edit a graphic directly from a URL. Just type:</p>
<pre>inkscape <a href="http://www.somehost.com/graphic.svg" rel="nofollow">http://www.somehost.com/graphic.svg</a></pre>
<p>Remember to save it as something else though!</p>
<h2>Editing without an editor</h2>
<ul>
<li>Difficulty: Intermediate</li>
<li>Application: Various</li>
</ul>
<p>Very long files are often hard to manipulate with a text editor. If you need to do it regularly, chances are you&#8217;ll find it much faster to use some handy command-line tools instead, like in the following examples.</p>
<p>To print columns eg 1 and 3 from a file file1 into file2, we can use awk:</p>
<pre>awk '{print $1, $3}' file1 &gt; file2</pre>
<p>To output only characters from column 8 to column 15 of file1, we can use cut:</p>
<pre>cut -c 8-15 file1 &gt; file2</pre>
<p>To replace the word word1 with the word word2 in the file file1, we can use the sed command:</p>
<pre>sed "s/word1/word2/g" file1 &gt; file2</pre>
<p>This is often a quicker way to get results than even opening a text editor.</p>
<h2>Backup selected files only</h2>
<ul>
<li>Difficulty: Intermediate</li>
<li>Application: tar</li>
</ul>
<p>Want to use tar to backup only certain files in a directory? Then you&#8217;ll want to use the -T flag as follows. First, create a file with the file you want to backup:</p>
<pre>cat &gt;&gt; /etc/backup.conf
# /etc/passwd
# /etc/shadow
# /etc/yp.conf
# /etc/sysctl.conf
EOF</pre>
<p>Then run tar with the -T flag pointing to the file just created:</p>
<pre>tar -cjf bck-etc-`date +%Y-%m-%d`.tar.bz2 -T /etc/backup.conf</pre>
<p>Now you have your backup.</p>
<p><a href="http://www.intowire.com/iWiRE/blog/view/57463/more-helpful-commands-in-linux#.UDZyp9Pzxw4.wordpress">Read more&#8230;&#8230;</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.linuxexplore.com/2012/08/24/more-helpful-commands-in-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating a Counter-Strike Server on Linux</title>
		<link>https://blog.linuxexplore.com/2012/08/19/creating-a-counter-strike-server-on-linux/</link>
		<comments>https://blog.linuxexplore.com/2012/08/19/creating-a-counter-strike-server-on-linux/#comments</comments>
		<pubDate>Sun, 19 Aug 2012 17:31:02 +0000</pubDate>
		<dc:creator><![CDATA[linuxexplore]]></dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Counter Strike]]></category>
		<category><![CDATA[Counter Strike Server]]></category>
		<category><![CDATA[cstrike planet]]></category>
		<category><![CDATA[download free games]]></category>
		<category><![CDATA[free download games]]></category>
		<category><![CDATA[free game]]></category>
		<category><![CDATA[gaming]]></category>
		<category><![CDATA[hldsupdatetool]]></category>
		<category><![CDATA[intowire]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux games]]></category>
		<category><![CDATA[Linux hacks]]></category>
		<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[Linux Tricks]]></category>
		<category><![CDATA[Opensource games]]></category>
		<category><![CDATA[play free games]]></category>
		<category><![CDATA[srcds]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://linuxexplore.wordpress.com/?p=595</guid>
		<description><![CDATA[From www.cstrike-planet.com: On this page we will explain how to install Counter-Strike and Counter-Strike: Source. We assume you have some Linux knowledge. We will start with Counter-Strike: Source. Installing Counter-Strike: Source (SRCDS) First, lets create a directory where we will run the hldsupdatetool, run the following command: code: mkdir srcds Now we switch to the&#8230;]]></description>
				<content:encoded><![CDATA[<p>From <span style="color:gray;"><a href="http://www.cstrike-planet.com" target="_blank" rel="nofollow">www.cstrike-planet.com:</a></span></p>
<p>On this page we will explain how to install Counter-Strike and Counter-Strike: Source. We assume you have <em>some</em> Linux knowledge. We will start with Counter-Strike: Source.</p>
<h2><a href="http://www.cstrike-planet.com/tutorial/1-Linux-Install-CS-Source/5"><img class="alignnone wp-image-602 size-full" src="http://linuxexplore.files.wordpress.com/2012/08/cs_source_wallpaper_steam_css.jpg" alt="Counter Strike Source" width="1024" height="768" /></a>Installing Counter-Strike: Source (SRCDS)</h2>
<p>First, lets create a directory where we will run the hldsupdatetool, run the following command:</p>
<div style="margin:10px 20px;">
<div style="margin-bottom:2px;">code:</div>
<pre><span style="color:gray;">mkdir srcds</span></pre>
</div>
<p>Now we switch to the <span style="color:gray;">srcds</span>we just created and download the hldsupdatetool.bin</p>
<div style="margin:10px 20px;">
<div style="margin-bottom:2px;">code:</div>
<pre><span style="color:gray;">cd srcds wget <a href="http://www.cstrike-planet.com/dls/hldsupdatetool.bin" rel="nofollow">http://www.cstrike-planet.com/dls/hldsupdatetool.bin</a></span></pre>
</div>
<p>If all goes well you should now have the hldsupdatetool.bin in the srcds directory. Now we change the permission of hldsupdatetool.bin so we can execute it and extract the contents from hldsupdatetool.bin</p>
<div style="margin:10px 20px;">
<div style="margin-bottom:2px;">code:</div>
<pre><span style="color:gray;">chmod +x hldsupdatetool.bin ./hldsupdatetool.bin</span></pre>
</div>
<table>
<tbody>
<tr>
<td><img style="border:0;" src="http://images.cstrike-planet.com/icon/caution.gif" alt="" width="15" height="15" /> Note: after you run <span style="color:gray;">./hldsupdatetool.bin</span> you will get a prompt to agree with the terms and conditions, simply type <span style="color:gray;">yes</span> and hit enter.</td>
</tr>
</tbody>
</table>
<p>If all goes well, you should now have two files in the srcds directory, the hldsupdatetool.bin which we downloaded earlier, and a <span style="color:gray;">steam</span> file the hldsupdatetool generated, this is the file we will use to install Counter-Strike: Source.</p>
<table>
<tbody>
<tr>
<td><img style="border:0;" src="http://images.cstrike-planet.com/icon/caution.gif" alt="" width="15" height="15" />Note: if you receive a &#8216;uncompress: command not found&#8217; message it means your server does not have uncompress installed. You have two options to easily work around this, try the following while logged-in as root:</p>
<div style="margin:10px 20px;">
<div style="margin-bottom:2px;">code:</div>
<pre><span style="color:gray;">ln -s /bin/gunzip /bin/uncompress</span></pre>
</div>
<p>Then try to run <span style="color:gray;">./hldsupdatetool.bin</span> again. If that does not work, or you do not have root privileges you can download the binary file we have available:</p>
<div style="margin:10px 20px;">
<div style="margin-bottom:2px;">code:</div>
<pre><span style="color:gray;">wget <a href="http://www.cstrike-planet.com/dls/steam" rel="nofollow">http://www.cstrike-planet.com/dls/steam</a></span></pre>
</div>
</td>
</tr>
</tbody>
</table>
<p>Now that you have the steam binary file, Type the following command to begin installing CS Source</p>
<p><a title="Counter Strike Source" href="http://www.cstrike-planet.com/tutorial/1-Linux-Install-CS-Source/5" target="_blank">Read full story</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.linuxexplore.com/2012/08/19/creating-a-counter-strike-server-on-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Look what Stella brought to CentOS 6.3, Desktop OS based on Centos</title>
		<link>https://blog.linuxexplore.com/2012/08/08/look-what-stella-brought-to-centos-6-3-desktop-os-based-on-centos/</link>
		<comments>https://blog.linuxexplore.com/2012/08/08/look-what-stella-brought-to-centos-6-3-desktop-os-based-on-centos/#comments</comments>
		<pubDate>Wed, 08 Aug 2012 16:40:54 +0000</pubDate>
		<dc:creator><![CDATA[linuxexplore]]></dc:creator>
				<category><![CDATA[Linux Explore How to]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[CentOS 6.3]]></category>
		<category><![CDATA[CentOS update]]></category>
		<category><![CDATA[core enterprise]]></category>
		<category><![CDATA[default media player]]></category>
		<category><![CDATA[Desktop OS]]></category>
		<category><![CDATA[enterprise-it]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[intowire]]></category>
		<category><![CDATA[Libreoffice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Administrator]]></category>
		<category><![CDATA[Linux games]]></category>
		<category><![CDATA[Linux hacks]]></category>
		<category><![CDATA[Linux Howto]]></category>
		<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[Linux Tricks]]></category>
		<category><![CDATA[Mandriva]]></category>
		<category><![CDATA[Media Player]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Openoffice]]></category>
		<category><![CDATA[Operating system]]></category>
		<category><![CDATA[Remote Desktop]]></category>
		<category><![CDATA[ROMP]]></category>
		<category><![CDATA[ROSA Media Player]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Stella]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[video file formats]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[VLC]]></category>
		<category><![CDATA[VLC player]]></category>

		<guid isPermaLink="false">http://linuxexplore.wordpress.com/?p=575</guid>
		<description><![CDATA[There is a new Linux distribution released almost every week, sometimes, even every day. The latest is one called Stella, and the first version is Stella 6.3. Stella is a desktop-focused remix of CentOS, and Stella 6.3 is based on CentOS 6.3. If you are familiar with CentOS, you know that out of the box,&#8230;]]></description>
				<content:encoded><![CDATA[<p>There is a new Linux distribution released almost every week, sometimes, even every day. The latest is one called Stella, and the first version is Stella 6.3. Stella is a desktop-focused remix of <a href="http://linuxbsdos.com/category/centos" rel="nofollow">CentOS</a>, and Stella 6.3 is based on CentOS 6.3.</p>
<p>If you are familiar with CentOS, you know that out of the box, it is not really designed as a desktop distribution. Stella changes all that, as it is primarily aimed at desktop users, while retaining the core enterprise features and capabilities of CentOS.</p>
<p>And you can see that just by looking at the package manager. The package categories tell you that everything you can find in CentOS is also available in Stella. Plus desktop applications that you will not find in any default installation of CentOS. For example, an application listed in the screen shot below, is <a href="http://www.linuxbsdos.com/2012/04/10/romp-media-player-with-built-in-desktop-recorder/" rel="nofollow">ROSA Media Player</a> (ROMP), the default media player in <a href="http://www.linuxbsdos.com/category/rosa-desktop/" rel="nofollow">ROSA Desktop</a>, a distribution based on <a href="http://linuxbsdos.com/category/mandriva" rel="nofollow">Mandriva</a> Linux.</p>
<p style="text-align:center;"><a href="http://www.intowire.com/iWiRE/blog/view/52955/look-what-stella-brought-to-centos-63-desktop-os-based-on-centos#.UCKUDqSEaAM.wordpress"><img src="http://linuxexplore.files.wordpress.com/2012/08/stelladesktop8-600x469.png" alt="" /></a></p>
<p>Because it is loaded with desktop applications and media codecs not available in CentOS, you can play most audio and video file formats out of the box. Here it shows a favorite online video playing in Firefox.</p>
<p style="text-align:center;"><a href="http://www.intowire.com/iWiRE/blog/view/52955/look-what-stella-brought-to-centos-63-desktop-os-based-on-centos#.UCKUDqSEaAM.wordpress"><img src="http://linuxexplore.files.wordpress.com/2012/08/stelladesktop7-600x450.png" alt="" /></a></p>
<p>The next few screen shots show what the desktop looks like and some of the applications accessible from the menu. This one shows installed Internet applications.</p>
<p style="text-align:center;"><a href="http://www.intowire.com/iWiRE/blog/view/52955/look-what-stella-brought-to-centos-63-desktop-os-based-on-centos#.UCKUDqSEaAM.wordpress"><img src="http://linuxexplore.files.wordpress.com/2012/08/stelladesktop1-600x450.png" alt="" /></a></p>
<p>Installed Office applications.</p>
<p style="text-align:center;"><a href="http://www.intowire.com/iWiRE/blog/view/52955/look-what-stella-brought-to-centos-63-desktop-os-based-on-centos#.UCKUDqSEaAM.wordpress"><img src="http://linuxexplore.files.wordpress.com/2012/08/stelladesktop2-600x450.png" alt="" /></a></p>
<p>Installed multimedia applications.</p>
<p style="text-align:center;"><a href="http://www.intowire.com/iWiRE/blog/view/52955/look-what-stella-brought-to-centos-63-desktop-os-based-on-centos#.UCKUDqSEaAM.wordpress"><img src="http://linuxexplore.files.wordpress.com/2012/08/stelladesktop3-600x450.png" alt="" /></a></p>
<p>Updates manager.</p>
<p style="text-align:center;"><a href="http://www.intowire.com/iWiRE/blog/view/52955/look-what-stella-brought-to-centos-63-desktop-os-based-on-centos#.UCKUDqSEaAM.wordpress"><img src="http://linuxexplore.files.wordpress.com/2012/08/stelladesktop4-600x450.png" alt="" /></a></p>
<p><a href="http://www.intowire.com/iWiRE/blog/view/52955/look-what-stella-brought-to-centos-63-desktop-os-based-on-centos#.UCKUDqSEaAM.wordpress">Read full story</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.linuxexplore.com/2012/08/08/look-what-stella-brought-to-centos-6-3-desktop-os-based-on-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Selinux disable temporarily or permanently</title>
		<link>https://blog.linuxexplore.com/2012/08/04/selinux-disable-temporarily-or-permanently/</link>
		<comments>https://blog.linuxexplore.com/2012/08/04/selinux-disable-temporarily-or-permanently/#comments</comments>
		<pubDate>Sat, 04 Aug 2012 08:06:12 +0000</pubDate>
		<dc:creator><![CDATA[linuxexplore]]></dc:creator>
				<category><![CDATA[Linux Explore Tips & Tricks]]></category>
		<category><![CDATA[/etc/selinux/config]]></category>
		<category><![CDATA[/selinux/enforce]]></category>
		<category><![CDATA[command cat]]></category>
		<category><![CDATA[disable selinux]]></category>
		<category><![CDATA[good security]]></category>
		<category><![CDATA[intowire]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Administrator]]></category>
		<category><![CDATA[Linux hacks]]></category>
		<category><![CDATA[Linux Howto]]></category>
		<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[selinux]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://linuxexplore.wordpress.com/?p=539</guid>
		<description><![CDATA[Sometime when you run an application in Linux, it starts and suddenly stops or just doesn&#8217;t work. Then you find that its selinux which is stopping you to run your application. Selinux is good security feature of Linux stop you to execute malicious applications. But it need to disable when you need to run your&#8230;]]></description>
				<content:encoded><![CDATA[<p>Sometime when you run an application in Linux, it starts and suddenly stops or just doesn&#8217;t work. Then you find that its <strong><em>selinux</em></strong> which is stopping you to run your application.</p>
<p><strong><em>Selinux</em></strong> is good security feature of Linux stop you to execute malicious applications. But it need to disable when you need to run your self developed application. You can check the selinux status by using following command:</p>
<blockquote><p># cat /selinux/enforce</p>
<p>1</p></blockquote>
<p>If it will show 1, that means selinux enforcing is enabled.</p>
<p>You can disable that selinux temporarily or permanently. Use following methods to disable it.</p>
<p><strong>Disable Temporarily:</strong></p>
<p>To disable selinux temporarily set the 0 to <em><strong>/selinux/enforce</strong></em> file.</p>
<blockquote><p># echo 0 &gt; /selinux/enforce</p></blockquote>
<p><a href="http://www.intowire.com/iWiRE/blog/view/49248/selinux-disable-temporarily-or-permanently#.UBzW4Tj3vpQ.wordpress">Read more</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.linuxexplore.com/2012/08/04/selinux-disable-temporarily-or-permanently/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mobile Security with Android</title>
		<link>https://blog.linuxexplore.com/2012/07/30/mobile-security-with-android/</link>
		<comments>https://blog.linuxexplore.com/2012/07/30/mobile-security-with-android/#comments</comments>
		<pubDate>Mon, 30 Jul 2012 16:08:48 +0000</pubDate>
		<dc:creator><![CDATA[linuxexplore]]></dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android Security]]></category>
		<category><![CDATA[goog]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[intowire]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Samsung]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://linuxexplore.wordpress.com/?p=513</guid>
		<description><![CDATA[Hacking experts on Wednesday demonstrated ways to attack Android smartphones using methods they said work on virtually all such devices in use today, despite recent efforts by search engine giant Google (GOOG.O) to boost protection. Experts showed off their prowess at the Black Hat hacking conference in Las Vegas, where some 6,500 corporate and government&#8230;]]></description>
				<content:encoded><![CDATA[<p><a href="http://linuxexplore.files.wordpress.com/2012/07/3-29-androids.jpg"><img class="alignleft  wp-image-518" title="androids" src="http://linuxexplore.files.wordpress.com/2012/07/3-29-androids.jpg" alt="Android" width="356" height="222" /></a>Hacking experts on Wednesday demonstrated ways to attack Android smartphones using methods they said work on virtually all such devices in use today, despite recent efforts by search engine giant Google (GOOG.O) to boost protection. Experts showed off their prowess at the Black Hat hacking conference in Las Vegas, where some 6,500 corporate and government security technology workers gathered to learn about emerging threats to their networks. &#8220;Google is making progress, but the authors of malicious software are moving forward,&#8221; said Sean Schulte of Trustwave&#8217;s SpiderLabs. Google spokeswoman Gina Scigliano declined to comment on the security concerns or the new research. Accuvant researcher Charlie Miller demonstrated a method for delivering malicious code to Android phones using a new Android feature known as near field communications. &#8220;I can take over your phone,&#8221; Miller said. Near field communications allow users to share photos with friends, make payments or exchange other data by bringing Android phones within a few centimeters of similarly equipped devices such as another phone or a payment terminal. Miller said he figured out how to create a device the size of a postage stamp that could be stuck in an inconspicuous place such as near a cash register at a restaurant. When an Android user walks by, the phone would get infected, said Miller. He spent five years as a global network exploit analyst at the U.S. National Security Agency, where his tasks included breaking into foreign computer systems. &#8220;WILD WEST&#8221; Miller and another hacking expert, Georg Wicherski of CrowdStrike, have also infected an Android phone with a piece of malicious code that Wicherski unveiled in February.</p>
<p>That piece of software exploits a security flaw in the Android browser that was publicly disclosed by Google&#8217;s Chrome browser development team, according to Wicherski.</p>
<p>Google has fixed the flaw in Chrome, which is frequently updated, so that most users are now protected, he said.</p>
<p>But Wicherski said Android users are still vulnerable because carriers and device manufacturers have not pushed those fixes or patches out to users.</p>
<p>Marc Maiffret, chief technology officer of the security firm BeyondTrust, said: &#8220;Google has added some great security features, but nobody has them.&#8221;</p>
<p>Experts say iPhones and iPads don&#8217;t face the same problem because Apple has been able to get carriers to push out security updates fairly quickly after they are released.</p>
<p>Two Trustwave researchers told attendees about a technique they discovered for evading Google&#8217;s &#8220;Bouncer&#8221; technology for identifying malicious programs in its Google Play Store.</p>
<p>They created a text-message blocking application that uses a legitimate programming tool known as java script bridge. Java script bridge lets developers remotely add new features to a program without using the normal Android update process.</p>
<p>Companies including Facebook and LinkedIn use java script bridge for legitimate purposes, according to Trustwave, but it could also be exploited maliciously.</p>
<p>To prove their point, they loaded malicious code onto one of their phones and remotely gained control of the browser. Once they did that, they could force it to download more code and grant them total control.</p>
<p>&#8220;Hopefully Google can solve the problem quickly,&#8221; said Nicholas Percoco, senior vice president of Trustwave&#8217;s SpiderLabs. &#8220;For now, Android is the Wild West.&#8221;</p>
<p>&#8211; Reuters</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.linuxexplore.com/2012/07/30/mobile-security-with-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
