Showing posts with label from. Show all posts
Showing posts with label from. Show all posts

Friday, October 14, 2016

Free Print from Android Cam 1 7 torrent download

Free Print from Android Cam 1 7 torrent download



Print from Android Cam
Productivity
[Download Link >>]

version:1.7

rating: 3.3

rating count: 646

updated: 2015-01-17

size: 1.3 MB

installs: 1000

cost: UAH13.75


Go to link download

Read more »

Monday, October 10, 2016

My Journey to building Linux From Scratch LFS system PART3

My Journey to building Linux From Scratch LFS system PART3


 
CHAPTER 3

Now that we have the bootable USB flash drive, we can continue now by creating a partition onto which we will install our LFS system.

According to the book, we create a linux native partition and a swap partition using either cfdisk or fdisk.

using fdisk, I created a 40GB primary partition and a 2GB swap partition.

Now we will create a file system on the newly created partition. According to
the book, we should create an ext3 file system using the E2fsprogs
utilities. Specifically mke2fs.

    #mke2fs -jv /dev/sda1 
where:

sda1 is my first partition.
mke2fs - is a program that creates an ext2/ext3 filesystem
- the "-j" means the create the filesystem with an

Then we initialize our swap partition.

    #mkswap /dev/sda2

    where: /dev/sda2 is our swap partition

To check, type blkid at the prompt, there should be an entry about /dev/sda1
and /dev/sda2

To access the partition, we mount it at /mnt/lfs.

    #export LFS=/mnt/lfs    -sets a variable LFS equal to /mnt/lfs
    #mkdir -pv $LFS            -create a directory /mnt/lfs
                                            -"-p" means parent, "-v" means verbose
    #mount -v -t ext3 /dev/sda1 $LFS
                                            -mount our first partition to /mnt/lfs
                                            -meaning we can access our first partition via
                                             /mnt/lfs
note: make sure that the partition is mounted without too many restrictions
e.g. nosuid,nodev or noatime options, by using mount command.

    #mount
   
    the /dev/sda1 line should not show (nosuid,nodev,noatime)


Enable the swap partition using the swapon command

    #/sbin/swapon -v /dev/sda2


Now we can download the packages and patches needed to build the basic LFS system. But since we are using the livecd as our base system, we dont need to download the packages, we just copy the packages from the /lfs-sources/ directory of the livecd to our newly created partition.   

We need to create first a directory where we will install the packages and the patches.

    #mkdir -v $LFS/sources

then we make this directory writable and sticky. sticky means multiple user
have write permission but only the owner can delete a file within this
directory.

    #chmod -v a+wt $LFS/sources

   where:     a+w - means all have write access
                       t   - means sticky

Now we download, or in our case, copy all the contents of /lfs-sources
directory to $LFS/sources.

inside /lfs-sources directory:

    root[ /lfs-sources ]# cp * $LFS/sources

    where: cp - the copy command

After copying the files and patches:



CHAPTER 4 - Final preparations

According to the book, we will create a $LFS/tools directory. This directory
will contain the installed programs compiled in CHAPTER 5 to separate them from the programs compiled in CHAPTER 6. The programs compiled here are temporary tools only and will not be a part of the final LFS system.

as root:
   
    #mkdir -v $LFS/tools

then we create a /tools symlink on the host system that will point to the
$LFS/tools directory we just created

    #ln -sv $LFS/tools /


the command ln above creates a link between the two files. The target file is
$LFS/tools (/mnt/lfs/tools), with a link name that is the same as the target
file and is located at the / (root) directory. The -s means create a symbolic
(or soft) link. So from the command above a soft link with a name /tools is
created that is linked to the directory $LFS/tools (or /mnt/lfs/tools).

Then we add user/group both named lfs

    #groupadd lfs
    #useradd -s /bin/bash -g lfs -m -k /dev/null lfs

where:  -s /bin/bash  : makes bash the default shell for the user
                  -g lfs         : adds user to the group lfs
                      -m         : create a home directory for user lfs
             -k /dev/null    : the skeleton directory that contains the files and
                                     directories to be copied to the home directory.
                                     /dev/null contains nothing. The significance of -k
                                    option is that if it is not specified the default
                                    /etc/skel files and directories will be copied to the
                                    home directory.
                      lfs        : is the name of the user


then give lfs user a password

    #passwd lfs

grant user lfs ownership of $LFS/tools  and $LFS/sources directory

    #chown -v lfs $LFS/tools 
    #chown -v lfs $LFS/sources

then we login as user lfs

    #su - lfs

where:     su    :    switch user
                 -     :    start a login shell as opposed to only switch to user
               lfs    :    switch as user lfs

   
then we setup a clean working environment from which building the temporary lfs system is based.

while logged in as user create two startup files, .bash_profile and .bashrc, for the bash shell.

    lfs [~]$cat > ~/.bash_profile <<"EOF"
           exec env -i HOME=$HOME TERM=$TERM PS1=u:w$ bin/bash
           EOF

where:    exec env -i.. /bin/bash - 


means replace the shell with a new one with an empty environment except the variables HOME,TERM and PS1
   

    lfs [~]$ cat > ~/.bashrc << "EOF"
             set +h
             umask 022
             LFS=/mnt/lfs
             LC_ALL=POSIX
             path=/tools/bin;/bin;/usr/bin
             export LFS LC_ALL PATH
             EOF


then source the just created user profile:

    lfs [~]$ source ~/.bash_profile



next: CHAPTER 5

Go to link download

Read more »

Saturday, October 8, 2016

How to Protect Your Blog posts from Copying Blogger Trick

How to Protect Your Blog posts from Copying Blogger Trick


Stop copying blog content with css
Copying blog posts or articles from sites/blogs on internet is a usual thing.Here i am going to share you how to protect your blogger posts/articles form getting Stolen.This is a trick to lock your text and the visitors of your blog cant select the text only they can read the text. If they cracked that method and select the text there is another trick to disable right click menu,so they cant copy text.a lot of other tips and tricks like how to add more blogger widgets, add social book marking baar, add new sidebar, add facebook lik box , post google adse inside or below the post title , google adse between post,Horizontal manu bar for blogger, image slider for blogger.Please keep wathcing www.bloggingtrainings.blogspot.com flash for blogger templates, and a lot of other tricks for blogger users. 

Copy The Following CSS Codes To Your Blog

  •  Go to Blogger Dashboard
  • Select Template->Edit HTML click Proceed    [or Use Alternate Way to copy CSS code]
  • Find ]]></b:skin>
  • Copy the following code  and save

-moz-user-select:none;
-webkit-user-select:none;
-khtml-user-select:none;
-ms-user-select:none;
user-select:none;


Disable Right Click

  • Copy the following code inside <head>
<script src=http://netoopscodes.googlecode.com/svn/branches/Js files/disable right click.js type=text/javascript/>

Done!

A lot of other tips and tricks like how to add more blogger widgets, add social book marking baar, add new sidebar, add facebook lik box , post google adse inside or below the post title , google adse between post,Horizontal manu bar for blogger, image slider for blogger.Please keep wathcing www.bloggingtrainings.blogspot.com flash for blogger templates, and a lot of other tricks for blogger users.

Go to link download

Read more »

How To Restore Recover Deleted Files From Android Phone 2015

How To Restore Recover Deleted Files From Android Phone 2015


How To Restore/Recover Deleted Files From Android Phone
Android device become popular in market within few years because it provide amazing features at low cost as compared to iOS smartphones. Android devices have their own operating system based on Linux and Hardware independent. Everybody use Android phone because they provide features like fast internet, high quality camera, Large RAM size and increase storage. One reason of becoming Android devices popular is its large market called Google playstore which provide millions of Apps and games to install. Android devices also provide flexibility of work because of their latest Apps in each field. Android devices can store large amount of data. In Android devices we store our valuable data like contacts, messages, Apps data, personal data etc. The main issue about which we always worried is protection of data against accidental loss of data. As we already explain about How To Backup Contacts On Android Phone. Even Android phones provide backup of data but it is good to have double backup of data because some time one source is not available to provide backup of data in that case we can access the secondary backup of data. We also wrote about best Android backup and restore apps.
But sometimes we were not able to take backup of our data and by mistake we format or lost all the information, apps and other files stores in android phone. In that condition we should need to try our some best where to recover deleted android files. Which help in some condition but instead of not trying atleast we should try to recover data. So if you dont have any idea about how to backup or recover data files on android devices then i feel that this article helps you a lot so are we going to explain some best and different to recovery deleted files on android.


Best Methods To Take Backup Of Android Device Data.

1st Method:- Using Recovery Android - Data Recovery Machine for Android

Recovery Android one of the best company that provide various Android Apps and also help in recover Android deleted files. Data recovery App it provide for recovery is called Data Recovery Machine for Android. It is one of the popular PC application for recovery of Android device data.The main data recovery items are video, Message, images, contacts and other files.
Steps to recover deleted files.
Step 1. First of all download and install data recovery software apps provided by Recovery Android.
Step 2. Start USB debugging mode in Your Android device. You can start the debugging mode by go to settings->Application->Development. Now ensure that your phone is on the debugging mode.
android developer usb debugging
Step 3. Now connect your phone with the PC using USB cable and WiFi. Now open the software which you install in your PC.
Step 4. The software will automatically detect your phone and after detecting the phone you see a green start button , click on green start button.
7-data android recovery software
Step 5. After clicking the software start scanning your Android device. It will take some time which depend on the size of your Android device.
Step 6. Once the scanning is completed you will see a list of files with red mark. These files are deleted from your device. Then select the files which you want to recover. Now click on the recover button to restore the deleted files.
7-data android recovery software preview

2nd Method:-  Using Yodot Recovery Software

Yodot is one of the most popular company that develop software for recovery for PC and Android devices. Recovery From Android App is one the popular App for recovery from the Android deleted files. This app is installed on PC and recover the Android device connected with the PC. The provide easy to use interface for user. This Software also provide the preview function to view the deleted file data before recovery. The device is automatically detected after connecting it to PC.
Steps to Recover files
Step 1. Download and install the software into your computer by clicking the following button.
http://www.yodot.com/download/thank-you-for-downloading-yra.html
Step 2. Start USB debugging mode in Your Android device. You can start the debugging mode by go to settings-> Application-> Development. Now ensure that your phone is on the debugging mode.
android usb debugging option
Step 3. Now open the software to run it. After that select recovery option. Their are two types of recovery option one is recovery from deleted files and second is lost file recovery.
Yodot Recovery for android phone

Step 4. Your Phone is detected by the device automatically. Now select your device storage and click on the next button.
Yodot Recovery device storage android phone
Step 5. The software will scan your device and provide a list of files. These are are deleted or lost file in our device.
Step 6. Now select the files which you want to recover on your Android device. Now click on next button to start the recovery process. It take few minutes to recover that files.
Yodot Recovery android files restore

3rd Method:- Using Dumpster- Recycle Bin Android App.

Dumpster- Recycle Bin is one of the popular Android App for recovering the deleted files on our Android device. It is available on Google Playstore for free. With the help of this App you do not need to connect your Android device to computer. We can recover the deleted files in few clicks. You do not need to root your phone and this App can recover all common file types including Text, images, audio, video, pdf, zip, ppt, doc, Rar etc. Approximately 5,000,000 people install this App
Steps to recover files.
Step 1. Download and install the App in your Android device using the following button.
https://play.google.com/store/apps/details?id=com.baloota.dumpster&hl=en
Step 2. Open the App to see its operational screen. In the App click on the Refresh button at the top right corner of the App.
Dumpster- Recycle Bin Android App data restore
Step 3. After Refreshing it will give you the list of deleted files from your Android device.
Step 4. By long pressing the file you want to recover , you see a popup menu. In the menu click on preview button if you want to see inside the file or click on restore button if you want to restore the file.
Step 5. After clicking the restore button your file is recovered successfully.
Dumpster- Recycle Bin android loss data restore
So these are some best method to restore or recover deleted lost files from android mobile phones. If you know any of the and easiest way to recover deleted files on android. Dont forget to share it with us in below comments.

Go to link download

Read more »

Wednesday, September 14, 2016

How to Identify a Font Name from Image

How to Identify a Font Name from Image




Knowing the name of a font


Sometimes you may like a font which appears on a website or somewhere else as an image. And it would be very difficult for you to detect that font. And if that font is not installed on your system, then it will be more difficult. So, in this post Im gonna share a website that identifies font name - whatfontis.com



Background Story

You know the title font of markspcsolution.com is Monotype Corsiva. When I visit this site using my Android Phone, I see a different title font. Look at the image below - 


Marks PC Solution Heading Screenshot


The title font in the above image is not one that I used as a title font for my site. But it looks cool! Thats why I tried to know the name of this font.

I tried most of the fonts using MS Word to match it. But this font was not installed on my system. 

Later I took help from What Font is.



About What Font is

There are thousands of sites across the web which may help you identify the name of a font. But not all of them are good enough. Not all of them are reliable. Im recommending What Font is because I got the result quickly using this site. And its easy to use.

They have more than 300,000 fonts in their database!!



Font Identifying Process

  • First, youve to obtain the clear picture of your text. 

Marks PC Solution heading in Dancing Script Font

  • Ive used the above image to prepare this tutorial. 
  • Now follow this link - http://www.whatfontis.com
  • Hit on the Browse button > Choose your text image > If your text background is darker then mark the option Background Color is darker or leave it blank > Hit on the Continue button.

Uploading an image in What Font is

  • After hitting the Continue button, your text image will be divided into pieces according to characters. 
Identifying Characters from Image

  • Check every image and input character. Leave the box blank if there is more than one character in a image. Or if the character is not clear enough in the picture.
  • Hit on the Continue button. Then you will get a list of possible fonts that is matched/ related to your image. 


Pay Attention - 
  • Supported Image Formats: JPEG, GIF, PNG
  • Text image should be in a single line
  • Good quality image
  • Image size should be less than 2 MB
  • Text color and background color should be differentiable


Hope all of you will enjoy this post. If you face any trouble, please contact us . . .




Stay with Marks PC Solution to get more interesting IT topics!




Go to link download

Read more »

Tuesday, August 23, 2016

How To Extract apk File From Android Phone

How To Extract apk File From Android Phone


Best Ways To Extract .APK files On Android.



Method 1st:- Extract By Using APK Extractor

Android APK Extractor appApk Extractor is one the most popular Android Application which is Available on Google Play Store for free. This Application allow you to extract .apk file from installed App in any Android device. It also allow you take backup of any App and move it into SD card or another device like computer and Laptop and also allow you to upload into Google Drive. Approximately 5 Million install this App. After getting the .apk file you can share it with others. It is a easy to use and fast application which allow
  1. Extract all most all Applications include system Inbuilt application.
  2. NO device rooting of Android is needed.
  3. It provide search option to search different applications.
  4. It can extract multiple Apps files together.
  5. Compatible from Android version 2.2 to 5.0.

Steps To Extract .apk With APK Extractor 


1. Install Apk extractor into your Android device using the Button given below.
https://play.google.com/store/apps/details?id=com.ext.ui&hl=en
2. You can also download file manager to find the .apk file after extracting the file. By default the files are stored in /sdcard/ExtractedApks/.
3. Open the Apk extractor App on your device.
4. After launching the App you will see a list of installed Applications on your Android device.
Android APK Extractor app settings
5. Select the App whose .apk file you want to get.
6. You can also share the apk file tap and select the share option.
7. Tap the menu button-> then setting to change the path where you want to save .apk file.



Method 2nd:- Extract By Using ES File Explorer

Android ES File Explorer appEs file explorer is one the famous file manager available on Google play store for free. It not only manage the files but also perform various tasks like download manager, task killer, cloud storage client, file sharing etc. It is available in 30 different languages. It is compatible with all Android versions. It also provide built in support for text, images, audio, video, Rar and Zip files. It can act as file manager, App manager, task manager, Bluetooth file browsing and sharing, text and photo editor. One of its most important feature is extracting .apk file from installed Apps and provide backup and sharing facility also. Approximately 300 Million users install this App. It provide easy to use tools and attractive interface.

Steps To Extract .apk File Using ES File Explorer

1. Install and download the Es file Explorer into your device by clicking the following button.
 https://play.google.com/store/apps/details?id=com.estrongs.android.pop&hl=en
2. Open the and launch the App in your Android Device.
3. After Launching the App navigate to the tool menu.
4. In the tool menu select the application manager.
Android ES File Explorer app manager
5. In the application manager you will see a list of Apps installed in your device.
6. Select the App whose .apk file you want to get.
7. click on Backup and your .apk file will start extracting.
8. Browse the path where you want to save the file.

Go to link download

Read more »

Wednesday, August 17, 2016

My journey to building Linux From Scratch LFS system

My journey to building Linux From Scratch LFS system


This will be a series of posts since I will start building Linux From Scratch (LFS) system from scratch. I will follow the by-the-book instruction from start to finish until I built my own LFS system. As I go through this journey, I invite/encourage anyone reading or care to read this blog, to follow along with the journey. Together we will create our own Linux system not because we want to "change the world" or something but to feel and see what its like to have our own linux distro. I also encourage you to document everything that we will be doing as what I am doing right now for future references. We are going to build the system because I hope that you like me are curious about how things work. I dont promise anything as we build the system but the satisfaction of fulfilling our curiosity and educating ourselves in the process. So lets go on building our own Linux From Scratch (LFS) system.



Tools:
    LFS live CD - to be created as a bootable USB
 
(note: according to the website the live CD is not anymore supported and  is not compatible with LFS 7.0 or later. from the same website, it contains the LFS book with 6.3 version. So I downloaded the said version of the book so that I can follow along its instructions.)

The reason that I am going to use the live CD is that it will serve as the base system from which my own LFS is built. A base linux system is needed to create your own LFS as stated on the website. By using the live CD, I eliminate the need for using a base system. We are going to follow the instructions by-the-book in building the system. But we are not going to follow it blindly, were going to dissect the whys and the hows of the instructions to fully comprehend what is going on. If we are stuck on some instruction, were going to stop and take some time and continue
only if we truly comprehend what were doing. As I read somewhere, we have only 2 hrs of retention time of  continuous reading so we are not going to risk doing the next instruction without really comprehending the previous one. Thats the reason we are doing this in the first place, to educate ourselves. So come and join me on the ride. Now on to reading the first parts of the book.

According to the book, the prerequisites are knowledge of shell commands and knowledge of installing linux software, and others. The prerequisite section also provide some links for those who have no knowledge of the above since they are needed as a minimum prerequisite. For the host system requirements, it list the softwares and applications needed for the system to have. Since we are going to use the live CD we are not going to have to download all the applications since they are included in the CD as stated by the website. There is a script from the book which asks us to run to check if the above applications are present in the system. Since were going to use the live CD, we are not going to use that script or follow that instruction. But for the purposes of "getting our hands wet" here is the script in uncomplete form.

    $cat > version_check.sh << "EOF"
    #!/bin/bash
   
    bash --version | head -n1 | cut -d" " -f2-4
    .
    .
    .
    EOF

    bash version_check.sh


Explanation of the above command. The first command creates a file named version_check.sh and "EOF" signifies the end of the file if you type it at the last line. The #!/bin/bash indicates that it is a bash script. The command bash --version indicates that it will show the version of the bash command. The | means pipe the output to the command head. The head command means output the first parts of the file, the argument -n1 means output the first one line of that first part. The cut command means to remove sections of the line. The -d is the delimeter argument and -f means to select only these fields. So the command cut -d" " -f2-4 means cut the line starting from the second field up the fourth field(in this case words) with the space delimeter between them. The last command executes the script.



to be continued.....

Go to link download

Read more »

Tuesday, August 16, 2016

How to Install Windows from USB Disk

How to Install Windows from USB Disk




Install Windows from USB device



Today Im gonna share a very useful tip with you. In this post, you will learn - how to create a bootable USB disk (pen drive) for Windows/ Linux. And this is the easiest way to install Windows from USB disk. Earlier, I wrote about creating bootable Windows disk. 


If your PC doesnt have a DVD drive, or if your DVD drive is not functioning properly, you can use your pen drive to install Windows. And notebooks dont have DVD drive usually. To install Windows there, you must require a bootable pen drive. 



This post applies to:
  • Windows 7
  • Windows 8
  • Windows 8.1

I havent tested this technique for Windows XP. Maybe this will also work there. But Im not 100% sure about XP. 


In order to install Windows from USB Flash Drive, you need the following tools:
  • A USB Flash Drive/ Pen Drive (8 GB Recommended)
  • Windows ISO Image
  • Rufus - to create bootable USB disk

Step 1 - Get Windows ISO Image

Hopefully, all of you got an 8 GB pen drive. Now your task is to get an ISO image of your Windows. If you have a Windows Installation disk, you can prepare the ISO file using ISO Creator or by Infra Recorder. 


Step 2 - Create Bootable Disk

Now youve to create a bootable flash drive by Rufus. And then youre ready to install Windows from pen drive! Download Rufus from this link. Its just 616 KB. 

  1. Insert your pen drive. Back up the necessary files  of it (if any). And perform a quick format. 
  2. Run Rufus from your PC just by double click. 
  3. Device - Your pen drive, Partition Scheme - for BIOS and UEFI, File System - NTFS, Cluster Size - Default, Type your Windows Name in Volume > Choose Quick Format > Create a Bootable Disk using ISO Image > Hit on the CD icon and locate your ISO file > Select Extended Labels and Icon Files > Hit on the Start button to launch the operation.
  4. This may take a few minutes. Then you will get a confirmation message. Done! 

You can follow the image below:


Rufust - Creates bootable usb disk



Step 3 - Boot from USB Flash Drive

Restart your system. To access BIOS settings, you need to press F1 in case of Intel Mainboard. Gigabyte users will press Del key. And most other mainboards use F1 key to access to the BIOS utility. 

Now depending on your BIOS version, there could be different interface styles. But the basic option you need to find is - The Boot Priority or The Boot Order

To install the Windows from a USB disk, you need to select - Boot from USB Drive. Now Save and Exit from BIOS. Restart your PC. Now you will see the following message - 


Press any key to boot from USB...


Now press enter to start installing Windows from USB disk! If you face any problem, please leave a comment . . .




Wait a Minute!


When your PC copies files from the disk and restarts, the installation process may start again. If this happens to you, simply remove your pen drive and continue the installation process.




Stay with Marks PC Solution to get more interesting IT topics!



Go to link download

Read more »

Sunday, August 14, 2016

Birthday Wish from Google !!

Birthday Wish from Google !!




Google Celebrates Users Birthday


While Im turning into 27, I was thinking about what to write on my birthday. Cause I cant leave this day without writing a post on Marks PC. When I returned home from Office, I just opened Google home page to search something and noticed a doodle. Then I moved my mouse pointed over it and it was showing - 

Happy Birthday Abdur!


To be honest, I was really surprised. Because this is the first time Ive ever experienced birthday wish from Google. And I was more surprised when it comes in the form of doodle. 



Google Homepage with Birthday Wish



Most of you are familiar with Google doodles. They usually appear in Google homepage to celebrate different occasions. Such as World Cup, Christmas Day, Valentines Day etc. And if youre a Google Plus profile owner, Google will celebrate your birthday too!


Conditions

  • You must have a Gmail ID with Google Plus enabled.
  • Your date of birth must be there.
  • You must be signed into Google on your birthday.

If you meet the above conditions, then you will be wished by Google on your birthday. :)


Okay guys, no more writing today. I need to take rest now . . . 



Stay with Marks PC Solution to get more interesting IT topics!




Go to link download

Read more »