Skip to content
Advertisement

Tag: ubuntu-16.04

Why does my LD_LIBRARY_PATH get an uninstalled terminal launch?

In general, what I do to get the result: I drive a team: export LD_LIBRARY_PATH=/u01/app/oracle/product/11.2.0/xe/lib Checking: echo $LD_LIBRARY_PATH Result: /u01/app/oracle/product/11.2.0/xe/lib When I restart or open the new terminal my LD_LIBRARY_PATH is disabled. How to fix it? Answer Environment variables are available only in the shell where you have created them. If you want to set an environment variable permanently then

MySQL Alter Table DB Freezes

I’m using Ubuntu 16.04.3 and mysql Ver 14.14 Distrib 5.7.22. When I try to alter my db table column with the following command the database appears to freeze; mysql> alter table records modify column name varchar(150); Table size is 2.8MiB (6,000 records). I’m simply trying to change the varchar(150) part. I have tried to do the same thing in GUI

How to find what folder process can’t open

I have an application that is not functioning, because it can’t find or open the folder. But it does not print the folder path. How i can find out what folders it tries to open or locate? Probably folder does not exist, or has wrong permission. But to fix this i need to know what folder application is opening… Answer

Building Wireshark on Ubuntu from source [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question

unbound method mainloop() must be called with Tk instance as first argument (got nothing instead)

The below code is a simple code which I tried to check if Tkinter worked… Acoording to https://www.tutorialspoint.com/python/python_gui_programming.html this should open a blank window But the following error message was received Any suggestions… Answer Tkinter.Tk() creates an instance of Tk() object which act as argument for mainloop. Do this instead: Read this for further understanding. tkinter-understanding mainloop

Advertisement