This shows you the differences between two versions of the page.
|
public [2013/07/31 09:44] ivan created |
public [2016/05/31 23:03] (current) ivan |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Some useful things good to know ====== | ====== Some useful things good to know ====== | ||
| + | |||
| + | ===== net notes ===== | ||
| + | |||
| + | Some interesting notes about useful applications | ||
| + | |||
| + | [[public:netnotes|net notes section]] | ||
| ===== git ===== | ===== git ===== | ||
| Line 19: | Line 25: | ||
| Solution: \\ | Solution: \\ | ||
| git config http.postBuffer 524288000 | git config http.postBuffer 524288000 | ||
| + | |||
| + | ===== XCP / Xen ===== | ||
| + | |||
| + | === File "/usr/lib/xcp/lib/pygrub.xcp", line 811, in <module> - fs = fsimage.open(file, part_offs[0], bootfsoptions) - IOError: [Errno 95] Operation not supported === | ||
| + | |||
| + | pygrub included xen-utils package doesn't support XFS as boot partition until xen-utils version 4.2. Use ext[234] instead of XFS. | ||
| + | http://wiki.xen.org/wiki/PyGrub | ||
| + | |||
| + | ===== DB2 ===== | ||
| + | |||
| + | === DB21034E: Set Integrity Pending No Access state === | ||
| + | <code> | ||
| + | db2 connect to <db name> | ||
| + | for i in $(db2 connect to <db name> >/dev/null 2>&1 ; db2 "SELECT tabname,status,const_checked FROM syscat.tables WHERE status='C'" | grep "YYYY" | cut -f 1 -d " " ; db2 terminate >/dev/null 2>&1) ; do db2 set integrity for $i immediate checked ; done | ||
| + | db2 terminate | ||
| + | </code> | ||
| + | |||
| + | ===== SonicWall Mobile Connect ===== | ||
| + | |||
| + | Experienced problem: \\ | ||
| + | Connection to SSL VPN is interrupted immediately after login. | ||
| + | VPN client alerts later about disconnect. | ||
| + | |||
| + | Error message in SonicWall log: \\ | ||
| + | PPP message: LCP: protocol reject, protocol = 0x80FD | ||
| + | |||
| + | Solution: \\ | ||
| + | In Client Default Device Profile you need to disable Network Address IP V6. | ||