Linux voor beginners :)
- rappie pappie
- Berichten: 1503
- Lid geworden op: 19 januari 2006, 14:01
- vulture
- Berichten: 3981
- Lid geworden op: 20 november 2004, 17:58
- Locatie: Zoo (aasgier)
- Contacteer:
Ik krijg een scherm waarin ik mijn gebruikersnaam moet invullenrappie pappie schreef:Even een vraag.
Als je ubuntu opstart en kom je in het inlogscherm.Kun je ergens in een menu kiezen hoe je ubuntu op kan starten.Staat daar geen mythtv bij.
links onderin staan er de volgende opties taal kiezen sessie kiezen aanmelden op afstand herstart uitschakelen pauze slapen ik typ mijn naam in dan krijg ik het scherm met een wachtwoord en thats all
-
- Berichten: 505
- Lid geworden op: 25 april 2006, 20:07
- Contacteer:
Om iets met MySQL te doen heb je de server nodig, ik zie bijvoorbeeld een mysql-server-4.1 of een mysql-server.
- rappie pappie
- Berichten: 1503
- Lid geworden op: 19 januari 2006, 14:01
Oké weet genoeg.Lees dit draadje eens.Mythtv staat goed geinstalleerd.aleen je hebt geen rechten om in die database te komen.
http://www.mandrivaclub.nl/site/index.p ... entry53050
http://www.mandrivaclub.nl/site/index.p ... entry53050
- vulture
- Berichten: 3981
- Lid geworden op: 20 november 2004, 17:58
- Locatie: Zoo (aasgier)
- Contacteer:
- rappie pappie
- Berichten: 1503
- Lid geworden op: 19 januari 2006, 14:01
- rappie pappie
- Berichten: 1503
- Lid geworden op: 19 januari 2006, 14:01
Dit staat er.
http://www.mythtv.org/docs/mythtv-HOWTO.html
De oplossing: probeer via webmin de database te bekijken en de rechten zo aan te passen dat de gebruiker er wel in mag. (Zie ook bovenstaande howto).
http://www.mythtv.org/docs/mythtv-HOWTO.html
De oplossing: probeer via webmin de database te bekijken en de rechten zo aan te passen dat de gebruiker er wel in mag. (Zie ook bovenstaande howto).
- vulture
- Berichten: 3981
- Lid geworden op: 20 november 2004, 17:58
- Locatie: Zoo (aasgier)
- Contacteer:
- vulture
- Berichten: 3981
- Lid geworden op: 20 november 2004, 17:58
- Locatie: Zoo (aasgier)
- Contacteer:
- rappie pappie
- Berichten: 1503
- Lid geworden op: 19 januari 2006, 14:01
- rappie pappie
- Berichten: 1503
- Lid geworden op: 19 januari 2006, 14:01
- rappie pappie
- Berichten: 1503
- Lid geworden op: 19 januari 2006, 14:01
- rappie pappie
- Berichten: 1503
- Lid geworden op: 19 januari 2006, 14:01
Ubuntu is zelf met een media center install live cd bezig.Is nog niet klaar.Maar komt er wel.
https://wiki.ubuntu.com/UbuntuMediaCent ... 8center%29
https://wiki.ubuntu.com/UbuntuMediaCent ... 8center%29
- vulture
- Berichten: 3981
- Lid geworden op: 20 november 2004, 17:58
- Locatie: Zoo (aasgier)
- Contacteer:
ikheb dit gevonden inzak rechten
5.7.5. How to Run MySQL as a Normal User
On Windows, you can run the server as a Windows service using a normal user account.
On Unix, the MySQL server mysqld can be started and run by any user. However, you should avoid running the server as the Unix root user for security reasons. To change mysqld to run as a normal unprivileged Unix user user_name, you must do the following:
1.
Stop the server if it's running (use mysqladmin shutdown).
2.
Change the database directories and files so that user_name has privileges to read and write files in them (you might need to do this as the Unix root user):
shell> chown -R user_name /path/to/mysql/datadir
If you do not do this, the server will not be able to access databases or tables when it runs as user_name.
If directories or files within the MySQL data directory are symbolic links, you'll also need to follow those links and change the directories and files they point to. chown -R might not follow symbolic links for you.
3.
Start the server as user user_name. If you are using MySQL 3.22 or later, another alternative is to start mysqld as the Unix root user and use the --user=user_name option. mysqld starts up, then switches to run as the Unix user user_name before accepting any connections.
4.
To start the server as the given user automatically at system startup time, specify the username by adding a user option to the [mysqld] group of the /etc/my.cnf option file or the my.cnf option file in the server's data directory. For example:
[mysqld]
user=user_name
If your Unix machine itself isn't secured, you should assign passwords to the MySQL root accounts in the grant tables. Otherwise, any user with a login account on that machine can run the mysql client with a --user=root option and perform any operation. (It is a good idea to assign passwords to MySQL accounts in any case, but especially so when other login accounts exist on the server host.) See Section 2.10, “Post-Installation Setup and Testing”.
maar ik kom er niet verder mee
wel mooi dat ubuntu met een media centre bezig is
5.7.5. How to Run MySQL as a Normal User
On Windows, you can run the server as a Windows service using a normal user account.
On Unix, the MySQL server mysqld can be started and run by any user. However, you should avoid running the server as the Unix root user for security reasons. To change mysqld to run as a normal unprivileged Unix user user_name, you must do the following:
1.
Stop the server if it's running (use mysqladmin shutdown).
2.
Change the database directories and files so that user_name has privileges to read and write files in them (you might need to do this as the Unix root user):
shell> chown -R user_name /path/to/mysql/datadir
If you do not do this, the server will not be able to access databases or tables when it runs as user_name.
If directories or files within the MySQL data directory are symbolic links, you'll also need to follow those links and change the directories and files they point to. chown -R might not follow symbolic links for you.
3.
Start the server as user user_name. If you are using MySQL 3.22 or later, another alternative is to start mysqld as the Unix root user and use the --user=user_name option. mysqld starts up, then switches to run as the Unix user user_name before accepting any connections.
4.
To start the server as the given user automatically at system startup time, specify the username by adding a user option to the [mysqld] group of the /etc/my.cnf option file or the my.cnf option file in the server's data directory. For example:
[mysqld]
user=user_name
If your Unix machine itself isn't secured, you should assign passwords to the MySQL root accounts in the grant tables. Otherwise, any user with a login account on that machine can run the mysql client with a --user=root option and perform any operation. (It is a good idea to assign passwords to MySQL accounts in any case, but especially so when other login accounts exist on the server host.) See Section 2.10, “Post-Installation Setup and Testing”.
maar ik kom er niet verder mee
wel mooi dat ubuntu met een media centre bezig is
- rappie pappie
- Berichten: 1503
- Lid geworden op: 19 januari 2006, 14:01
Ik denk dat je met dit bovenstaande beter even een account aan kan maken op een linux forum.En het daar even vragen.Dat bovenstaande heb ik ook nog nooit gedaan.
Mijn advies.
http://www.ubuntu-forums.nl/index.php?s ... 12d70e3d8a
Mijn advies.
http://www.ubuntu-forums.nl/index.php?s ... 12d70e3d8a