Xiaomi Mi4c Leaked To Come With Type-C USB port and Even More Internal Storage

It was earlier reported that Xiaomi Mi4c is going to carry a price of less than $250, which is a steal of a deal considering that you will get a smartphone running a Snapdragon 808 chipset in it.

Windows 10 for phones features revealed

Microsoft showed off a number of new features for Windows 10 on phones today, but in afternoon sessions at the company’s press event. Most of the demonstrations focused on improving the built-in apps and features of Windows Phone, and fixing a lot of the oddities. That includes mail, maps, photos, Skype, and messaging.

Windows 8 and Windows 7 would receive a free upgrade to Windows 10

Once the OS launches later this year, Microsoft announced that all users who are using- Windows 8 and Windows 7 would receive a free upgrade to Windows 10 . With the release of the January Technical Preview, Microsoft is testing one of those systems.

Windows 10 build 9926 installation process

If you are installing the Windows 10 build that was released today, you will notice that the installation screens have been slightly changed or updated since Windows 8 and even over 9879, to a small degree. Since we know you don't install Windows builds frequently, we snapped some screens while installing the OS that you can see at the bottom of the post.

Whatsapp launches the Web client

Today WhatsApp announced a web client that will enable users to use the world’s most popular mobile IM client on their PC and Macs. But this web Client works only in the Google Chrome browser.

Showing posts with label Linux. Show all posts
Showing posts with label Linux. Show all posts

Friday, 26 October 2012

Ubuntu: The Complete Introduction for Beginners


Ubuntu is linux based operating system with the origin in south africa. Its name means "humanity towards others". Back in 2004, Linux was already established as a server operating system, but free software was not yet a part of everyday life. Further, Linux was thought of as a complicated operating system which non-technical people could not use. It was at this time in 2004 that Ubuntu began as a Linux distribution aimed at ease of use. Mark Shuttleworth, the creator of the project, gathered a few developers and went on to create the most popular Linux distribution till date.

Sunday, 23 September 2012

FreeBSD add a user to group


You need to use pw command. The pw utility is a command-line based editor for the system user and group files, allowing the superuser an easy to use and standardized way of adding, modifying and removing users and groups. First login as the root using su or sudo command.
Task: Add existing user to group
You would like to add existing user tom to secondary group called ftpusers. Type the command as follows:
# pw usermod tom -G ftpusers

Thursday, 20 September 2012

Ubuntu Tip:How to Connect/disconnect VPN from the command line


This tutorial will explain How to Connect/disconnect VPN from the command line
If you want to interact with NetworkManager from the command line you can use the "nmcli" command.
You can list all NM connections using the following command
nmcli con
You can start connection (wifi, vpn, etc) using the following command
nmcli con up id ConnectionName

Understanding /etc/shadow file used under Linux or UNIX


/etc/shadow file stores actual password in encrypted format for user's account with additional
properties related to user password i.e. it stores secure user account information. All fields are
separated by a colon (:) symbol. It contains one entry per line for each user listed in /etc/passwd
file Generally, shadow file entry looks as follows (click to enlarge image):
/etc/shadow file fields
1. User name : It is your login name
2. Password: It your encrypted password. The password should be minimum 6-8 characters long including special characters/digits

Wednesday, 19 September 2012

How To: UNIX Add A User To A Group




Q. How do I add a user to a group under Sun Solaris UNIX operating system from a shell
prompt or command line?

A.. You can useadd command to administer a new user login on the UNIX system. Solaris UNIX
/ HP-UX UNIX uses /etc/passwd, /etc/shadow and /etc/group files to store user information.

Following information is compatible with the Solaris, AIX and HP-UX UNIX operating systems.

Sunday, 16 September 2012

Linux setup shared directory


Sharing a directory among users in same group is one of the essential tasks. You need to use chmod command and add user to appropriate group. To make idea clear here is an scenario:

  • /home/myproj : is shared directory
  • usr1, usr2, ... usrN : would like to work and share files in /home/myproj directory
  • padmin : Main project administrator user