mount a Windows share with Samba on Ubuntu
mount -t smbfs //10.1.1.99/folder /mnt/mymount -o lfs,username=administrator,password=xxxxxx
the parameter lfs is to disable Samba's 2G filesize limit, so you can copy huge files over as well.
mount -t smbfs //10.1.1.99/folder /mnt/mymount -o lfs,username=administrator,password=xxxxxx
the parameter lfs is to disable Samba's 2G filesize limit, so you can copy huge files over as well.
apt-get install jfsutils
fsck.jfs -a -f /dev/sda2 -j /dev/sda2
wget -c http://the-failed-download-s.url
balint@s-xxx:~$ locale
LANG=en_US.UTF-8
LC_CTYPE="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_PAPER="en_US.UTF-8"
LC_NAME="en_US.UTF-8"
LC_ADDRESS="en_US.UTF-8"
LC_TELEPHONE="en_US.UTF-8"
LC_MEASUREMENT="en_US.UTF-8"
LC_IDENTIFICATION="en_US.UTF-8"
LC_ALL=
All we need to do is to remove the '.UTF-8' from all listings, by inserting the following lines into our .bashrc (or the configuration file of the shell we use):
export LANG=en_US
export LC_ALL=en_US
auto lo eth0 eth1
iface lo inet loopback
First uncomment the DHCP, if it was active for eth0:
# The primary network interface
#auto eth0
#iface eth0 inet dhcp
Now you can enter the fixed values for eth0:
#custom
iface eth0 inet static
address 10.1.1.233
netmask 255.255.255.0
network 10.1.1.0
broadcast 10.1.1.255
gateway 10.1.1.254
If you have more interfaces, type all in as abowe.
iface eth1 inet static
address 80.xx.xx.xx
netmask 255.255.255.0
broadcast 80.xx.xx.254
network 80.xx.xx.0