| | 59 | === Mirrors === |
| | 60 | |
| | 61 | Rosenthal & Rosenthal maintains mirrors (updated hourly) of both of the Netlabs repositories on the east coast of the US (New York) on a relatively wide bandwidth connection. |
| | 62 | |
| | 63 | ==== Stable repository mirror ==== |
| | 64 | |
| | 65 | Download this [http://www.2rosenthals.com/rpm.netlabs.org/mirror/netlabs-rel-2rosenthals.repo file] and put it into %UNIXROOT%\etc\yum\repos.d directory. |
| | 66 | |
| | 67 | It is possible to browse the stable repository URL at the following URL: |
| | 68 | |
| | 69 | [http://www.2rosenthals.com/rpm.netlabs.org/release/00/i386/ http://www.2rosenthals.com/rpm.netlabs.org/release/00/i386/] |
| | 70 | |
| | 71 | ==== Experimental repository mirror ==== |
| | 72 | |
| | 73 | Download this [http://www.2rosenthals.com/rpm.netlabs.org/mirror/netlabs-exp-2rosenthals.repo file] and put it into %UNIXROOT%\etc\yum\repos.d directory. |
| | 74 | |
| | 75 | It is possible to browse the stable repository URL at the following URL: |
| | 76 | |
| | 77 | [http://www.2rosenthals.com/rpm.netlabs.org/experimental/00/i386/ http://www.2rosenthals.com/rpm.netlabs.org/experimental/00/i386/] |
| | 78 | |
| | 79 | === Managing repositories === |
| | 80 | |
| | 81 | To disable a repository, either use: |
| | 82 | |
| | 83 | * yum --disablerepo=[repo-name] |
| | 84 | |
| | 85 | (e.g.: yum --disable-repo=netlabs-rel) |
| | 86 | |
| | 87 | or simply edit the appropriate .repo file in %UNIXROOT%\etc\yum\repos.d and toggle the enabled line to 0, as in: |
| | 88 | |
| | 89 | enabled=1 |
| | 90 | |
| | 91 | to |
| | 92 | |
| | 93 | enabled=0 |
| | 94 | |
| | 95 | This will preserve the contents of the .repo file(s) but will instruct yum to skip over it/them when scanning for packages. |
| | 96 | |
| | 97 | When you are done, check your enabled repos with: |
| | 98 | |
| | 99 | * yum repolist |