Search found 5 matches
- Thu Feb 23, 2017 8:19 pm
- Forum: Linux
- Topic: ext4 disk 4TB not mounting
- Replies: 1
- Views: 24624
ext4 disk 4TB not mounting
Hi, i have a 4TB in a PC with 1 big partition. It was created with parted as 1 big partition. However the PC fell without power and crashed, and now the disk is not mounting. I checked the disk with sudo e2fsck /dev/sdc1 and I don't have any errors. I get the following error: mount -t ext4 /dev/sdc ...
- Wed Dec 21, 2016 8:39 pm
- Forum: Linux
- Topic: RaspberryPi automatic connect to hidden wireless network
- Replies: 2
- Views: 27356
RaspberryPi automatic connect to hidden wireless network
Hello,
I want to setup my RaspberryPi so it can connect
automatically to a hidden wireless network.
Anyone know how to do this?
I want to setup my RaspberryPi so it can connect
automatically to a hidden wireless network.
Anyone know how to do this?
- Fri Dec 02, 2016 6:40 pm
- Forum: Linux
- Topic: SOLVED: Port forwarding doesn't work
- Replies: 2
- Views: 26691
SOLVED: Port forwarding doesn't work
Hi, I setup a linux router, it has nat-gateway and is working perfectly. Except the port forwarding from the internet to the local network. I think i did everything ok. echo 1 > /proc/sys/net/ipv4/ip/forward iptables -A PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to 192.168.1.2:8080 When i test t...
- Tue Aug 05, 2008 3:24 pm
- Forum: General
- Topic: MySQL backup user
- Replies: 2
- Views: 11798
Re: MySQL backup user
I thought it only needed select . grant select on database.* to 'backup'@'localhost' identified by 'password'; But when I try to do a dump I get the following message: $ mysqldump -u backup --password="password" database > backupfile.sql mysqldump: Got error: 1044: Access denied for user '...
- Mon Aug 04, 2008 7:46 pm
- Forum: General
- Topic: MySQL backup user
- Replies: 2
- Views: 11798
MySQL backup user
What rights does a MySQL backup user need?