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 ...
Search found 5 matches
- Thu Feb 23, 2017 8:19 pm
- Forum: Linux
- Topic: ext4 disk 4TB not mounting
- Replies: 1
- Views: 72329
- Wed Dec 21, 2016 8:39 pm
- Forum: Linux
- Topic: RaspberryPi automatic connect to hidden wireless network
- Replies: 2
- Views: 89252
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: 91463
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 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 ...
- Tue Aug 05, 2008 3:24 pm
- Forum: General
- Topic: MySQL backup user
- Replies: 2
- Views: 38848
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 ...
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: 38848
MySQL backup user
What rights does a MySQL backup user need?