Saturday 29 November 2014

All-In-One Linux-Mint & Ubuntu Packages

All-In-One Linux-mint & Ubuntu Offline Packages (LTS)

Just you need to Extract Packages directory or mount The iso file and Change working Directory to packages and run following command:
dpkg -iEG *.deb
Note: It is recommended that install these packages of your fresh Install of linux( No other packages installed  manually) to avoid unwanted problem due to change in packages version.

Other Linux Offline Packages:

Thursday 6 November 2014

Soft link and Hard link

What is a Soft Link or Symbolic Link or Symlink ?

Soft links or Symlinks  are very similar to what we say “Shortcut” in windows, is a way to link to a file or directory. Symlinks doesn’t contain any information about the destination file or contents of the file, instead of that, it simply contains the pointer to the location of the destination file. In more technical words, in soft link, a new file is created with a new inode, which have the pointer to the inode location of the original file. This can be better explained with a diagram:
Soft Links on Linux
Symbolic links are created with the “ln” command in linux. The syntax of the command is:
$ ln -s
-s = This flag tells to create a symlink (if you don’t use this it will create a hard link, which we will talk about soon).
For Example, if you want to create a soft link of one fo your favorite application, like gedit, on your desktop, use the command like this:
$ ln -s /usr/bin/gedit ~/Desktop/gedit
I hope now the concept of Soft Links should be clear.

What is a Hard Link ?

Hard link is a bit different object when compared to a symlink. In softlink a new file and a new Inode is created, but in hard link, only an entry into directory structure is created for the file, but it points to the inode location of the original file. Which means there is no new inode creation in the hard link. This can be explained like this:
Hard Links in Linux
So, in hard link, you are referencing the inode directly on the disk, which means that there should be a way to know how many hard links exist to a file. For the same, in the inode information, you have an option for “links”, which will tell how many links exists to a file. You can find the same information by using this command:
$ stat <file name>
$ stat 01
Size: 923383 Blocks: 1816 IO Block: 4096 regular file
Device: 803h/2051d Inode: 12684895 Links: 3
Access: (0644/-rw-r–r–) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2012-09-07 01:46:54.000000000 -0500
Modify: 2012-04-27 06:22:02.000000000 -0500
Change: 2012-04-27 06:22:02.000000000 -0500
In this example, it means that the specific file have 2 hard links, which makes the count to 3.
You can create a hard link with the same command “ln” like this
# ln
So, to create a hard link of gedit program on your desktop, you will use the command like this:
# ln /usr/bin/gedit ~/Desktop/gedit
Now, the bigger question is, who will decide what is better and when to use soft link or hard link

Differences between symbolic link and hard link

  1. Hard link has same inode number as original file while Sym link has new(different) inode number with respect to original file.
  2. Hard link  cannot be created for directories (folders). Hard link can only be created for a file.
  3. Symbolic links or symlinks can link to a directory (folder).
  4. Removing the original file that your hard link points to does not remove the hardlink itself; the hardlink still provides the content of the underlying file.
  5. Removing the original file does not remove the attached symbolic link or symlink, but without the original file, the symbolic link is useless (the same concept like Windows shortcut).
  6. If you remove the hard link or the symbolic link itself, the original file will stay intact.
I

When to use Soft Link:

  1. Link across filesystems: If you want to link files across the filesystems, you can only use symlinks/soft links.
  2. Links to directory: If you want to link directories, then you must be using Soft links, as you can’t create a hard link to a directory.

When to use Hard Link:

  1. Storage Space: Hard links takes very negligible amount of space, as there are no new inodes created while creating hard links. In soft links we create a file which consumes space (usually 4KB, depending upon the filesystem)
  2. Performance: Performance will be slightly better while accessing a hard link, as you are directly accessing the disk pointer instead of going through another file.
  3. Moving file location: If you move the source file to some other location on the same filesystem, the hard link will still work, but soft link will fail.
  4. Redundancy: If you want to make sure safety of your data, you should be using hard link, as in hard link, the data is safe, until all the links to the files are deleted, instead of that in soft link, you will lose the data if the master instance of the file is deleted.
The above points gives you a small idea where to use what, but doesn’t tell you that those are the only options. Everything depends on your setup.

How file is deleted having hard links:

Hard links are just the reference to the main file location, and even if you delete one link, the data will still be intact. So, to remove a hard link, you need to remove all the links, which are referring to the file. Once the “link count” goes to “0″, then the inode is removed by the filesystem, and file is deleted.

FAQs:

Q. What is the one line answer to the question “What is the main difference between hard links & soft links” ?
A. A softlink will have a different Inode number than the source file, which will be having a pointer to the source file but hardlink will be using the same Inode number as the source file.
Q. How can I find all the Soft Links in my system ?
A. Use this command for the same “find /etc -type l -exec ls -li {} \;”
Q. How can I find all the files having Hard Links in my system ?
A. Use this command for the same “find / -links +2 -type f -exec ls -li {} \;”
Q. How to find whether a file is a softlink ?
A. Simply using this command “ls -l” will tell you whether a file is pointing to some other file or not.
Q. How to check whether a file have any softlink pointing to it ?
A. Till now, I am not aware of any way to do that. If I will find any, I will surely update my post.
Q. How can I find out the source file of a hard link ?
A. No, you can’t find out the source file of a hard link. Once hard link is created, there is no way to tell which was the first file created.
Q. Can I make a Soft link to a Hard link and Vice Versa ?
A. Yes, both soft links and hard links acts as normal files of the file system, so you can do both.
References:
  1. Inodes in Linux Filesystem
  2. Techthrob.com
  3. maxi-pedia.com
  4. lwn.net

Wednesday 5 November 2014

Ubuntu 14.04 installation problem inside Windows

Ubuntu-14.04 64 bit installation inside windows

  1. Get the iso image of ubuntu-14.04-desktop-amd64
  2. Get the wubi.exe. You can extract it from above iso file also.
  3. Keep ubuntu-14.04-desktop-amd64.iso & wubi.exe both in same directory
  4. Run wubi.exe and follow instructions, you can do it easily.
  5. Restart windows.
  6. Wait for completing installation till  restart by itself
  7. When Prompted to select Operating System you want to boot, Select ubuntu Now, Time to solve the Problem
    Serious errors were found while checking the disk for /

  8. As soon as Grub Menu appears, Press 'E' or 'e' 
    • Now you will see contents of grub.cfg
    • Find the line something like "linux /boot/vmlinuz-3.13.0-24-generic root=UUID=[bunch-of-numbers] loop=/ubuntu/disks/root.disk ro rootflags=sync quiet splash"
    • Now Replace ro with rw  
    • Press ctrl+x to boot
  9. Log In to your Ubuntu & Open Terminal.
  10. Run following coomand in terminal
    • sudo su
    • gedit
  11. Now using gedit window opened by terminal, open file '/boot/grub/grub.cfg'
  12. Now search for first occurrence of
     menuentry "Ubuntu........."{
    ...........................

    linux /boot/vmlinuz-3.13.0-24-generic root=UUID=[bunch-of-numbers] loop=/ubuntu/disks/root.disk ro rootflags=sync quiet splash }
  13. Here too, Replace ro with rw  .
  14. You can do same for next two entries of  menuentry "....."{} as they are also to boot ubuntu in advanced mode which is rarely used.
  15. Now save and close gedit window.
  16. That's all.

Ubuntu-14.04 32 bit installation inside windows

wubi.exe is configured to insatll 64 bit ubuntu only, so when we run wubi.exe with ubuntu-14.04-desktop-i386.iso it tries to download ubuntu-14.04-desktop-amd64.iso.
  1. First of all download any Ubuntu iso , may be old, which can be installed inside windows without any problem, and install it But don't Resatrt.
  2. Now copy ubuntu-14.04-desktop-i386.iso to  C:\ubuntu\install  , if installed in C-drive, other wise in X:\ubuntu\install where X is the drive letter.
  3. Now remove the installation.iso from C:\ubuntu\install and Rename ubuntu-14.04-desktop-i386.iso to installation.iso
  4. Mount new  installation.iso and copy vmlinuz  & initrd files(name may slightly differ) to  ubuntu\install\boot. If it ask to replace both files then replace & ignore next line.
  5. Edit  ubuntu\install\boot\grub.cfg  and replace the name of vmlinuz & initrd (old name of kernel files) with new one copied. Infact need to change in three place only, 
    • line with  search ....  vmlinuz...
    • linux ...../boot/vmlinuz...
    • initrd .../boot/initrd....
  6. Now reboot  windows & if needed follow instruction of above article.
Note: It can be used for any linux based on Debian, which has nearly same directory structure in iso. I have used it for Linux Mint 17 x86 & x64, Elementry-x64  and Zorin.

Tuesday 4 November 2014

Centos 6.5-x64 Package Management Offline

Centos 6.5-x64: Install Important Packages Easily.

Developers Essentials:  g++, jdk, strace, traceroute, finger, coreutils,ftp etc.
Developers IDE: Codeblocks, Emacs,Geany, Bluefish etc
Debugger: GUI for gdb, Nemiver, DDD.
Other: NTFS mounter, Dia, Firefox latest, Google-chrome, chm viewer, rar etc
Multimedia: Important codecs, vlc, kmplayer etc


1.Install Centos 6.5 64 bit

2.Download Packages for 64-bit 

      3.Extract Downloaded Package

      4.Open Terminal in the Directory

       Go to the Directory(Centos-6.5_x86-64_Packages) containing all packages.

      5.Change user mode to super user

      su 

      6.Install Packages

      Run following command in each directory (dev, selinux, important, firefox, vlc, repo) 

      go to each directory using cd command and run Following command.
      rpm -Uvh *.rpm

      That's all.

      ##################### rpm options #######################

      Options: -Uvh

      U: install/upgrade as needed

      v: Verbose mode

      h: print hash marks as the package archive is unpacked.

      ######################################################

      PCLinuxOS-2014 Package Management Offline

      PCLinuxOS: Install Important Packages Easily.

      Developers Essentials:  g++, jdk, strace, traceroute, finger etc.
      Developers IDE: Codeblocks, Geany, Bluefish, Aptana Studio etc
      Debugger: GDB
      Other: Google-chrome, chm viewer, rar, Wine(.exe installer for linux)

      1.Install Centos 6.5 64 bit

      2.Download Packages for accordingly

          3.Extract Downloaded Package

          4.Open Terminal in the Directory

           Go to the Directory containing all packages.

          5.Change user mode to super user

          su 

          6.Install Packages

          Run following command in each directory (current directory and important, wine) 

          go to each directory using cd command and run Following command.

          apt-get install *.rpm
          or
          rpm -Uvh *.rpm

          That's all.

          ######################rpm options ######################

          Options: -UvhU: install/upgrade as neededv: Verbose modeh: print hash marks as the package archive is unpacked.

          #######################################################

          Linux Mint-17 Package Management Offline

          Linux Mint: Install Important Packages Easily.

          Developers Essentials:  g++, jdk, strace, banner, traceroute, finger etc.
          Developers IDE: Anjuta, Geany, Python ILDE etc
          Debugger: GUI for gdb, Nemiver, DDD.
          Other: Dia, Synaptic PAckage Manager, Google-chrome, Putty, dcpp etc


          1.Install Linuxmint-17-cinnamon

          2.Download Packages according to Your Ubuntu( 32 bit or 64 bit)

              3.Extract Downloaded Package

              4.Open Terminal

               Go to the Directory(Ubuntu-14_x64 or Ubuntu-14_x86_Packages) containing all packages.

              5.Change user mode to super user

              su 

              6.Install Packages

              Recomended:
              dpkg -iEGR *
              It will install all .deb Packages from current directory recursively(including sub-directory).
              or,
              Manually: Not recommended, go to each directory using cd command and run Following command.
              dpkg -iEG *.deb

              7.Check status 

              Run following command to check status whether, packages installed correctly.
              apt-get -f install
              That's all.

              ######################### dpkg options ####################

              Options: -iEGR

              i: install/upgrade/downgrade as needed

              E: Skip installed same version

              G: Don't allow old version

              R: install recursively .deb files 

              ########################################################

              Ubuntu 14.04 Package Management Offline

              Ubuntu: Install Important Packages Easily.


              Developers Essentials:  g++, jdk, strace, banner, traceroute, finger etc.
              Developers IDE: Anjuta, Geany, Python ILDE
              Debugger: GUI for gdb, Nemiver, DDD.
              Multimedia: mp3, mp4, avi, mkv, wmv & flv codecs And VLC
              Other: Dia, Synaptic PAckage Manager, Google-chrome, Putty


              1.Install Ubuntu 14.o4

                2.Download Packages according to Your Ubuntu( 32 bit or 64 bit)

                  4.Open Terminal

                   Go to the Directory(Ubuntu-14_x64 or Ubuntu-14_x86_Packages) containing all packages.

                  5.Change user mode to super user

                  sudo su 

                  6.Install Packages

                  Recomended:
                  dpkg -iEGR *
                  It will install all .deb Packages from current directory recursively(including sub-directory).
                  or,
                  Manually: Not recommended, go to each directory using cd command and run Following command.
                  dpkg -iEG *.deb

                  7.Check status 

                  Run following command to check status whether, packages installed correctly.
                  apt-get -f install
                  That's all.

                  ####################### dpkg options #######################

                  Options: -iEGR

                  i: install/upgrade/downgrade as needed

                  E: Skip installed same version

                  G: Don't allow old version

                  R: install recursively .deb files 

                  #########################################################

                  Comment

                  Feel free to comment/suggest/criticize.

                  My Blog List