Remove proxy settings from apt? Try to edit your /etc/apt/apt.conf and change it to: Code: Acquire::http::Proxy “false”;
Category Archive: Linux
Apr 25
Mounting NTFS (Windows) drive automatically in Ubuntu
Add the following line in you /etc/fstab file /dev/sda5 /media/Data ntfs defaults,umask=007,gid=46,noatime 0 0
Jan 16
Handy Linux commands
Listing attached devices : sudo fdisk –l Listing All the bus info : sudo lshw -businfo Add path to $PATH in ~username/.cshrc : setenv PATH ${PATH}:<path_to_be_added> to know the disk usage : df -h Size of a directory including the subdirecotory du -ch | grep total Find number of files in a directory including sub-directories …