For Firefox, it's
~/.mozilla/pluginsAnd for Chromium it's
/usr/lib/chromium-browser/plugins
~/.mozilla/pluginsAnd for Chromium it's
/usr/lib/chromium-browser/plugins
1. Tafhim (Me)
2. Rine (Rine Toufique Anam)
3. Mamun bhai (Abdullah al Mamun)
4. Rahid bhai (Rahid Hasan)
5. Aman bhai (Md. Aman Ullah)
1. Preparing LFS Partition
2. Setting up LFS usergroup and account
3. Compiled BinUtils (First phase)
4. Compiled GCC (First phase)
1. VBox machine setup [20 GB Partition, 2 GB swap, 8 GB Host OS, 10 GB LFS Partition
2. Dependency resolving issue during G++, GAWK, BISON installation. Fixed by choosing an Australia based server. Even though using "Choose the best server" solved the slow download issue but it doesn't always choose a repo that can resolve all dependencies. We tried different repos and had zero dependency issues of packages using Australian servers.
3. In case of slow download speed of packages you should change your repo and choose a good one using Synaptic
4. We primarily came to a unified decision to arrange the next Hackathon atleast 1 and 1/2 months from today so that all of us can complete the LFS book before that.
#include <cstdio>
#include <iostream>
using namespace std;
#define init(n) { for (int i=0 ; i<=n ; i++) { visit[i] = false; for (int j=0 ; j<=n ; j++) adj[i][j] = adj[j][i] = false; } }
int n, dep[200], root[200], adj[200][200];
bool visit[200];
int dfs_visit(int s, int src) {
root[s] = src;
dep[s] = 0;
for (int i=1 ; i<=n ; i++) {
if (!visit[i] && adj[s][i]) {
visit[i] = true;
dep[s] += (dfs_visit(i,src)+1);
}
}
return dep[s];
}
void dfs() {
for (int i=1 ; i<=n ; i++) {
for (int j=0 ; j<=n ; j++) visit[j] = false;
dfs_visit(i,i);
}
}
int main( void ) {
int t, x, maxdepi, maxdep;
while (scanf("%d",&n)==1 && n) {
init(n);
for (int i=1 ; i<=n ; i++) {
scanf("%d",&t);
for (int j=0 ; j<t ; j++) {
scanf("%d",&x);
adj[i][x] = true;
}
}
dfs();
maxdep = -1000;
for (int i=1 ; i<=n ; i++) {
if (dep[i]>maxdep) {
maxdep = dep[i];
maxdepi = i;
}
}
printf("%d\n",maxdepi);
}
return 0;
}
libhunspell-1.2-0 valgrind cccc cscope etc...Even though you can install all the other packages manually using just the names provided in the error messages you cannot install the libhunspell package. There's an obvious reason for this. It's not in any Ubuntu repositories. To address this issue, you have to do as follows
sudo dpkg -i <package-name>.deb4. Now go for installing the Contrib package again, it should go smooth.
/media/$(ls /media/| grep "d4324" )before every directory mentioned here. Or you can ignore the
/media/$(ls /media/| grep "d4324" )part and instead use
/media/<your-mount-point>directly.
cd /media/$(ls /media/| grep "d4324" )/lib/modules/<your-kernel-version>/misc # Note: If you have multiple kernel directories in the /lib/modules/ directory do the following for each one of them. If the files are not found in any kernel directory, ignore and go on with the commands. mv vm* /tmp cd /media/$(ls /media/| grep "d4324" )/proc/modules/ rm vmnet.o rm vmmon.o rm vmci.o rm vmblock.o rm vmppuser.o rm /media/$(ls /media/| grep "d4324" )/etc/rc2.d/*vmware* rm /media/$(ls /media/| grep "d4324" )/etc/rc3.d/*vmware* rm /media/$(ls /media/| grep "d4324" )/etc/rc5.d/*vmware* rm /media/$(ls /media/| grep "d4324" )/etc/rc6.d/*vmware* rm -rf /media/$(ls /media/| grep "d4324" )/etc/vmware* rm /media/$(ls /media/| grep "d4324" )/usr/bin/vmware-usbarbitrator rm /media/$(ls /media/| grep "d4324" )/usr/bin/vmnet* rm -r /media/$(ls /media/| grep "d4324" )/usr/lib/vmware* rm -r /media/$(ls /media/| grep "d4324" )/usr/share/doc/vmware*After that, try booting into your system. If all has gone well, you should be leaving a breath of relief.
I bought this obvious copy of MX Master 2S in hopes of having the device switching functionality along with a lightweight body because I ha...