Main > Free Download Search >

Free make sure software for linux

make sure

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 7298
Make-More-Money 1.0

Make-More-Money 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-03-31 License: Freeware Price: Free
209 downloads
Make-Big-Money 1.0

Make-Big-Money 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-11 License: Freeware Price: Free
196 downloads
Make-Money-Now 1.0

Make-Money-Now 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-07 License: Freeware Price: Free
199 downloads
How-Make-Money 1.0

How-Make-Money 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-04 License: Freeware Price: Free
202 downloads
Ipod MovieMaker 0.1 Beta

Ipod MovieMaker 0.1 Beta


Ipod MovieMaker project is a dialog windows bash script which allows you to merge *.txt subtitles with all formats of movie file more>>
Ipod MovieMaker project is a dialog windows bash script which allows you to merge *.txt subtitles with all formats of movie files and save it in avi format. You may convert all kinds of video to .mp4 which is Ipod Video compatible format.
You will be only questioned about the location of a source movie, subtitles, encoding (default WINDOWS-1250), font location (default /home/$USER/.mplayer/font/subfont.ttf), and where to save reasult .mp4 file. You can have each work done seperatly or have whole process done from hardcoding subtitles to encoding to ipod format.
Installation:
- Make sure that you have mencoder and ffmpeg compiled with libxvid, libfaac codecs enable
- Make sure you have proper true type font installed in /home/$USER/.mplayer/font directory
- Make sure you have compiled gtkpod with libfaac codec to upload movies on Ipod video
- to get this script working write this in your console
chmod 755 ipodmoviemaker
cp ipodmoviemaker /usr/bin/
<<less
Download (0.003MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
848 downloads
Make-Money-Fast 1.0

Make-Money-Fast 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-09 License: Freeware Price: Free
200 downloads
Amarok announce 1.0

Amarok announce 1.0


Amarok announce is a small perl script for Konversation which will display what you play in amarok. more>>
Amarok announce is a small perl script for Konversation which will display what you play in amarok.

Place the script in ~/.kde/share/apps/konversation/scripts, make sure its executeable, then add in Konversation an Alias "amarok /exec amarok.pl" then you can use it by typing /amarok in a channel.

<<less
Download (MB)
Added: 2006-04-25 License: Freely Distributable Price:
1280 downloads
Install Kernel 0.9.3

Install Kernel 0.9.3


Install Kernel is an advanced script which installs the kernel and sets up LILO or GRUB. more>>
Install Kernel interfaces with the Linux operating system by running a series of functions or groups of commands that automate the compiling or recompiling and installation process.
Install Kernel project consists of three groups of functions: building the kernel and moving files, checking dependencies, and editing the boot loader configuration file. Grouping all of the functions in these three groups makes maintaining and altering the script much easier.
Install Kernel can also be considered a program, because a program does checking and makes choices accordingly. A script is usually a file, which contains a certain number of commands with no logic in mind. Therefore, while ik is technically a script, it can also be called a program.
Dependency checks are to make sure the current system configuration and settings are properly setup before proceeding with the kernel build. There are seven dependency checks, they are: a root check, space check, link check, boot check, boot loader check, configuration check, and a module check.
First, the root check makes sure the user is a super user; which means they are capable of editing important system files only accessible to the root account. The space check makes sure there is at least 200 megabytes available.
The kernel source these days is around 150 megabytes just for the source code. When one compiles the kernel, it may increase the size to 50 megabytes or more. Therefore, ik
checks for at least 200MB available in order to successfully compile the kernel without running out of space. Next, it is not required, but it is standard to have a symbolic link of /usr/src/linux pointing to /usr/src/linux-x.y.z.
The fourth check makes sure the user has a /boot directory, this is where the Linux kernel files will be installed to. The fifth check determines the bootloader that will be used. There are two main boot loaders in Linux. LILO and GRUB are the two most popular for booting the operating system.
This check accurately finds whether the kernel was booted from either LILO or GRUB by checking which bootloader was used last. It then tells the rest of the script to edit the correct one accordingly. The sixth configuration check is to make sure users have created a proper kernel configuration file, which is used in the process of building the Linux kernel.
The final check is a module check, if modules are turned off, the script will determine this and alter the installation process to install with no module support. The main idea behind the depdency checks is to make sure the user cannot damage his or her system if they do not do something right.
The installation process also contains seven functions. The installation process is usually several commands. However, because of the differences that can occur in a users configuration file, each part of the building process must be checked and the building process may need to be altered.
The first function makes sure the dependencies are setup correctly for all files in the kernel source tree. The second function deletes stale object files and or old kernel files. Next, the third function is the kernel build function; this function runs a command to build the Linux kernel. Next, functions four and five make and install modules if the user had specified module support in his or her kernel configuration file.
The sixth function moves the Linux kernel and its System dependency map to the boot partition. The last function of the build process sets up module dependencies for the new kernel if modules were defined. The installation process also includes a small error check for each part of the kernel build process.
If any part of the kernel build process fails; the script will abort, not modifying any boot loader configuration files. This is important; because if it did not abort, it may alter the boot loader configuration files, thus rendering the system unbootable. It is important to support every Linux configuration possible because of the wide use of this script.
The boot loader configuration and setup process is probably the most important aspect of installing a new kernel. An improper boot loader configuration may leave one with system that does not boot; or simply does not boot the new kernel.
It is also important, as some systems may have two or more boot loaders installed. There are four functions defined for this process. The first function uses the boot loader, which was defined during the configuration checks. The second function defines where the LILO or GRUB configuration files are located.
Next, depending on which boot loader is found, either LILO or GRUB configuration files are edited automatically by sed. Sed is a stream editor, which edits a file with no user intervention. If user intervention were required, the user would have to be present between certain parts of the kernel installation. With ik, it makes efficient use of a users time because only one command needs to be entered to complete the entire installation and setup process.
Install Kernel is a useful tool for those who are new to Linux, rebuild their kernel often, or value their time. It reduces the commands for installing the kernel from about thirteen to one. Users new to Linux may find this attractive.
This is because the entire process is automated; and if something is not correct, in most cases ik will notify the user what is incorrect, and how to fix the error. On the other side, for experienced users who do not wish to spend valuable time installing a new kernel, this is also very handy. Install Kernel is efficient by requiring no user intervention and reducing time spent on kernel installs, and effective by giving new to Linux the option for an easy kernel upgrade.
Enhancements:
- Updated to work with the newer version of coreutils for head and tail.
- The MAKE_JOBS directive has been removed in favor of make -j2 to prevent make from spawning hundreds of jobs if /proc/cpuinfo did not exist.
<<less
Download (0.004MB)
Added: 2006-05-24 License: GPL (GNU General Public License) Price:
1249 downloads
Make-Money-Today 1.0

Make-Money-Today 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-02 License: Freeware Price: Free
205 downloads
Make-Money-Website 1.0

Make-Money-Website 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-01 License: Freeware Price: Free
206 downloads
ASCIIQuarium 1.0

ASCIIQuarium 1.0


Asciiquarium project is an aquarium in ASCII art. more>>
Asciiquarium project is an aquarium in ASCII art.

It includes multicolored fish, a whale, and a fish-eating shark.

Enjoy the mysteries of the sea from the safety of your own terminal!

Asciiquarium is a single perl script, so all you have to do is make sure its executable and put it somewhere convenient, like /usr/local/bin or /usr/local/games.

<<less
Download (0.013MB)
Added: 2006-11-14 License: GPL (GNU General Public License) Price:
1083 downloads
Make-Money-Internet 1.0

Make-Money-Internet 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-08 License: Freeware Price: Free
199 downloads
Fish Supper 0.1.5

Fish Supper 0.1.5


Fish Supper is an arcade puzzler based on Frogger. more>>
Fish Supper is an arcade puzzler based on Frogger. Fish Supper is loosely based on the retro classic Frogger.

Guide a cat across a series of rivers, jumping from log to log to reach a tasty fish supper on the other side.

Before landing on a log, though, you need to make sure youve got a crystal the same colour (or two that together will make that colour), otherwise youre zapped back to the beginning.

Written in C++/SDL.

Installation:

You will need the SDL, SDL_image and SDL_mixer libraries and development files.

After unpacking the archive, go into the "src" directory:
cd FishSupper/src

Type: make

Move back up one level: cd ..

You should now have an executable called "fishsupper" that you can run with:
./fishsupper

<<less
Download (1.2MB)
Added: 2007-03-31 License: GPL (GNU General Public License) Price:
938 downloads
Affiliate-Make-Money 1.0

Affiliate-Make-Money 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-07 License: Freeware Price: Free
200 downloads
nss-myhostname 0.1

nss-myhostname 0.1


nss-myhostname is a GNU libc NSS module that statically translates the local host name to the IP address 127.0.0.2. more>>
nss-myhostname is a GNU libc NSS module that statically translates the local host name to the IP address 127.0.0.2 (which is on the loopback device) and vice versa.

This is useful to make sure that the local host name is always resolvable. Some programs (such as sudo) require this functionality.

Especially on embedded systems it may not be desirable to modify /etc/hosts to match the current host name.

It is a good idea to put this module as last resort in /etc/nsswitch.conf, to make sure that other name service take precedence.
<<less
Download (0.011MB)
Added: 2005-11-21 License: LGPL (GNU Lesser General Public License) Price:
1434 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5