nblagodarnyi commented on issue #9402: URL: https://github.com/apache/incubator-gluten/issues/9402#issuecomment-3116908873
Similar error "rule 'R' does not exist" on Ubuntu 20.04.6 was fixed with following code. Consider that tzdata.tar.gz should be manually downloaded from [iana site](https://www.iana.org/time-zones) because [url](https://www.iana.org/time-zones/repository/tzdata-latest.tar.gz) provided in [Oracle tzupdater readme](https://www.oracle.com/java/technologies/javase/tzupdater-readme.html) returns small corrupt archive, tzupdater cannot read it. ``` sudo apt-get update sudo apt-get install -y --reinstall tzdata export JAVA_HOME=/usr/lib/jvm/jdk-17.0.4.1 sudo /usr/lib/jvm/jdk-17.0.4.1/bin/java -jar /foo/bar/tzupdater.jar -l file:///foo/bar/buzz/tzdata.tar.gz ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
