How To Install Mythtv On Windows
2021年3月3日Download here: http://gg.gg/oigqp
This page is up-to-date as of MythTV version 0.27.6, the current release is 31.0
*How To Install Mythtv On Windows Media Player
*Mythtv Installation
*How To Install Mythtv On Windows Xp
*Mythtv Database Setup
If you only install MythTV DirectShow Filters on your computer and you don’t use an MPEG2 filter as well, you will be able to play most MPEG files, but the file information property page will not work. Moreover, Dimension and Duration extra columns in Windows Explorer will not work either.
*1MySQL
*1.1Distribution-specific information
*1.2Setting up the initial databaseMySQL
You will want to comment out any ’log-bin’ or ’log_bin’ lines in your my.cnf configuration file. This option will quickly fill your ’/var’ disk partition with many gigabytes of data, unless you are doing database replication and deleting these files regularly.Distribution-specific information
*NB the tools and method described below can also be used to build MythTV natively on Windows or Linux too: Building MythTV on Windows. Building MythTV on Linux. Cross compiling Linux to Windows. There’s a lot of compiling to do so you’ll need a fast, fat Linux box: At least 10 GB free space on a fast disk. At least 2 GB, preferably 4 GB.
*I’ve had mixed results with the native windows build in the past, so my first thought after installing the anniversary update for Windows 10 was, can we now run the Linux mythfrontend binary directly under Windows/Bash with the help of an X server? The answer is, sort of.Red Hat Linux and Fedora
If this is the system maintaining the database, make sure that MySQL is running and started at boot. Click on Redhat menu>Server Settings>Services and enter the root password when asked. Check ’mysqld’ and then click Start. Click Save, then close the window.
This can be done from the command line by typing:
# /sbin/chkconfig mysqld on
# /sbin/service mysqld start
With recent 2014 changes in Fedora 19/20 and RHEL/CentOS7 systemd has repalced SysV for service maintenance.The mariadb has also replaced mysql as default db handler although it responds to all mysql calls as well.The ’newer’ commands for doing this from the command line are as follows:
to have the service start at boot
# systemctl enable mariadb.service
or the longer version of this command
# ln -s ’/usr/lib/systemd/system/mariadb.service’ ’/etc/systemd/system/multi-user.target.wants/mariadb.service’
and then to start the service right now
# systemctl start mariadb.service
Finally to confirm the service is running the command is
# systemctl status mariadb.serviceSetting up the initial database
This step is only required on the system maintaining the database, which may or may not be one of your MythTV boxes. If the database is on a non-MythTV machine you’ll need to copy the database/mc.sql file to it.
To setup the initial MySQL databases:$ cd databaseMandriva and Red Hat Linux/Fedora Core
$ mysql -u root < mc.sqlDebian/Ubuntu/Mint
$ mysql -uroot -p < mc.sql
note: mc.sql is located in /usr/share/mythtv/sql Gentoo
$ su
# mysql < /usr/share/mythtv/database/mc.sql
Photoshop mosaic plugin.
NOTE: It is good practice to set a root password for MySQL. This is usually done at install time of mysql however, Instructions for doing so can be found on MySQL’s web site at http://dev.mysql.com/doc/refman/5.5/en/default-privileges.htmlModifying access to the MySQL database for multiple systems
If you’re going to have multiple systems accessing a master database, you must grant access to the database from remote systems. By default, the mc.sql script is only granting access to the local host.
To allow other hosts access to your master database, you can either configure MySQL database access with no security or with additional granularity.
NOTE: The ’no security’ option is very dangerous unless you’re in a controlled environment.
The ’%’ is the wildcard character in MySQL.
This example has no security at all, and allows access from any host.How To Install Mythtv On Windows Media Player
$ mysql -u root mythconverg
mysql> create user ’mythtv’@’%’ identified by ’mythtv’;
mysql> grant all on mythconverg.* to mythtv@’%’;
mysql> flush privileges;
For a more secure setup, you can restrict which machines or subnets have access. If you have a complete DNS system operational, you could do the following:
$ mysql -u root mythconverg
mysql> create user ’mythtv’@’%.mydomain.com’ identified by ’mythtv’;
mysql> grant all on mythconverg.* to mythtv@’%.mydomain.com’;
mysql> flush privileges;
Finally, if you just want to restrict by IP subnet (in this example, the 192.168.1. network):
$ mysql -u root mythconverg
mysql> create user ’mythtv’@’192.168.1.%’ identified by ’mythtv’;
mysql> grant all on mythconverg.* to mythtv@’192.168.1.%’;
mysql> flush privileges;
You’ll also need to check that the ’networking’ feature of MySQL is turned on. Check that /etc/mysql/my.cnf does not contain skip-networking. If it does, either remove that line or comment it out. Also verify that bind-address is set to your IP address instead of 127.0.0.1. If you change either of these items, restart MySQL.
NOTE: Your distribution may have a customized MySQL configuration file; in Mandriva, check /etc/sysconfig/mysqld for additional configuration. In systems that have/etc/mysql/conf.d put all local changes in a file, such as mythtv.cnf. For example:
By doing the above, if the mysql package manager changes my.cnf, then local changes won’t be overwritten.Mythtv Installation
mariadb users should use the same concept. However, be sure to check /etc/mysql/my.cnf firstto see the order of the files it includes. One example is:How To Install Mythtv On Windows Xp
That means that changes made in the ’old’ conf.d directory could be overwritten bychanges in mariadb.conf.d. Also note that the individual .cnf files are parsedalphabetically. Since /etc/mysql/mariadb.conf.d/mysql.cnf contains a setting for bind-address, overriding it must be done in a file alphabetically greaterthan it. /etc/mysql/mariadb.conf.d/mythtv.cnf will work fine in this case. Justbe sure that there aren’t any other .cnf files that would override it’s changes.Mythtv Database Setup Retrieved from ’http://www.mythtv.org/wiki?title=Database_Setup&oldid=65074’
Download here: http://gg.gg/oigqp
https://diarynote.indered.space
This page is up-to-date as of MythTV version 0.27.6, the current release is 31.0
*How To Install Mythtv On Windows Media Player
*Mythtv Installation
*How To Install Mythtv On Windows Xp
*Mythtv Database Setup
If you only install MythTV DirectShow Filters on your computer and you don’t use an MPEG2 filter as well, you will be able to play most MPEG files, but the file information property page will not work. Moreover, Dimension and Duration extra columns in Windows Explorer will not work either.
*1MySQL
*1.1Distribution-specific information
*1.2Setting up the initial databaseMySQL
You will want to comment out any ’log-bin’ or ’log_bin’ lines in your my.cnf configuration file. This option will quickly fill your ’/var’ disk partition with many gigabytes of data, unless you are doing database replication and deleting these files regularly.Distribution-specific information
*NB the tools and method described below can also be used to build MythTV natively on Windows or Linux too: Building MythTV on Windows. Building MythTV on Linux. Cross compiling Linux to Windows. There’s a lot of compiling to do so you’ll need a fast, fat Linux box: At least 10 GB free space on a fast disk. At least 2 GB, preferably 4 GB.
*I’ve had mixed results with the native windows build in the past, so my first thought after installing the anniversary update for Windows 10 was, can we now run the Linux mythfrontend binary directly under Windows/Bash with the help of an X server? The answer is, sort of.Red Hat Linux and Fedora
If this is the system maintaining the database, make sure that MySQL is running and started at boot. Click on Redhat menu>Server Settings>Services and enter the root password when asked. Check ’mysqld’ and then click Start. Click Save, then close the window.
This can be done from the command line by typing:
# /sbin/chkconfig mysqld on
# /sbin/service mysqld start
With recent 2014 changes in Fedora 19/20 and RHEL/CentOS7 systemd has repalced SysV for service maintenance.The mariadb has also replaced mysql as default db handler although it responds to all mysql calls as well.The ’newer’ commands for doing this from the command line are as follows:
to have the service start at boot
# systemctl enable mariadb.service
or the longer version of this command
# ln -s ’/usr/lib/systemd/system/mariadb.service’ ’/etc/systemd/system/multi-user.target.wants/mariadb.service’
and then to start the service right now
# systemctl start mariadb.service
Finally to confirm the service is running the command is
# systemctl status mariadb.serviceSetting up the initial database
This step is only required on the system maintaining the database, which may or may not be one of your MythTV boxes. If the database is on a non-MythTV machine you’ll need to copy the database/mc.sql file to it.
To setup the initial MySQL databases:$ cd databaseMandriva and Red Hat Linux/Fedora Core
$ mysql -u root < mc.sqlDebian/Ubuntu/Mint
$ mysql -uroot -p < mc.sql
note: mc.sql is located in /usr/share/mythtv/sql Gentoo
$ su
# mysql < /usr/share/mythtv/database/mc.sql
Photoshop mosaic plugin.
NOTE: It is good practice to set a root password for MySQL. This is usually done at install time of mysql however, Instructions for doing so can be found on MySQL’s web site at http://dev.mysql.com/doc/refman/5.5/en/default-privileges.htmlModifying access to the MySQL database for multiple systems
If you’re going to have multiple systems accessing a master database, you must grant access to the database from remote systems. By default, the mc.sql script is only granting access to the local host.
To allow other hosts access to your master database, you can either configure MySQL database access with no security or with additional granularity.
NOTE: The ’no security’ option is very dangerous unless you’re in a controlled environment.
The ’%’ is the wildcard character in MySQL.
This example has no security at all, and allows access from any host.How To Install Mythtv On Windows Media Player
$ mysql -u root mythconverg
mysql> create user ’mythtv’@’%’ identified by ’mythtv’;
mysql> grant all on mythconverg.* to mythtv@’%’;
mysql> flush privileges;
For a more secure setup, you can restrict which machines or subnets have access. If you have a complete DNS system operational, you could do the following:
$ mysql -u root mythconverg
mysql> create user ’mythtv’@’%.mydomain.com’ identified by ’mythtv’;
mysql> grant all on mythconverg.* to mythtv@’%.mydomain.com’;
mysql> flush privileges;
Finally, if you just want to restrict by IP subnet (in this example, the 192.168.1. network):
$ mysql -u root mythconverg
mysql> create user ’mythtv’@’192.168.1.%’ identified by ’mythtv’;
mysql> grant all on mythconverg.* to mythtv@’192.168.1.%’;
mysql> flush privileges;
You’ll also need to check that the ’networking’ feature of MySQL is turned on. Check that /etc/mysql/my.cnf does not contain skip-networking. If it does, either remove that line or comment it out. Also verify that bind-address is set to your IP address instead of 127.0.0.1. If you change either of these items, restart MySQL.
NOTE: Your distribution may have a customized MySQL configuration file; in Mandriva, check /etc/sysconfig/mysqld for additional configuration. In systems that have/etc/mysql/conf.d put all local changes in a file, such as mythtv.cnf. For example:
By doing the above, if the mysql package manager changes my.cnf, then local changes won’t be overwritten.Mythtv Installation
mariadb users should use the same concept. However, be sure to check /etc/mysql/my.cnf firstto see the order of the files it includes. One example is:How To Install Mythtv On Windows Xp
That means that changes made in the ’old’ conf.d directory could be overwritten bychanges in mariadb.conf.d. Also note that the individual .cnf files are parsedalphabetically. Since /etc/mysql/mariadb.conf.d/mysql.cnf contains a setting for bind-address, overriding it must be done in a file alphabetically greaterthan it. /etc/mysql/mariadb.conf.d/mythtv.cnf will work fine in this case. Justbe sure that there aren’t any other .cnf files that would override it’s changes.Mythtv Database Setup Retrieved from ’http://www.mythtv.org/wiki?title=Database_Setup&oldid=65074’
Download here: http://gg.gg/oigqp
https://diarynote.indered.space
コメント