• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
Gokul Deepak

Gokul Deepak

GoCool and Debug

  • Home
  • Terraform
  • WordPress
  • Android
  • How to
  • About Me

Gokul Deepak S

How to Remove LinkWithin logo under ‘You Might Also Like’ widget in blogger

August 23, 2016 by Gokul Deepak S Leave a Comment

Let me explain How to remove LinkWithin logo under ‘You Might Also Like’ widget in blogger.  Look at the picture added below. This is how the Linkwithin link will be in the widget.
remove LinkWithin logo

Mission: to Remove LinkWithin logo

Platform: Blogger/Blogspot

Procedure:

Step 1: Go to Blogger.com

Step 2: Select Template -> Customize -> Advanced-> Add CSS

Step 3: Paste the following code in the custom CSS box

#linkwithin_logolink_0
{display:none;}

Extra Cover:

The code given above will work only for one post. That is if you are viewing a single post/page the linkwithin logo will be hidden but if a Archive page is listed then only one of the post won’t have linkwithin logo. All other posts will have linkwithin logo. To hide all such logos add the CSS given below instead of CSS given above.

->For Multiple post (Example:Archives, Labels):

#linkwithin_logolink_0,#linkwithin_logolink_1,#linkwithin_logolink_2,#linkwithin_logolink_3 {display:none;}

Step 4:  Hit Apply to Blog.

Climax: We have successfully removed linkwithin logo.

Filed Under: Blogger

How to Install Windows without GRUB rescue

August 23, 2016 by Gokul Deepak S Leave a Comment

Step by step procedure to install windows without Grub Rescue

  1. Grub, or the Grand Unified Bootloader, is the most common boot loader for Linux. That’s well deserved: the thing actually boots all conceivable operating systems. All Linux distributions, all types of Windows, all types of DOS, all kinds of BSD, Apple Mac OS, you name it. It’s a small miracle of technology.On my multiple boot laptop there once were 10 different operating systems in the menu of Grub: they all lived brotherly side by side on the same hard drive ….Grub is evidence of the strength of simplicity: the program is very simple but also powerful and versatile.

    Yet you can occasionally come across a problem with Grub. Here you’ll find solutions for the two most common problems: repairing and removing. Plus some tips for adapting it.

Repair Grub rescue (e.g. because the Windows DVD has overwritten Grub)

2. First the explanation, then the how-to.

Explanation

2.1. If you install Linux first and Windows afterward, then you lose Grub. So it’s better when you install Windows first and then Linux….. Have you already lost Grub? Fortunately, it’s an easy problem to solve. However, it’s very important that you follow the instructions exactly.

Grub consists of two parts.
First, the main part of the program itself, which is placed in the Master Boot Record (MBR). The Master Boot Record is the first sector of the hard disk.

Secondly, there’s the Grub boot menu with the various operating systems, plus some supporting files. These are not in the MBR, but in a folder on the active Linux partition.

Do you have two physical hard disks in your computer? Then it’s important for you to know that Grub always resides in the MBR of the first hard disk. The first hard disk is the hard disk that’s number 1 in the boot priority (boot sequence) in the BIOS of your computer.

If you restore (repair) Grub in the MBR, then you must again tell Grub where it can find the existing boot menu.

How-to

2.2. Note: this how-to is only fit for motherboards that run on a conventional BIOS. This usually means a computer that was sold with Windows Vista or Windows XP pre-installed on it.

The how-to is also fit for a motherboard that runs on an (U)EFI that has been configured to behave as if it were a conventional BIOS. This is normally the case for a computer that was sold with a pre-installed Windows 7.

But this how-to is definitely unfit for motherboards that run on UEFI in full UEFI mode. This is usually the case for computers that were sold with a pre-installed Windows 8.

Repair Grub like this, for example, when a consecutive installation of Windows has wiped Grub:

a. Boot the computer from the Ubuntu DVD.

b. Click on the grey Ubuntu logo (Dash home). Query: terminal.
Click on Terminal.

c. Type for example (use copy/paste in order to avoid errors):
sudo mount /dev/sda5 /mnt

Note: only if Ubuntu is on sda5! Change the number according to your situation. Don’t know which partition number is right in your case? Check it with Gparted Partition Editor, which you can start from the Dash with the query gparted.
You can also type this command line in the terminal:
sudo fdisk -l
But that gives less information than Gparted.

and press Enter. This mounts the Ubuntu partition on the hard drive.

d. Type (use copy/paste in order to avoid errors):
sudo grub-install /dev/sda –root-directory=/mnt

and press Enter. This installs Grub.

Note: definitely use copy/paste and do not type this command by hand! Many people forget to type essential spaces in this command.

Note: you might get the following harmless error report:
grub probe: error: failed to get canonical path of /cow
Installation finished. No error reported.

As said, this grub probe error is harmless, and all should be well.

Now type:
sudo reboot

and press Enter.

e. Reboot the computer normally (take out the DVD first).

Now you can only see Linux in Grub, and no Windows (when Windows has been installed after Ubuntu).

Put Windows in the Grub menu:

– Start Ubuntu normally.

Click on the grey Ubuntu logo (Dash home). Query: terminal.
Click on Terminal.

type (better yet: use copy/paste):
sudo update-grub

– Reboot your computer. Windows will (again) be visible in the Grub menu. If necessary, you can make the Grub menu visible when you turn on your computer,by pressing the Shift key after the BIOS screen disappears, and keeping it pressed.

This is different from the old Grub, which used the Esc key! An unfortunate decision by the Grub developers, but that’s the way it is.

Adapt Grub: make Windows the first option in the Grub boot menu

3. At the beginning of their Linux adventure, many people want to make Windows the default operating system to boot in the Grub menu (you’ll get over it!).

That’s not hard; this is how you do it.

Adapt Grub: set a nice picture as background for the menu

4. The Grub menu, from which you can choose what operating system to boot, is functional but not very nice….

That can be improved greatly, for example by using a holiday picture as background for the menu.

Want more?

5. Do you want more tips and tweaks for Ubuntu? There’s a lot more of them on this website!

Remove Grub (back to Windows only)

6. Removing Grub is actually a pity…. it’s such a beautiful tool! However, it’ll increase your confidence in Grub if you know how to remove it as well.

In short, removing Grub means the replacement of Linux bootloader Grub, by the Microsoft bootloader NTLoader, in the Master Boot Record (MBR) of the hard disk. There are a lot of ways to do that.

With the Windows XP installation CD

6.1. Boot your computer from a Windows XP installation CD and choose R for restore or repair. Then you get a terminal with a menu. Choose the number of the Windows partition, typically 1 for c:windows , and type the administrator password.

Install NTLoader with the following consecutive commands:
fixboot C:
fixmbr

Done! You should be able to reboot into Windows.

With the Windows 7 installation DVD

6.2. First of all, you need an installation DVD of Windows 7. Don’t have an install DVD of Windows 7? Then get a free copy of an evaluation disc of Windows 7, from Microsoft.

You need a free Windows Live account for that, but you can (if needed) created one on the spot. A fake name will do just as fine as your real name.

Burning the iso needs to be done in a special way: click for the how-to

This is what you do then:

a. Put the Windows 7 installation disc in the DVD drive and reboot the computer.

b. Press a key when asked to (spacebar is always safe)

c. Choose your language and keyboard, and press Next.

d. Click Repair your computer.

e. Click on the operating system that you would like to “repair” and then click Next.

f. In the System Restore Options, click Command Prompt.

g. Type:
Bootrec.exe /FixBoot
Press Enter.

(Note: there is a space between exe and / )

h. Then type:
Bootrec.exe /FixMbr
Press Enter.

(Note: there is a space between exe and / )

Done! You should be able to reboot into Windows.

With the Windows 8 installation DVD

6.3. First of all, you need an installation DVD of Windows 8. Don’t have an install DVD of Windows 8? Then get a free copy of an evaluation disc of Windows 7, from Microsoft.

You need a free Windows Live account for that, but you can (if needed) created one on the spot. A fake name will do just as fine as your real name.

Burning the iso needs to be done in a special way: click for the how-to

What you have to do with the Windows 8 DVD, is described on this page.

With the free Ultimate Boot CD

6.4. No installation CD or DVD of Windows? Then you can restore NTLoader also by using the free Ultimate Boot CD (UBCD). You can download it here.

Pick the .iso of the stable version, and burn it on a CD as a raw image.

Boot your computer from the UBCD (make sure that the CD drive is first in the boot order in the BIOS).

UBCD contains several tools to restore NT Loader in the MBR. I’ll describe the use of one of them.

Select HDD in the menu, then Boot Management, then Super Grub Disk. Then press Enter again, in order to start the Super Grub Disk. Then you choose:
Win => MBR &  !WIN!   :(((((((((((((((((((((((((((((((((
Press Enter.

By the way: the multitude of arches (sigh) isn’t my idea, but the idea of the maker of the Super Grub Disk…

Now you’re done! Reboot your computer normally. Your computer should boot up Windows now.

With an USB memory stick

6.5. Finally, you can also use a USB memory stick for this job. It takes three applications: Unetbootin, FreeDOS and Testdisk for DOS.

a. First download Unetbootin and use it to make a bootable USB memory stick. Choose Freedos when prompted for a distribution to install on it.

b. Download Testdisk for DOS (don’t pick the bèta, but pick the stable version).

c. Unzip the files testdisk.exe and CWSDPMI.exe, and put them on the bootable memory stick (not in a folder, just straight on it).

d. Boot your computer from the memory stick. At the Default window, simply press Enter.

e. Now FreeDOS is being launched. Choose:
FreeDOS Safe Mode (don’t load any drivers)
Press Enter.

f. Then type: C:
Press Enter.

g. Now type: testdisk
Press Enter.

h. Select [No Log]
Press Enter.

i. Select the hard drive concerned: usually the second option (the first option is the memory stick itself!).
Press Enter.

j. Select [Intel]
Press Enter

k. Select [MBR Code] and press Enter. When prompted, type y (yes) and press Enter again.

Now you’re done! Reboot your computer normally. Your computer should boot up Windows now.

Filed Under: Computer Tips

How to install OwnCloud on Bluehost

August 23, 2016 by Gokul Deepak S 1 Comment

Mission: Install own cloud on Bluehost

Objective: Easily upload, Download, Organize files using your domain name. It can be used like a easy and simple file manager for your hosting.

Requirement: An Account in any hosting service. Here I’m using Bluehost service.

Explanation: Own Cloud is an open Source application which is like a Content management system which manages files and folders. I have explained in a step by step procedure on how to install OwnCloud on Bluehost so even the beginner can understand this easily.

Creating a Subdomain

Step 1: 

Login to Bluehost -> click on Domain tab-> click on Subdomain  (Short cut for Bluehost Subdomain : https://my.bluehost.com/cgi/dm/subdomain)

Step 2:

Create a subdomain. I’m creating a subdomain as “cloud.gokuldeepak.com”

Uploading of the setup-owncloud.php

Step 3: 

Go to: https://owncloud.org/install/#instructions-server  select “web installer” tab

install owncloud on bluehost

 

Step 4:

Download the setup-owncloud.php from https://download.owncloud.com/download/community/setup-owncloud.php

Step 5:

Switch to your Bluehost Cpanel -> File manager
Step 6:

Select WWW folder -> In the file manager you will find the subdomain folder. A folder named “cloud”(or whatever name you gave previously for your subdomain on step 2)

Step 7:

Now upload the setup-owncloud.php to this folder.

Installing OwnCloud:

Step 8:

Last step to Install OwnCloud

Go to the following url : “cloud.gokuldeepak.com/setup-owncloud.php” Change for your domain name.

Step 9: 

It will ask to set new username and password.

Success!!! We have successfully installed owncloud on our Bluehost account.

After the installation the .php file will be automatically deleted so that you can enjoy the service without worrying about the setup file.

 

Trouble Shooting:

If you get some error while installing OwnCloud it might be because of php version. You should have PHP 5.3 to use run this setup file. Bluehost will provide us PHP 5.2 as default so you need to update it. where you can update it for free.

-> Login to Bluehost Cpanel, from the left of the screen you should be able to locate the current version of the PHP.

 

Bluehost PHP

-> In my server , its PHP 5.2, now we are going to upgrade this to PHP 5.3. (You can use the same method to upgrade from PHP 5.3 to 5.4)

->Under “Software/Services” category , select “PHP Config”.

PHP config in Bluehost

-> Select PHP 5.3 and click Save button present at the bottom of the page.

 

Filed Under: How to Tagged With: Bluehost, OwnCloud

How to redirect Blogspot to another site

August 12, 2016 by Gokul Deepak S Leave a Comment

This question was arisen within me when I have moved my blog from gokuldeepak.blogspot.com to Gokuldeepak.com (a Self hosted wordpress site). I needed an automatic redirector to redirect my blogspot.com domain to top level domain. Using this method we can even redirect the blogspot.com to any certain page. I have redirected http://adflyincometips.blogspot.com/ to How to increase adfly views page. There are lot of blogs which deals with this topic. Even though I’m trying to reproduce my own version, a simple 6 step method. Note that user visiting any of the post in our blog will be automatically redirected to another site so that it does not only redirects the home page but all pages. So there won’t be any pages to display in our blogspot.com

How to redirect Blogspot to another site:

Step 1: Login to Blogger.com dashboard.

Step 2: Select Template tab.

Step 3: Click Edit HTML

Step 4: Within top 10 lines you will find <head> tag.

Step 5: Below that <head> tag add the following code.

<script type=’text/javascript’>
var d='<data:blog.url/>’;
d=d.replace(/.*\/\/[^\/]*/, ”);
location.href = ‘http://gokuldeepak.com’;
</script>
 How to redirect Blogspot to another site

Step 6: replace http://gokuldeepak.com with your own url to which the blogspot blog have to be redirected.

Success: Successfully we have redirected blogger blog to another site automatically.

Hope this Post helps you to make change in rapid manner. I’f you are an advanced pro sorry. This blog won’t satisfy you since I’m focusing to explain only basic details in a simple manner for noobs. Even though if you comment below I would answer your complex questions too.

Filed Under: Blogger

Yureka Yu Plus vs Lenovo K3 Note

August 12, 2016 by Gokul Deepak S Leave a Comment

Yureka Yu Plus vs Lenovo K3 Note. You must be confused on choosing any mobile out of these two. It is undoubted that Under 10k mobiles these two are the best. Read all points mentioned in this post. If you want more details please comment below and will answer your doubts. You can also ask some mobiles for detailed review.

 

Yureka Yu Plus vs Lenovo K3 Note:

—————————
LOOK AND FEEL
—————————
1)Yureka+——- The Yureka Plus wins the looks department hands-down. It still retains the textured moonstone back as seen on Yureka. It has a slim form factor with thickness of 8.3mm. The volume rocker and power button are finished in chrome and have a nice feedback. The front also has a thin metal running in the front, which looks really nice. The buttons are also backlit.

2)K3 Note——- The K3 is not that bad. The device overall feels solid. There are no gaps and the back cover fits perfectly. The back is matte finished and does not slip. It has smaller dimensions than Yureka + and is about 0.3mm slimmer. Hoever the buttons are not backlit.

————–
DISPLAY
————–
1)Yureka+——–The Yureka+ has a Full HD 1080p display which is really sharp and bright. No complaints about the display. However I have noticed a bluish tinge on the display. The viewing angles are great, colour reproduction accurate, and overall a great experience. What’s more, it has Gorrila Glass 3.

2) K3 Note———— The display of K3 is a bit better than Yureka+ because it has better sunlight legibility and better contrast. However, I leave this to personal preference. The display is also Full HD 1080p and it is a joy watching movies on this thing. There is no Gorrila Glass, however you do get a hardened glass which is good for day-to-day use. Both the devices have 5.5 inch screens.

————————————————
PERFORMANCE AND GAMING
————————————————
1) Yureka+———— Day to day usage is fast and smooth. No lags whatsoever. Coming to playing high end games (MC 5, Asphalt 8) , this is where these phones have great differences. In the beginning both perform same, but after some time K3 starts lagging a bit. This is because as the phone starts getting hot, the processor shuts down some cores to cool down and thus the game starts lagging. There is no such feature in Yureka+, which means the phone gets quite hot, but it doesnt affect your gaming.
2) K3 Note ———— Here also day to day performance is buttery smooth. No lags even after running 30 plus apps in multi window.Coming to gaming I explained most of the points above. K3 Note is not for heavy gamers but it stays cool. If you are OK with the phone getting hot, you should have no problems with Yureka+. For those who play less games K3 Note is great. K3 scores a massive 45000 on Antutu whereas Yureka+ scores only 35000. However, there is not much difference in performance in real-world usage. Both phones are awesome for everyay use.

——————–
USER INTERFACE
——————–
1) Yureka+ ———- It runs on CyanogenMod 12 on top of Lollipop.It is one of the best ROMs out there. There are a ton of customization options and security features. Look and feel is almost like stock android. There are however minor bugs here and there such as proximity sensor. It is great for people who like playing with their phones and want to customize everything. However, people who like simplicity must go forK3 Note as its VIBE UI is very simple to use.
2) K3 Note——— K3 runs on VIBE UI, which is Lenovo’s custom skin on top of Lollipop. It has a very flat design. There is no app drawer and all icons are in the homescreen. The UI is very refreshing and colourful. Double tap to wake and sign commands are there. Option of themes is also present. UI is very stable and not at all buggy. There is also some gesture control such as blink to take selfie and double press volume rocker to take a photo when device is locked.

————-
CAMERA
————-
1) Yureka+ ———- Both phones have a 13 MP + 5 MP cameras. Pictures come out fairly detailed with minimal noise in daylight conditions. In indoor lighting and low light pictures get grainy. Flash works to some extent but not always. Clicking pictures with the flash gives a bluish tinge on the pictures. Macro shots are good, with decent depth of field. The selfie camera is good but again selfies have a bluish tinge. The rear camera records Full HD videos. The videos were decent but hanged sometimes.
2) K3 Note ———- Both cameras perform quite well. Slightly better than Yureka. Front camera of Yureka give a slightly bluish tint but in K3 colours are natural. You need steady hands to shoot in low light, and the pictures come out great. The rear camera has full hd recording and the videos are great too. The pictures come out very good in daylight and the colours are vey accurate. Also, the 5MP selfie camera has Beautify feature which works great. K3 Note has an edge over Yureka+ in the camera department. However, they come very close.

————-
BATTERY
————-
1) Yureka+———- Yureka has a 2500 mAh battery compared to 2900 mAh of K3 Note. Battery easily lasts 1 to 1 and half days on moderate to heavy usage. YU says it has some feature on Cyanogen which gives 30% more battery. The phone also lasts a complete day on 3G. I cannot comment on 4G battery life, as I dont have 4G in my city.
2) K3 Note ———— The battery is very good. Drains very less. Gives about 2 days of use on moderate to heavy usage. A clear winner among the two ! Even after gaming, the battery reduces very less. 3G usage can easily give 1.5 days of usage.

———–
SOUND
———–
1) Yureka+ ———— The speaker sound is just above average. Not too good not too bad. It gives a little bass but thats about it. However the sound through earphones is good, rich and clear. I also tried tweaking the speaker settings through the inbuilt equalize, but there was no improvement in the loudness. If you are in a room with ceiling fan running, you will have difficulty hearing from the speakers.
2) K3 Note ———— Wow ! The sound is just so loud ! Crystal clear and deep. Also Dolby Atmos is there. It can only be used while using earphones, and the experience is awesome. True 360 degree surround sound. You have to hear it to believe it ! Easily beats Yureka+ hands down. It is the best sound I have ever heard on a mobile. The treble is perfect and bass is amazing. Also, the speaker consumes very little battery even at full volume. If you love hearing songs, this is the best phone for you!


Yureka Yu Plus vs Lenovo K3 Note :: Detailed Comparision


 

Filed Under: Mobile Tagged With: Android, Comparisions, Smartphones

Lenovo Ideapad G50-30 vs Dell Inspiron 3551

August 12, 2016 by Gokul Deepak S Leave a Comment

Lenovo Ideapad G50-30 vs Dell Inspiron 3551:

  1. Foreign brand or not: Some of the Lenovo Ideapad G50-30 is found in their official website for India so probably spare parts might be available at the market.

Processor:

Both have the same configuration(i.e intel) but the variant of processor differs. Lenovo N3530 and Dell N3540. Obviously, Dell (N3540) has the latest. But there is no major upgradations for Intel N3540 from N3530. The one only difference is its Burst frequency. But Burst frequency is not necessary for us.

Display:

Lenovo stands on top. User comments on true life display say that since it has an anti-glare glass it would reflect lights which will be annoying.

USB:

2 USB 3.0 ports are available in Lenovo rather in Dell only one USB 3.0

RAM:

An Unused slot which can be used to upgrade our RAM up to 8GB in Lenovo. But in Dell no additional slots available. (Note: There was a comment from a guy who says there is no extra slot for RAM in Lenovo)

What I recommend: If this laptop is just for business and no need of >2GB RAM just go for Dell.

Filed Under: Laptops Tagged With: Comparisions

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 8
  • Page 9
  • Page 10
  • Page 11
  • Go to Next Page »

Primary Sidebar

Popular Pages

  • How to install OwnCloud on Bluehost
  • Home
  • How to find the date of the Facebook group it was created
  • How to Stock ROM using SP flash

Archives

Categories

  • Android
  • Apache
  • AWS
  • Blogger
  • Computer Tips
  • DevOps
  • Docker
  • Earn
  • Facebook Tips
  • Git
  • Google Tips
  • Hosting
  • How to
  • Laptop Tips
  • Laptops
  • Linux
  • Mobile
  • MongoDB
  • Nginx
  • Node JS
  • Notepad++
  • PostgresQL
  • Terraform
  • Ubuntu
  • Wordpress
  • Xenforo

Tags

Android Android One AWS Bluehost Comparisions Custom ROM Elementor Facebook Genesis Genesis Sample Theme Google Drive How to Lineage OS Notes OnePlus One OwnCloud Rooting Smartphones Stock ROM Studiopress Tomcat Wordpress plugin

Copyright © 2025 · Maintained by GokulDeepak

 

Loading Comments...