- Change permission of the file to make it executable:
chmod a+x VMware-Player-6.0.3-1895310.x86_64.bundle - Install the file using sudo.
sudo ./VMware-Player-6.0.3-1895310.x86_64.bundle
This blog helps you solve many of your computer problems. If you do not see your PC problem discussed, please see the item "How to Post my PC problem in this blog?" Please vote or leave a comment if you have any questions on any blog item.
Dell PowerEdge R710 no VGA display but iDRAC works fine
iDRAC virtual console failed with Connection failed issues
In many situations, you may not have control on the DNS server to add address record and you may need to make the FQDN work instead of IP address. In Windows, you just update the host file. Here is how you update in Linux/Ubuntu.
>sudo -i
Enter the password
# vi /etc/hosts
Add the following replacing the values you need
Save the file
restart network service
#/etc/init.d/networking restart
At this point, you should be able to ping the IP address with FQDN you configured. This only applies to the machine where you changed the hosts file.
Fix:
sudo apt install libsigc++-2.0-0v5
sudo ln -s /usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0.1400.0 /usr/lib/x86_64-linux-gnu/libgstreamer-0.10.so.0
sudo ln -s /usr/lib/x86_64-linux-gnu/libgstapp-1.0.so.0 /usr/lib/x86_64-linux-gnu/libgstapp-0.10.so.0
sudo ln -s /usr/lib/x86_64-linux-gnu/libgstbase-1.0.so.0.1400.0 /usr/lib/x86_64-linux-gnu/libgstbase-0.10.so.0
Courtesy: https://www.werts.nl/vmware-view-horizon-client-for-linux-on-ubuntu-18-04-failed/
root@siva-OptiPlex-780:~# vmware-installer --uninstall-product vmware-view
vmware-view is not an installed product.
Available products are:
vmware-horizon-client
root@siva-OptiPlex-780:~# vmware-installer --uninstall-product vmware-horizon-client
All installation information is about to be removed. Do you wish to
keep your installation configuration file? [yes]: n
Uninstalling VMware Installer
Deconfiguring...
[######################################################################] 100%
Uninstallation was successful.
root login is not working in Ubuntu
BSOD on XP Reinstall
Digital Library of India Books download script
Introduction - Digital Library - Online Books - Part1
How to download books from it - Digital Library - Online Books - Part2
How to convert them to PDF: Digital Library - Online Books - Part3
Save the following script (copy and paste) into a text file. Rename text file to .vbs file. Once you do that it may prompt a warning, do not worry, select Yes to change the file extension. Either if you do not see the warning or the file icon do not change, you may have to make sure to turn off "Hide extensions of known files" in Windows Explorer.
- Open Windows Explorer
- You may not see the menu if you ar using Windows 7 by default. Just press ALT+T then you will see the menu
- Go to "Folder Options"
- You will see "General" Tab. Click on the next Yab, that is "View" and uncheck "Hide extensions for known file types" and them click OK.
- Then you should be able to rename the file as filename.vbs instead of filename.vbs.txt.
'Script Starts here.
'Change History:
'Skip the pages already downloaded - 29 Nov 2012
'Download previous book if not downloaded all pages-08 Dec 2012.
Set ObjFSO = CreateObject("Scripting.FileSystemObject")
Set oXMLHTTP = CreateObject("MSXML2.XMLHTTP.3.0")
J=1
Set ObjBookList = ObjFSO.OpenTextFile("BookList.txt",1)
i=0
Do until ObjBookList.AtEndofStream
eachLine = ObjBookList.ReadLine
Loop
ObjBookList.Close
LastLineArr = Split(eachline,",")
BookTitle = LastLineArr(0)
LastPageNumber = LastLineArr(1)
FirstPageLink = LastLineArr(2)
checkWithUser = Msgbox("Check if the follwing details are correct." & vbtab & vbcrlf & vbcrlf & _
"Book Title:" & vbtab & BookTitle & vbCrLf & _
"Last Page Number:" & vbtab & LastPageNumber & vbCrLf & _
"First Page URL/Link:" & vbtab & FirstPageLink & vbcrlf & vbcrlf & _
"Do you want to continue?" & vbCrLf & "If any of the details are not correct, download as a new book.",vbYesNo,"Check the details")
If checkWithUser<>6 then
Msgbox "You selected not to continue, exiting the script!!",vbcritical,"Exit Book Download"
Wscript.Quit
End If
Else
BookTitle = Replace(InputBox("Please enter the title of the book.","Book Title to download","Mitra Labham")," ","_")
LastPageNumber = Cint(Inputbox("Please enter the last page number.","Last Page","235"))
FirstPageLink = Inputbox("Enter the first page link","Enter Link","http://www.dli.gov.in/data/upload/0001/770/PTIFF/00000001.tif")
End if
WriteToLog("====================================================================================================")
ObjBookList.Close
If Len(J)=1 then J= "00" & J
GetThisPage = Normalized_Link & J & ".tif"
If ObjFSO.FileExists(BookTitle & "\" & BookTitle & "_" & J & ".tif") then
WriteToLog("Already downloaded in previous attempt - " & BookTitle & "\" & BookTitle & "_" & J & ".tif")
Else
Call GetWebPage(GetThisPage,BookTitle,J)
If ObjFSO.FileExists(BookTitle & "\" & BookTitle & "_" & J & ".tif") then
WriteToLog("Successfully downloaded - " & BookTitle & "\" & BookTitle & "_" & J & ".tif")
Else
WriteToLog("Downloading failed for - " & BookTitle & "\" & BookTitle & "_" & J & ".tif")
End if
End if
Next
WriteToLog("Completed downloading the book - " & BookTitle)
WriteToLog("This book is found in the location - " & ObjFSO.GetParentFolderName(WScript.ScriptFullName) & "\" & BookTitle)
'oXMLHTTP.Open "GET", "http://www.new.dli.ernet.in/data/upload/0002/001/PTIFF/00000" & pageNum & ".tif", False
'oXMLHTTP.Open "GET", "http://www.dli.gov.in/data_copy/upload/0070/506/PTIFF/00000" & pageNum & ".tif", False
If oXMLHTTP.Status = 200 Then
Set oStream = CreateObject("ADODB.Stream")
oStream.Open
oStream.Type = 1
oStream.Write oXMLHTTP.responseBody
oStream.SaveToFile BookTitle & "\" & BookTitle & "_" & pageNum & ".tif"
oStream.Close
Else
Msgbox "This web page is not found",vbCritical,"Invalid Link"
Wscript.Quit 101
End If
End Function
Function WriteToLog(str)
Set ObjOutPutLogFile = ObjFSO.OpenTextFile("BookDownloadLog.txt",8,true)
ObjOutPutLogFile.WriteLine Now & vbtab & str
ObjOutPutLogFile.Close
End Function
Rechargable Battery Story - You are using it everyday
When so called rechargable batteries are charged, most reversible chemical reaction takes place and a minute portion of irreversible chemical reaction also happens. If a battery is rechargable 1000 times, the lost efficiency is 1/1000 time and this happens during every cycle. That is how they will be become unusable after several months or few years or several cycles of charge/recharge.
Some people return the Cordless phone back to the base station after using it every time. Some others plug in the cell phone or the Digital camera or the MP3/iPod every night to top up to the maximum level and feel so happy to see all bars after full charge. This gives an impression that it keeps full charge and you can use it to get most talk time. This is completely wrong!
Here is why !!!!
As we discussed above, there is little loss every time you charge and discharge, this loss happens usually at the one side/end of the electrode. In a complete charge/re-charge cycle, this happens uniformly and the battery gives long life with less number of complete cycles instead of shorter number of too many cycles. So you should always let the charge happens to the full level and let it dry out to 80 or 90% of it instead of recharging it after using it for 10 or 20%.
So is it good to let it discharge/use completely and and then re-charge from 0% to 100%? This is also not correct. Some times deep discharge may kill the battery and and you may not be able to charge again. So it is always best to charge it while it still has 10-20% of charge. If you have 5 bars in your battery indicator, you should charge so soon as you see it is having the last bar.
@ X PM in the night you are thinking before you are to bed: Tomorrow I have a 2 hour conference call and I see my battery is showing half of its charge and it may not last for 2 hours, shall I charge or not?
It is OK to charge occassionally to skip a complete charge-recharge cycle and do a top-off as long as it do not become a habit.
Printer or Printer Cartridge buying FAQs....
Answer: No! Don't buy it. Bargain to see if you get a discount of the printer cost for the laptop.
Question: I see a deal for a cheap printer. I can't imagine I get a printer for so low price. Shall I buy it?
Answer: No! They make you buy those expensive cartridges so frequently which may be the double the cost of that printer in a month and every few months after that.
Question: I see an All-in-one for $1$$. Shall I buy it?
Answer: Probably yes. Why? See the explnation at the end of this article.
Question: I see refill kits for many printer cartridges. Are they good? May I buy?
Answer: Some are good and some don't work after you refill. So how would I know to buy the refill kit or not?
Question: I bought a printer an year back. I remember, it was printing well for several days after I bought it. Now it is not printing. what shoudl I do? Shall I refill the cartridge?
Answer: No! Toss that cartridge and buy a new cartridge. If the cartridge is expensive than the printer, toss the printer and buy a better printer.
Question: I do not print color in my printer to save refill costs. But I surprise to learn today that my printer do not print in color anymore. I hardly printed in color since I refilled it.
Answer: If you remember, when you loaded the cartridge for the first time, it came in an air tight container. probably you might also remember to remove a plastic tab from the cartridge before loading in the printer. Most cartridges do not last more than 4 months whether you use them or not. If your printer is a simple inkjet printer, the cartridge has a sponge in it, which keep in the ink holding. As the cartridge is not in air-tight condition anymore once you load it, water slowly evaporates and leaving the cartridge dried out after several months. This is the reason, we should keep using color also as required. This is not applicable if you empty a cartridge very frequently like every month or so.
Question: Which printer I should buy?
Solution: Before you buy the selected printer, see what cartridges it needs? How much they cost? If they are more than a few dollars a months, (ex: $3 or $4 a month) on an average, then don't buy them.
Question: Which printer should I buy? InkJet or Laser?
Answer: Do yo you it for home/school/personal needs? Buy an inkjet printer. Do you also do lot of College Project work or have Home Office? Then buy an Inkjet Printer and also a cheap Laser printer. Again, see how much that Laser cartridge costs you and is it available easily in the local stores, before you buy.
Answer: I suggest you to buy an All-in-one, though it is bulky. It comes with scanner, fax, copier, printer functionality. As you have all of them, you save place and their cartridges are relatively cheap and last for long time then simple inkjet printers.
Answer: Printing at home is not economical and you do not get Photo Lab printing results. So I don't suggest to Print a lot of pictures at home. Occasional printing is OK. Any printer can print with a reasonable print quality.
Laptop Battery may be completely dead if you do like this...
Can't click on Desktop Icons OR Can't run applications from Desktop Icons.
How to Post my PC problem in this blog?
Solution: Fortunately, many PC problems are common to many of us. So we do not need to re-invent the wheels. Check if your problem is already discussed in this blog. If so, just click that link to get the solution. If you have a question related to the same blog (question), click the current blog and post your question in the comments section.
If you do not see your PC problem is already discussed, just add your problems in this post by clicking comments link just below this line. When you blog a comment in this blog site I will get an automatic mail. I will try to answer as soon as possible.
Automating Defrag Task
How to defrag the drives?
How to setup Page File?
Clean up the system today!
Free Anti-Virus Software
Why Computers slow down?
Spyware Problems
Toshiba Laptop Heating/Sudden Shutdown Problems....
How can I get free Office Software?
Are there any free HTML Editors?
Talk to your family on the other side of the globe for free as long as you want.
Grand Central - Many Free Phone services......
Not able to open a specific website that was used to open in the past.
What is the best way to determine if a software has Adware/Spyware in that?
Adware, Spyware, now "Scare"ware!
Photoshop like free software
Cool Tools
Cool Tools
Recover Files 2: Some times we do a shift delete a file/folder and struggle a lot how to get it back? There are many utilities with limitations to recover, but this files recovery utility is fully functional with no limitations. Download
Gizmo Drive: Now a days many applications, games, movies, are available for download in the CD/DVD ISO format (.iso files). We often burn those ones to CD/DVD using the CD/DVD burning software we have, of feel left out if we do not have one. Many times it is difficult to handle the CD/DVDs with kids as all they care about playing not how to handle them. This software will let you mount CD/DVD ISO images as a drive in windows explorer and you can keep your CD/DVD in its orinigal jewel case for future need. Mirror link from Download.com. Do you have an immediate question how to convert your CDs/DVDs to ISO images? This also supports this and yet there is another tool. See WinImage utility in this section. - Free
WinImage: Winimage is used to make the ISO images of CD/DVD or VFD/IMZ of Floppies. Clikc the link What is WinImage to know more about it Dowload WinImage. - Free
Defrag Utility: There is a better and fast Defrag Utility that defrags the drives quickly than Windows Deffrag Utility. Download Auslogics Disk Defrag. - Free
HiJackThis - Tells what programs are running at a particular instance. Good to trace spyware www.trendsecure.com/portal/en-US/threat_analytics/hijackthis.php - Free
DVDFlick - Often we have many video files of different formats, but we like to watch them on TV instead of Computer screen. But most of the times we are out of luck as many formats are playable in most DVD Players. This software turns many video files into DVD Playable format. http://www.dvdflick.net/ - Free
Folder Size- We know how to see the file size in Explorer view. But we can not see the Folder size in the Explorer view like files. This tool helps to view Folder size. www.rotebetasoftware.net/wp/freeware/folder-size - Free
GParted - Windows OS do not allow to resize the partitions once the Drives are assigned. This Linux Utility can do that job. Use it carefully. A full bakcup is suggested before you use this Partition tool. http://gparted.sourceforge.net/ - Free
File Unlocker - helps in deleting locked files - www. ccollomb.free.fr/unlocker
DriverMax - This utility helps to take a back up of all hardware drivers present in your machine. You will never need to search for the software again. It also helps to find how latest your drivers are and what version is currently installed. Click the link to download. Click the link to see how it looks (screen shots). Click the link to go to home page of the vendor.
