I have set up Minix 3.3.0 on VMware 12.5.2
Ubuntu 16.04, Linux 4.4.8
When I try running
# pkgin update
I get an error saying
pkgin: Can't open database /usr/var/db/pkgin/pkgin.db: unable to open database file: No such file or directory
I have tried solution mentioned in link 1, link 2 and link 3 but none of them worked for me.
This is for any command followed by pkgin
Related
I have a selenium test running in Jenkins with those configuration:
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--no-sandbox')
chrome_options.add_argument('--headless')
chrome_options.add_argument('--disable-gpu')
driver = webdriver.Chrome(chrome_options=chrome_options
So far the tasks worked just fine and I was able to target the correct version of chromedriver binary.
but today all my pipeline start failing throwing the following error:
selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 95
Current browser version is 93.0.4577.63 with binary path /usr/bin/google-chrome
So far so good, beecause I understand that in my /usr/bin I am running the chromedriver 93.
so I downloaded the version 95 from here:
https://chromedriver.storage.googleapis.com/index.html?path=95.0.4638.17/
and unzipped the content in the same directory, I changed the name of the old chromedriver to chromedriver.old and made sure that I have the new binary in that folder.
But still I am getting the same error.
Here I am a bit confused. the error states that the binary is called google-chrome but I am not sure if I rename the new chromedriver to google-chromeit might break something.
Did anyone ever faced this sort of error?
UPDATE:
I notice something that I cannot understand.
My Jenkins throws this error:
selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 95
Current browser version is 94.0.4606.81 with binary path /usr/bin/google-chrome
but if I ssh inside my ubuntu server and run this command
~$ chromedriver --version
ChromeDriver 93.0.4577.63 (ff5c0da2ec0adeaed5550e6c7e98417dac77d98a-refs/branch-heads/4577#{#1135})
I see a discrepancy between the 2 logs. On my vm I have a specific version of chrome driver that does not match the one stated by Jenkins (based on my chrome option). So I tried to upgrade google-chrome to match the version 95. But the latest stable version is 94.
You already had a Chromedriver that supports Chrome 95.
Now need to upgrade the chrome binary to 95 or downgrade the Chromedriver to 93.
I am trying to run my selenium script which has been developed in Selenium 2.53.0 using firefox 46 in a headless AWS linux server. AWS has GTK2.0 and Firefox 46 is compatible with GTK3.4 and above.
I tried to install GTK 3.4 from the given links and it is installed but still I am getting error
XPCOMGlueLoad error for file /usr/local/firefox/libmozgtk.so:
libgtk-3.so.0: cannot open shared object file: No such file or directory
Couldn't load XPCOM.
I do not have libgtk-3.so.0 installed in my system hence the error. If somebidy can help me on how to upgrade/install GTK 3.4 along with the said libraries to run my firefox in AWS EC2 server it will be really helpful.
The Links i have used : http://ftp.gnome.org/pub/gnome/sources/gtk+/3.4/gtk+-3.4.0.tar.xz
ftp://fr2.rpmfind.net/linux/fedora/linux/development/rawhide/Everything/x86_64/os/Packages/g/gtk3-3.22.15-2.fc27.x86_64.rpm
to install the GTK3
Installed Firefox 46 using the Code https://gist.github.com/joekiller/4144838 from here.
Thanks.
I'm on Windows 7 64 bit. Every time I try to install the latest version of VisualSVN Server (3.3.1) I get an error saying it could not create any temporary files.
I really can't figure out what's causing this error. I am installing as an administrator.
Here is a link to the installation logs.
Any help would be appreciated!
The full error is:
MSI (s) (F8!A8) [13:29:08:907]: Product: VisualSVN Server 3.3.1 -- Error 25000. Custom action InstallWMISchemaExecute failed: Error creating temporary file (0x8004402F)
The 0x8004402F is Windows Management Instrumentation (WMI) specific error code:
https://msdn.microsoft.com/en-us/library/aa394559
So you have some issues with WMI on your computer. Suggested actions to troubleshoot this issue:
run sfc /scannow command
remove all files in C:\Windows\Temp directory
remove all files in %TEMP% directory
check that LOCAL SYSTEM account has full access to 'C:\Windows\Temp\ directory
I am using django-webodt to create PDFs from Django with LibreOffice as the converter under Ubuntu 12.04.
I start LibreOffice in headless mode using the following command:
soffice '--accept=socket,host=127.0.0.1,port=2002;urp;StarOffice.NamingService' --headless
However, I am getting an intermittent error from LibreOffice:
com.sun.star.lang.IllegalArgumentException at /report/2013/09/Unsupported URL <private:stream>: ""
I have installed the latest version of LibreOffice using sudo apt-get install libreoffice. The issue is intermittent in that yesterday it was working, today it I am getting this error! Nothing has changed at all, except for a system reboot.
Can anyone help explain what the problem might be?
I've installed PostgreSQL and PostGIS, and now I'm trying to follow these instructions:
http://docs.djangoproject.com/en/dev/ref/contrib/gis/install/#spatialdb-template
But I keep getting the following error, both in the command prompt and in Cygwin:
C:\Users\Home>createdb -E UTF8 template_postgis
createdb: could not connect to database postgres: could not connect to server: No such file or directory
Is the server running locally and accepting
connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
And I know PostgreSQL is running, because I'm using it right now!
Installing open source applications can sometimes be so frustrating...
I'll be very grateful for your help!
Are you by any chance using cygwin here? Particuarly, is the system picking up createdb from a cygwin binary?
If your server is cygwin, try removing it and replace it with the Windows version.
If your server is the Windows version, but you have createdb from a cygwin install in the PATH, try removing cygwin from your PATH to make sure you pick up the Windows version of createdb.