Micromax YUREKA : Technical Specifications


Here are the official specifications of the Micromax Yureka phone :

  • Qualcomm Snapdragon 615 Cortex A-53 64bit SOC ARMv8 clocked at 1.5GHz Octacore and Adreno 405 GPU.
  • Full 4G LTE CAT4 Support.
  • Cyanogen OS 11
  • 5.5 inch HD IPS Display With Corning Gorilla Glass 3.
  • 13MP shooter with Sony EXMOR sensor with f/2.2 aperture with a blue filter.
  • 5MP front facing selfie camera.
  • 1080p at 30fps and 720p at 60fps video recording with 120fps coming soon.
  • 16GB Internal with 2GB RAM.
  • Expandable storage.
  • 2500 mAh Li Po battery.
  • Dual SIM
  • Warranty will still be there if u root ur YUREKA.
Yu Yureka smartphone has a 5.5-inch(in 1280X720p resolution) which is protected by Gorilla Glass Display and it is powered by Snapdragon 615 CPU with Adreno 405 GPU. Yureka comes with a 13-Megapixel Rear camera and 5-Megapixel front. The device has 2GB of RAM with 2500mAh battery. The device has 16GB internal storage and extended upto 32GB via microSD card slot. Most amazing feature in this device is that it has "Cyanogen OS".

If you have any queries related to any of our post , you can comment below or contact us here.
For more , follow us on Facebook , Twitter and G+.

Google shutting down Gtalk on February 16

Within two weeks from now, you’ll have to switch from Google’s Gtalk messenger platform to its all new Chat facility “Hangout”. Millions of users have been using the Google talk for a long time and they’ve become so comfortable with it that no one has ever thought of moving away from Google Talk. So, Google has decided to force users by shutting down Gtalk forever.


Hangout is the future for Google and hence taking down Gtalk is the most logical thing that Google can do. Signs of Gtalk going down was confirmed when Google decided to cut support (security and version) for the desktop application bringing its end closer to the reality. As highlighted by Google the ‘IM service will be wholly replaced by the Hangouts app soon, which can be used only via its Chrome web browser.




Gtalk will breathe its last on February 16 and will leave us! Like all good things, Gtalk will also become history (just like how Orkut and few social website have been). . WhatsApp has now moved to PCs as well and its going more viral around the world ,which has made Gtalk all the more redundant (not many would agree to that), so with Hangout, Google wants to make instant messaging; interactive and visual appealing experience.


For any query Comment below or Contact us.

Basic Linux Commands


mkdir – make directories
Usage: mkdir [OPTION] DIRECTORY…
eg. mkdir lhn

ls – list directory contents
Usage: ls [OPTION]… [FILE]…
eg. ls, ls ­l, ls lhn

cd – changes directories
Usage: cd [DIRECTORY]
eg. cd lhn

pwd ­- print name of current working directory
Usage: pwd

vim – Vi Improved, a programmers text editor
Usage: vim [OPTION] [file]…
eg. vim lhn.txt

cp – copy files and directories
Usage: cp [OPTION]… SOURCE DEST
eg. cp sample.txt sample_copy.txt

cp sample_copy.txt target_dir
mv – move (rename) files
Usage: mv [OPTION]… SOURCE DEST
eg. mv source.txt target_dir

mv old.txt new.txt
rm ­ remove files or directories
Usage: rm [OPTION]… FILE…
eg. rm file1.txt , rm ­rf some_dir

find – search for files in a directory hierarchy
Usage: find [OPTION] [path] [pattern]
eg. find file1.txt, find ­name file1.txt
history – prints recently used commands

Usage: history
cat – concatenate files and print on the standard output
Usage: cat [OPTION] [FILE]…
eg. cat file1.txt file2.txt
cat ­n file1.txt

echo – display a line of text
Usage: echo [OPTION] [string] …
eg. echo I love India

echo $HOME
grep ­- print lines matching a pattern
Usage: grep [OPTION] PATTERN [FILE]…
eg. grep ­i apple sample.txt

wc ­- print the number of newlines, words, and bytes in files
Usage: wc [OPTION]… [FILE]…
eg. wc file1.txt

wc ­L file1.txt
sort – sort lines of text files
Usage: sort [OPTION]… [FILE]…
eg. sort file1.txt

sort ­r file1.txt
tar – to archive a file
Usage: tar [OPTION] DEST SOURCE
eg. tar ­cvf /home/archive.tar /home/original

tar ­xvf /home/archive.tar
kill – to kill a process(using signal mechanism)
Usage: kill [OPTION] pid
eg. kill ­9 2275

ps – report a snapshot of the current processes
Usage: ps [OPTION]
eg. ps, ps ­el

who – show who is logged on
Usage: who [OPTION]
eg. who , who ­b , who ­q

passwd – update a user’s authentication tokens(s)
Usage: passwd [OPTION]
eg. passwd

su – change user ID or become super­user
Usage: su [OPTION] [LOGIN]
eg. su remo, su

chown – change file owner and group
Usage: chown [OPTION]… OWNER[:[GROUP]] FILE…
eg. chown remo myfile.txt

chmod – change file access permissions
Usage: chmod [OPTION] [MODE] [FILE]
eg. chmod 744 calculate.sh

zip – package and compress (archive) files
Usage: zip [OPTION] DEST SOURSE

eg. zip original.zip original
unzip – list, test and extract compressed files in a ZIP archive
Usage: unzip filename
eg. unzip original.zi

ssh – SSH client (remote login program)
“ssh is a program for logging into a remote machine and for
executing commands on a remote machine”
Usage: ssh [options] [user]@hostname
eg. ssh ­X guest@10.105.11.20

scp – secure copy (remote file copy program)
“scp copies files between hosts on a network”
Usage: scp [options] [[user]@host1:file1] [[user]@host2:file2]
eg. scp file1.txt guest@10.105.11.20:~/Desktop/

fdisk – partition manipulator
eg. sudo fdisk ­l

mount – mount a file system
Usage: mount ­t type device dir
eg. mount /dev/sda5 /media/target

umount – unmount file systems
Usage: umount [OPTIONS] dir | device…
eg. umount /media/target

du – estimate file space usage
Usage: du [OPTION]… [FILE]…
eg. du

df – report filesystem disk space usage
Usage: df [OPTION]… [FILE]…
eg. df

quota – display disk usage and limits
Usage: quota [OPTION]
eg. quota ­v

reboot – reboot the system
Usage: reboot [OPTION]
eg. reboot

poweroff – power off the system
Usage: poweroff [OPTION]
eg. poweroff

kate – KDE Advanced Text Editor
Usage: kate [options][file(s)]
eg. kate file1.txt file2.txt

vim – Vi Improved, a programmers text editor
Usage: vim [OPTION] [file]…
eg. vi hello.c

gedit ­ A text Editor. Used to create and edit files.
Usage: gedit [OPTION] [FILE]…
eg. gedit

bg – make a foreground process to run in background
Usage: type ‘ctrl+z’ and then ‘bg ‘
fg – to make background process as foreground process
Usage: fg [jobid]
jobs – displays the names and ids of background jobs
Usage: jobs
sed ­ stream editor for filtering and transforming text
Usage: sed [OPTION] [input­file]…
eg. sed ‘s/love/hate/g’ loveletter.txt

awk ­ pattern scanning and processing language
eg. awk ­F: ‘{ print $1 }’ sample_awk.txt

find ­ search for files in a directory hierarchy
Usage: find [OPTION] [path] [pattern]
eg. find ­name file1.txt

locate – find or locate a file
Usage: locate [OPTION]… FILE…
eg. locate file1.txt


If you have any queries, feel free to ask in comments or contact us here.
For more, follow Hackersfall on Facebook , Twitter and G+.

WhatsApp starts rolling out voice calling feature


Finally the most popular messaging service Whatsapp is all set to launch a new feature of voice calling. It seems that WhatsApp has started to roll out its much-awaited voice calling feature to users. While there is no official word on the availability of the free voice calling feature on WhatsApp from the company.

WhatsApp has reportedly introduced its new voice calling feature in India. According to online reports, the voice calling feature is available on invite-only basis. However, WhatsApp has not released this officially and it seems the new feature is still being tested. With this users can make calls for free to their WhatsApp contacts. 

If reports are to be believed, the voice calling feature is included in WhatsApp's 2.11.508 version, which has not yet made its way to Google's Play Store. The upgraded version, however, can be downloaded and installed on your phone from the company's website.

For more news , follow us on Facebook , Twitter and G+.
For any query contact us on our contact us page.
Powered by Blogger.

Follow Us On Twitter

Contact Form

Name

Email *

Message *

 

© 2013 HackersFall. All rights resevered. Designed by Templateism

Back To Top