Showing posts with label make. Show all posts
Showing posts with label make. Show all posts

Tuesday, December 13, 2016

Make A Bootable Windows 10 USB Install Stick On Linux With WinUSB Fork

Make A Bootable Windows 10 USB Install Stick On Linux With WinUSB Fork


WinUSB is a tool that can be used to create a bootable USB Windows installer from an ISO or a DVD, either using a GUI or from the command line.

The application looks pretty much abandoned, with the latest release dating back to 2013 however, GitHub user slacka forked it, fixed most of its bugs, and updated it to support both wxWidgets 2 and 3.


A few months ago I tried using the original WinUSB to create a bootable Windows 10 pendrive, but it failed. Im not sure if thats because of the changes in Windows 10, in Ubuntu (which I used to create the USB) or both, but using slackas WinUSB fork worked, although I did encounter a small issue (see below).

I tested slackas WinUSB fork to create a bootable Windows 10 USB on Ubuntu 16.04, and while using the GUI, I got an error (already reported) near the end of the process. However, I was still able to use the resulted bootable USB to install Windows 10:



The error doesnt occur when creating a Windows USB stick using WinUSB from the command line.

I should add that I only tested the WinUSB fork with Windows 10 on Ubuntu 16.04, but it should work with Windows 7 and Windows 8 / 8.1 (and older Ubuntu versions) as well. Also, I performed the Windows 10 installation in VirtualBox, and not on real hardware.

If you want to test the bootable Windows USB youve created using WinUSB, before installing it on real hardware, you can use VirtualBox. To be able to boot from USB in VirtualBox, see THIS AskUbuntu answer (make sure your username is added to the "vboxusers" and "disk" groups, or it wont work - youll find the commands to do this in the AskUbuntu link above, under "EDIT").


Install WinUSB fork in Ubuntu or Linux Mint


I uploaded slackas WinUSB fork to the main WebUpd8 PPA, to make it easier to install in Ubuntu (16.04, 15.10, 15.04 and 14.04 or Linux Mint (17.x or 18) and derivatives. To add the PPA and install WinUSB, use the following commands:
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
sudo apt install winusb
If you dont want to add the PPA, you can grab the deb from HERE.

Arch Linux users can install slackas WinUSB fork via AUR.

For other Linux distributions, download it from GitHub.

The original WinUSB is also available in a PPA (provides packages up to Ubuntu 14.10 only!).


Create a bootable Windows 10 USB install stick using WinUSB


A. Create a bootable Windows USB install stick using the WinUSB GUI

Simply launch WinUSB from the menu / Dash, select the Windows 10 (again, it probably also works with Windows 7 and 8 / 8.1) ISO or DVD,, then select the USB drive under "Target device" and click "Install". 

Remember that you may encounter THIS issue while using the GUI (however, in my test, the bootable Windows 10 USB worked despite of that).

B. Create a bootable Windows USB install stick from the command line using WinUSB

If you want to create a bootable Windows USB from the command line, you must first determine what the USB physical drive is. You can easily find this out from the WinUSB GUI (youll find it under "Target device" - in my case its "/dev/sdc"). You can also find the device using GNOME Disks, or from the command line, using "lsblk" and so on.

Important: make sure you use the correct USB device because it will be formatted!

Once you know the device and the path to the ISO, to create a bootable Windows USB stick from the command line, use:
sudo winusb --format </path/to/windows.iso> <device>
Heres an example:
sudo winusb --format /home/andrei/Downloads/win10.iso /dev/sdc


Available link for download

Read more »

Thursday, October 27, 2016

Make a simple Calculator Using Notepad

Make a simple Calculator Using Notepad


Hi guys ...TODAY I will  show you how to make a simple calculator using note pad.Obviously its not a full featured calculator..but you can use it for fun,you know it always feels good to use your own applications... :D


So, Let’s Begin......


Step1


Open Notepad and type the following code

 @echo off


title Batch Calculator by NAME


color 0A


:top


                    echo --------------------------------------


                    echo -Welcome to Batch Calculator by Shankha Jana


                    echo --------------------------------------

echo Use the Following Operators for calculation

echo * = MULTIPLY

echo + = ADD

echo - = SUBTRACT


echo / = DIVIDE

echo Enter your Equation


echo.



set /p sum=


set /a ans=%sum%


echo.


echo = %ans%


echo --------------------------------------------------------------


pause


cls


echo Previous Answer: %ans%


goto top


pause


exit


Step2


Replace the NAME in the code with your name.


Step3


Go to File and click on save as.Give the file name Calculator and give the

Extension .vbs


Step 4


A dialog box will appear with a msg like the following picture given below.


Click on yes. A file named Calculator.vbs will be created.


Step 5

 You’re done! Double click it to open & Enjoy!!



I have created this calculatorapplication in executable format.. if you want, You can download it from Here- > - > 






Enjoy this funny calculator...& for more tricks keep visiting this blog...:)

REGARDS
Shankha Jana


Available link for download

Read more »

Monday, October 3, 2016

Make Your Own Corby 2 Theme

Make Your Own Corby 2 Theme


Photo Courtesy : http://donna-tell-oh.blogspot.com/
Themes beautify our phones, so we become very particular in choosing the best theme which satisfies our needs. Ever wonder how these themes are made? Samsung Theme Designer is a free software that you can use in making your own theme. According to theme makers, making themes is fun and easy but you must be patient enough to complete these themes. Learning how to develop your own theme will give you lots of advantage. If you want to surprise your girlfriend/boyfriend, then you could
probably make her/his face as your icons. 

Read Tutorial here: donna-tell-oh

Donnna-Tell-ohs blog author is a professional Samsung GTS3850 ( Corby 2 ) Theme maker. With a great passion in blogging and designing, she originally made those themes available in her blog.

Donna-Tell-oh Facebook Fanpage: https://www.facebook.com/donnathemes 

Donna-Tell-oh Tumblr Account: http://donnathemes.tumblr.com/ 

Credits to: http://donna-tell-oh.blogspot.com/


Using Samsung Theme Designer, you can make lots of themes in any supported Samsung mobile phone. 


Available link for download

Read more »