Posts Tagged ‘Directories’

Submitting Your Blog to the Top Blog Directories

If you have a blog,then you among the millions of other people on this planet who have a blog,who can market their items and services online,and who find ways to connect through friends,past classmates,family,even acquaintances,in order to produce online cash.There are millions upon millions of blogs on the web right now,and you will need to sparkle through the muddle of language,or,at the very least,become known to a few in whatever niche you pursue.
One way for you to establish your audience is to actually have a niche that you proclaim yourself to be in, and one way for you to do this is to place your blog address in a blog directory. You also have any choice up to you: you are not limited to placing your blog in a single directory, which is advantageous if you consider how these blog directories have their own audiences whom you might lose if you aren’t meticulous enough.
If you would like to submit your blog to a blog directory,make sure that your blog is ready to be viewed by others. Do not simply place your blog address and then expect people to read half-baked essays, poor stories, or no entries at all. Have a lot of good content to welcome your new and current readers. Moreover, be aware of exactly what keywords your blog will have.
This means that you will have to go through your content, and then evaluate what keywords to use, so that you can properly categorize your blog and then provide the right keywords if the blog directory service asks for it.
Here are some blog directories that you may want to consider when you are finally ready to sign your blog up.
1. Blog Catalog (http://www.blogcatalog.com) allows you to not only place your blog into a category. It also shows which categories are most popular,so then you can have a better understanding as to what market has the majority of readers. Through blog catalog, you can join discussions and form or join groups.
2. At Blog Hub (http://www.bloghub.com), you can add your blog and chat at a forum, chat with your fellow bloggers, and get news on affordable web hosting services, as well as other articles that might be of interest to you. Blog hub also offers information on how to use services to monetize your blog.
3. You can also add your blog to the directory at Blog Hint (http://www.bloghints.com), where you can view the latest blogs added, the most popular, and the highest rated. Blog Hints will even suggest a category for your blog, and you can access some Wordpress themes if you are using that service. There are many different blogs in this directory that you can search through. The blogs are also organized in folders that are easily visible on the front page of the website.
4. At Blogging Fusion (http://www.bloggingfusion.com) you can also readily view the available categories, and you can even get your blog featured. There are also available blog ratings systems and popular blogs lists for you to browse.
5. Another directory is Blog Flux (http://dir.blogflux.com) where you can look through an alphabetical directory, see featured blogs, and see the latest updates to blogs listed in the directory.

Top Ten Concepts for Linux Beginners – Number 2, Directories

Linux people like to claim that directories are really just another type of file. This statement can be misleading. We saw in a previous article that you create a file using a file editor. We will see later in this article how to create a directory.

So just what is a Linux directory? A directory is a collection that may include one or more directories, one or more files, or in fact be empty. You may think of a directory as a computerized file folder or loose-leaf notebook that contains dividers (themselves directories) and pages (files.) Just like a notebook page may not contain a divider, a Linux file may not contain a directory.

Up to now our comments about Linux directories hold for Windows directories as well. Now let’s take a look at some differences between these two systems. First come the naming conventions. Linux always distinguishes between lower-case and upper-case characters in directory names. Microsoft Windows does not. For example, Linux treats pay12june and Pay12june are as two different directories, as different as the directories pay12june and heighho. These directory names were used as file names in the previous article. While Linux does have some reserved directory and file names, in general one cannot tell by the name whether it is a file name or a directory name. So be careful. Linux helps you out here ‘ the ls command that lists the contents of a given directory usually displays files and directories in different colors.

Directories are hierarchical. They resemble a tree or a family tree. But unlike a tree (or Microsoft Windows) Linux has only one root. The root, designated as / lies at the top, rather than at the bottom, of the hierarchy. Right underneath the root directory you will find several subdirectories. For example, the /home directory is a child of / the root directory. The number and names of the first-level subdirectories vary from one version of Linux to another. For example, some Linux distributions include a /root directory while others do not. The /root directory (or subdirectory, both terms are used) is a child of /, the actual root directory.

The /home directory is an important directory. It is divided into subdirectories, one for each user. We like to work with Damn Small Linux, a free version of Linux that runs on the Windows desktop and requires only 50 Megabytes of disk space. Damn Small Linux automatically creates a user called dsl whose home directory is /home/dsl ; a working area essentially reserved for this user. All Linux versions subdivide the /home directory into user subdirectories according to this simple naming convention.

Linux provides several commands to process directories. For example, the mkdir command creates a directory. The rmdir command removes a directory, but in the simplest case only when it is empty. The cd command changes the working directory, the directory in which you are positioned. The pwd (print working directory) command displays (not prints) the working directory. Beginners should run this command often to reduce errors. For example, if you, the dsl user, think that you are positioned in the /home/dsl directory but in fact are positioned in the / directory you won’t be able save your files with a simple command. Why? Because you lack the requisite permission, the subject of our next article.