Latest Entries
How To

Configuring proxy settings in Ubuntu

To configure proxy settings in Ubuntu, we need to change the apt.conf file. Open the terminal and go to the root folder. cd /etc/apt cd gedit apt.conf When the configure file opens make the changes according to the requirement. For no proxy:  Acquire::http::proxy “false”; Without username and password: Acquire::http::proxy “http://proxyserver:port/”; Acquire::ftp::proxy “ftp://proxyserver:port/”; Acquire::https::proxy “https://proxyserver:port/”; With … Continue reading »

How To

Making a boot-able Pendrive

Thanks to Startup Disk Creator in Ubuntu, which makes it so easy to create a boot-able pen-drive but when it comes to Windows it’s not that straight forward. There a couple of softwares like Makebootable, UNetbootin but the Command prompt is the most convenient if only you remember the command. For me it has always been … Continue reading »